library(lubridate)
##
## Attaching package: 'lubridate'
## The following objects are masked from 'package:base':
##
## date, intersect, setdiff, union
library(taRifx)
# Path of the directory for each year for men
years_men_path <- list.dirs(path = '../biathlon_analysis/biathlon_data/men',
recursive=FALSE,full.names=TRUE)
# Path of the directory for each year for women
years_women_path <- list.dirs(path='../biathlon_analysis/biathlon_data/women',
recursive=FALSE,full.names=TRUE)
# List of years directory names for men
years_men <- list.dirs(path = '../biathlon_analysis/biathlon_data/men',
recursive = FALSE, full.names=FALSE)
# List of years directory names for women
years_women <- list.dirs(path = '../biathlon_analysis/biathlon_data/women',
recursive =FALSE,full.names=FALSE)
# Initializing the list of years present in the data set
years <- c(1:length(years_men))
# Filling the list of years present in the data set
for (i in c(1:length(years_men))){
idx <- unlist(gregexpr('_', years_men[[i]]))
string <- unlist(strsplit((years_men[[i]]),""))
final_year <- paste(string[1:idx-1], collapse="")
years[i] <- final_year
}
# Initializing the named list of word cup locations
locations <- list()
# Filling the list having as names the year and as values the locations of the word cup venues
for (i in seq_along(years)){
locations[[years[i]]] <- (list.dirs(path = years_men_path[i], recursive = FALSE, full.names = FALSE))
}
# Initializing a list that has to be similar to the previous one but with the full path as values
locations_path_men <- list()
# Same thing for women
locations_path_women <- list()
# Filling the list
for (i in seq_along(years)){
locations_path_men[[years[i]]] <- (list.dirs(path = years_men_path[i], recursive = FALSE, full.names = TRUE))
}
for (i in seq_along(years)){
locations_path_women[[years[i]]] <- (list.dirs(path = years_women_path[i], recursive = FALSE, full.names = TRUE))
}
# Defining a custom infix operator to take the role of the not %in% operator
'%!in%' <- function(a,b) {!( '%in%'(a,b))}
# Initializing the final data frame of the result of each race
df_results_men <- data.frame()
# Initializing the id of the race
race_id <- 0
# Initializing the count of all the DNS
res_dns_men <- 0
# Initializing the count of all the DSQ
res_dsq_men <- 0
# Initializing the count of all the DNF
res_dnf_men <- 0
# Initializing the count of all the lapped athletes
res_lap_men <- 0
# Initializing the count of all the bibs > 120 because they won't appear in loops,
# this happens only in Kontiolahti 2014, these damned Finnish...
res_over_men <- 0
# The allowable values for the Rank column of the data frame
allowables <- c(c(1:127), 'DNF', 'DNS', 'DSQ', 'LAP')
# Initializing the list connecting each race to the race_id
list_id_men <- list()
for (i in seq_along(years)){
for(j in seq_along(locations[[years[i]]])){
files <- list.files(locations_path_men[[years[i]]],
pattern=sprintf('results.%s',locations[[years[i]]][j]),full.names = TRUE )
# Importing the data frame
for (file in files){
race_id <- race_id + 1
df_res <- read.csv(file = file, sep = '\t')
# Raising a flag if the Rank column has not allowable columns
if(length(df_res$Rank[df_res$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
# Updating the count of bibs > 120
res_over_men <- res_over_men + length(df_res$Rank[destring(df_res$Rank) > 120]
[! is.na(df_res$Rank[destring(df_res$Rank) > 120])])
# Updating the DNS count
res_dns_men <- res_dns_men + length(df_res$Rank[df_res$Rank=='DNS'])
# Updating the DNF count
res_dnf_men <- res_dnf_men + length(df_res$Rank[df_res$Rank=='DNF'])
# Updating the DSQ count
res_dsq_men <- res_dsq_men + length(df_res$Rank[df_res$Rank=='DSQ'])
# Updating the lapped athletes' count
res_lap_men <- res_lap_men + length(df_res$Rank[df_res$Rank=='LAP'])
# Checking for possible inconsistencies in the data set
if('Rank' %!in% colnames(df_res)){
cat(paste('There is a mistake in', file))
}
# Adding the isolated.pursuit column to the non-pursuit races in order to have the same
# columns to perform the rbind operation
else if('Isolated.Pursuit' %!in% colnames(df_res)){
df_res$Isolated.Pursuit <- rep(NA, nrow(df_res))
}
# Adding the column specifying the year of the race
df_res$year <- rep(years[i], nrow(df_res))
# Adding the column specifying the venue of the race
df_res$location <- rep(locations[[years[i]]][j], nrow(df_res))
# Adding the column with the id of the race
df_res$ID <- rep(race_id, nrow(df_res))
# Adding the column specifying the type of the race
if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
df_res$race_type <- rep('Pursuit', nrow(df_res))
}
else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
df_res$race_type <- rep('Individual', nrow(df_res))
}
else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
df_res$race_type <- rep('Mass start', nrow(df_res))
}
else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
df_res$race_type <- rep('Sprint', nrow(df_res))
}
else{
cat(paste('There is a mistake in',file,
'no race type specified'))
}
# Filling the list connecting the id to the race, the unique identifier for a race has
# been chosen as a touple, we need also the name of the runner-up because Samuelsson won back
# to back spring in Oestersund in 2021... Sebastian, I know you are training with Luki right now
#but you also # could have avoided being so awesome
list_id_men[[paste(df_res$race_type[1], years[i], locations[[years[i]]][j],
df_res$Given.Name[1], df_res$Given.Name[2])]] <- race_id
# Updating the final data frame
df_results_men <- rbind(df_results_men, df_res)
}
}
}
# Initializing the final data frame of the result of each race
df_results_women <- data.frame()
# Initializing the id of the race
race_id <- 0
# Initializing the count of all the DNS
res_dns_women <- 0
# Initializing the count of all the DSQ
res_dsq_women <- 0
# Initializing the count of all the DNF
res_dnf_women <- 0
# Initializing the count of all the lapped athletes
res_lap_women <- 0
# Initializing the count of all the bibs > 120 because they won't appear in loops,
# this happens only in Kontiolahti 2014, these damned Finnish...
res_over_women <- 0
# The allowable values for the Rank column of the data frame
allowables <- c(c(1:127), 'DNF', 'DNS', 'DSQ', 'LAP')
# Defining the list connectiong races to their id
list_id_women <- list()
for (i in seq_along(years)){
for(j in seq_along(locations[[years[i]]])){
files <- list.files(locations_path_women[[years[i]]],
pattern=sprintf('results.%s',locations[[years[i]]][j]),full.names = TRUE )
# Importing the data frame
for (file in files){
# Updating the race_id that will act as our primary key of the data set
race_id <- race_id + 1
list_id_women[[file]] <- race_id
df_res <- read.csv(file = file, sep = '\t')
# Raising a flag if the Rank column has not allowable columns
if(length(df_res$Rank[df_res$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
# Updating the count of bibs > 120
res_over_women <- res_over_women + length(df_res$Rank[destring(df_res$Rank) > 120]
[! is.na(df_res$Rank[destring(df_res$Rank) > 120])])
# Updating the DNS count
res_dns_women <- res_dns_women + length(df_res$Rank[df_res$Rank=='DNS'])
# Updating the DNF count
res_dnf_women <- res_dnf_women + length(df_res$Rank[df_res$Rank=='DNF'])
# Updating the DSQ count
res_dsq_women <- res_dsq_women + length(df_res$Rank[df_res$Rank=='DSQ'])
# Updating the lapped athletes' count
res_lap_women <- res_lap_women + length(df_res$Rank[df_res$Rank=='LAP'])
# Checking for possible inconsistencies in the data set
if('Rank' %!in% colnames(df_res)){
cat(paste('There is a mistake in', file))
}
# Adding the isolated.pursuit column to the non-pursuit races in order to have the same
# columns to perform the rbind operation
else if('Isolated.Pursuit' %!in% colnames(df_res)){
df_res$Isolated.Pursuit <- rep(NA, nrow(df_res))
}
# Adding the column specifying the year of the race
df_res$year <- rep(years[i], nrow(df_res))
# Adding the column specifying the venue of the race
df_res$location <- rep(locations[[years[i]]][j], nrow(df_res))
# Adding the column with the id of the race
df_res$ID <- rep(race_id, nrow(df_res))
# Adding the column specifying the type of the race
if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
df_res$race_type <- rep('Pursuit', nrow(df_res))
}
else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
df_res$race_type <- rep('Individual', nrow(df_res))
}
else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
df_res$race_type <- rep('Mass start', nrow(df_res))
}
else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
df_res$race_type <- rep('Sprint', nrow(df_res))
}
else{
cat(paste('There is a mistake in',file,
'no race type specified'))
}
# Filling the list as we did for the men, popping out the disqualified is due to the
# Glaryzina affair
list_id_women[[paste(df_res$race_type[1], years[i], locations[[years[i]]][j],
df_res$Given.Name[df_res$Rank %!in% c('DSQ')][1],
df_res$Given.Name[df_res$Rank %!in% c('DSQ')][2])]] <- race_id
# Updating the final data frame
df_results_women <- rbind(df_results_women, df_res)
}
}
}
head(df_results_women)
## Rank Bib Family.Name Given.Name Nation Total Shootings Total.Time Behind
## 1 1 1 Domracheva Darya BLR 1 1+0+0+0 30:58.5
## 2 2 11 Virolainen Daria RUS 1 0+0+0+1 32:19.5 +1:21.0
## 3 3 2 Makarainen Kaisa FIN 5 2+0+1+2 32:27.5 +1:29.0
## 4 4 6 Hildebrand Franziska GER 1 0+0+1+0 32:27.8 +1:29.3
## 5 5 19 Dorin Habert Marie FRA 2 0+1+1+0 32:36.5 +1:38.0
## 6 6 8 Dunklee Susan USA 1 0+1+0+0 32:39.3 +1:40.8
## Isolated.Pursuit year location ID race_type
## 1 30:58.5 2014-2015 Anterselva 1 Pursuit
## 2 31:05.5 2014-2015 Anterselva 1 Pursuit
## 3 32:00.5 2014-2015 Anterselva 1 Pursuit
## 4 31:26.8 2014-2015 Anterselva 1 Pursuit
## 5 31:10.5 2014-2015 Anterselva 1 Pursuit
## 6 31:29.3 2014-2015 Anterselva 1 Pursuit
head(df_results_men)
## Rank Bib Family.Name Given.Name Nation Total Shootings Total.Time Behind
## 1 1 1 Schempp Simon GER 2 1+1+0+0 31:27.9
## 2 2 8 Eder Simon AUT 1 0+1+0+0 31:28.0 +0.1
## 3 3 2 Garanichev Evgeniy RUS 1 0+0+1+0 31:29.0 +1.1
## 4 4 9 Bjoerndalen Ole Einar NOR 0 0+0+0+0 31:29.8 +1.9
## 5 5 25 Fourcade Martin FRA 0 0+0+0+0 31:59.8 +31.9
## 6 6 19 Lesser Erik GER 0 0+0+0+0 32:13.5 +45.6
## Isolated.Pursuit year location ID race_type
## 1 31:27.9 2014-2015 Anterselva 1 Pursuit
## 2 30:52.0 2014-2015 Anterselva 1 Pursuit
## 3 31:15.0 2014-2015 Anterselva 1 Pursuit
## 4 30:46.8 2014-2015 Anterselva 1 Pursuit
## 5 30:39.8 2014-2015 Anterselva 1 Pursuit
## 6 31:05.5 2014-2015 Anterselva 1 Pursuit
# Initializing the race_id for the second to last loop data frame
race_id <- 0
# The set of allowable values for the Rank column of the loop data frame
allowables <- c(1:127)
# Initializing the final loop data frame
df_final_loop_men <- data.frame()
# Beginning the cycle that loops over every year and every venue
for (i in seq_along(years)){
for(j in seq_along(locations[[years[i]]])){
# All the files that represent a loop in our directory
files <- list.files(locations_path_men[[years[i]]],
pattern=sprintf('loop...%s',locations[[years[i]]][j]),full.names = TRUE )
# Looping over all the files
for (file in files){
# Here we select, between all loop files the ones that represent the second to last loop,
# that is, the loop in which the biathlete arrive at the last shooting range
if (
(grepl(pattern = 'pursuit', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_4', x =file, fixed=TRUE))
||
(grepl(pattern = 'sprint', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_2', x =file, fixed=TRUE))
||
(grepl(pattern = 'individual', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_4', x =file, fixed=TRUE))
||
(grepl(pattern = 'mass_start', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_4', x =file, fixed=TRUE))
){
# Updating the race id
# Reading the file into a data frame
df_loop <- read.csv2(file = file, sep = '\t')
# Here we raise a flag if we don't have the Rank colun in the created data frame
if('Rank' %!in% colnames(df_loop)){
cat(paste('There is a mistake in', file, '\n'))
# Here we raise a flag and print the relative fail if we have a Rank value that is not allowed
if(length(df_loop$Rank[df_loop$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
}
# The column Ski.Time is present only on individual races, for tha others we fill it with 0
# in order to make the rbind possible
if ('Ski.Time'%!in% colnames(df_loop)){
df_loop[['Ski.Time']] <- rep(0, nrow(df_loop))
}
# The Canmore's short individual did not have the Range.Time column, so we create it for the
# rbind... but who cares about short individuals anyway!!!
if ('Range.Time'%!in% colnames(df_loop)){
df_loop[['Range.Time']] <- rep(0, nrow(df_loop))
}
# The columns of the data frame
columns_df <- colnames(df_loop)
# The index from which column regarding times start
idx_time_columns <- which(columns_df=='Nation')
# The 'time' columns of the table, the -1 at the end is to delete 'Nation'
# that is not between them
time_columns <- columns_df[idx_time_columns:length(columns_df)][-1]
# Adding the column specifying the year of the race
df_loop$year <- rep(years[i], nrow(df_loop))
# Adding the column specifying the venue of the race
df_loop$location <- rep(locations[[years[i]]][j], nrow(df_loop))
# Adding the column specifying the type of the race
if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Pursuit', nrow(df_loop))
}
else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Individual', nrow(df_loop))
}
else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Mass start', nrow(df_loop))
}
else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Sprint', nrow(df_loop))
}
else{
cat(paste('There is a mistake in',file,
'no race type specified'))
}
# Assigning to the race the same id that it has on the results data frame
df_loop$ID <-rep( list_id_men[[paste(df_loop$race_type[1], years[i], locations[[years[i]]][j],
df_loop$Given.Name[1], df_loop$Given.Name[2])]], nrow(df_loop))
# Initializing the list of the reference times among all the columns, we have in fact that
# time columns are note stored as absolute times: we have a reference time and then the other records
# reference to it as +'time_interval'
reference_times <- list()
# Looping over all the time columns
for(column in time_columns){
# In individual races penalty times, as we know, are a thing of their own and the data set
# itself seem to have noticed! It does not have in fact a value for biathletes that found the
# 0 in a certain shooting range. We deal with it by giving by default the value 0.
# We know what you are thinking: What if every one missed at least once?
# Come on have a little trust in your sport heroes! as soon as Sturla Holm Lægreid will be around
# we are more them safe!
if (column == 'Penalty.Time'
&&
grepl(pattern = 'individual', x = file, fixed=TRUE)
)
{reference_time <- duration(second = 0)}
# In the else statement instead we select as the reference time the record with no '+' in
# its body, the [1] is there to arbitrary break the ties between equally good reference times
else{
reference_time <- df_loop[[column]][!grepl(pattern = '+', x =df_loop[[column]],
fixed=TRUE)]
}
reference_time <- reference_time[1]
# In this if cycle we convert the reference time from a string to a time duration
# thanks to the lubridate package and its duration function
# The first case is for whe we have minutes and not only second where we have a column
# as a separator
if (grepl(pattern = ':', x = reference_time,
fixed=TRUE)){
# Changing the reference time into an iterable
string_sep <- unlist(strsplit((reference_time),""))
# Getting the index of the column
idx_sep <- unlist(gregexpr(':', reference_time, fixed = TRUE))
# This step raises a flag if having a double colon signaling hours,
# comes out: biathletes are no snails!
if (length(idx_sep) > 1){cat(paste('Do we have hours now?? in', file ))}
# The minute part of the reference time
min <- as.numeric(paste(string_sep[1:idx_sep-1], collapse=""))
# The second part of the reference time
sec <- as.numeric(paste(string_sep[-c(1:idx_sep)], collapse=""))
reference_time_ <- duration(minute= min, second=sec)
}
# This second case is for reference times that don't reach a minute
else{
sec <- as.numeric(reference_time)
reference_time_ <- duration(second=sec)
}
# Updating the list
reference_times[[column]] <- reference_time_
# Index of the reference times
reference_time_idx <- which(!grepl(pattern = '+', x =df_loop[[column]],
fixed=TRUE))
# Renaming the times of the current columns
times_to_add <- df_loop[[column]]
# Initializing the column of the absolute times
final_adding <- c()
# Filling the final_adding vector
for (k in seq_along(times_to_add)){
# Putting in the reference times
if (k %in% reference_time_idx){
final_adding[k] <- reference_times[[column]]
}
# Putting in the 'minutes' recorda
else if (grepl(pattern = ':', x =times_to_add[k], fixed=TRUE)){
string_add <- unlist(strsplit((times_to_add[k]),""))
idx_add <- unlist(gregexpr(':', times_to_add[k]))
# Flag raise for 'hour' times
if (length(idx_add) > 1){print('Do we have hours now?? in', file)}
min_add <- as.numeric(paste(string_add[1:idx_add-1], collapse=""))
sec_add <- as.numeric(paste(string_add[-c(1:idx_add)], collapse=""))
adding_time <- duration(minute= min_add, second=sec_add)
# Here the [1] is present for arbitrarily breaking ties for equally good
# reference times
final_adding[k] <- adding_time + reference_times[[column]][1]
}
else{
# The original data frame contained a couple of 'broken' records, being only
# the string '+', we changed the values to a known fixed outlier ('+1000') and here
# we transform it into NA
if (times_to_add[k]=='+1000') {final_adding[k] <- NA}
# Non pathological case were we have a 'seconds' time
else{
final_adding[k] <- duration(second = as.numeric(times_to_add[k])) +
reference_times[[column]]
}
}
}
# Updating the column of the data frame
df_loop[[column]] <- final_adding
}
# Binding together the data frames
df_final_loop_men <- rbind(df_final_loop_men, df_loop)
}
}
}
}
df_final_loop_men
## Rank Bib Family.Name Given.Name Nation Cumulative.Time Loop.Time
## 1 1 29 Schempp Simon GER 957.9 476.0
## 2 2 42 Garanichev Evgeniy RUS 967.8 483.9
## 3 3 48 Fak Jakov SLO 975.8 500.5
## 4 4 49 Weger Benjamin SUI 986.8 483.2
## 5 5 53 Green Brendan CAN 981.3 489.7
## 6 6 85 L'Abee-Lund Henrik NOR 985.4 491.3
## 7 7 27 Shipulin Anton RUS 985.5 502.1
## 8 8 46 Eder Simon AUT 979.6 488.9
## 9 9 9 Bjoerndalen Ole Einar NOR 991.3 504.9
## 10 10 15 Moravec Ondrej CZE 994.0 496.9
## 11 11 68 Peiffer Arnd GER 1004.3 517.2
## 12 12 57 Eberhard Julian AUT 1011.9 483.5
## 13 13 17 Pidruchnyi Dmytro UKR 998.9 511.5
## 14 14 6 Iliev Vladimir BUL 1010.0 519.4
## 15 15 4 Malyshko Dmitry RUS 1000.6 499.9
## 16 16 28 Lapshin Timofei RUS 998.2 514.8
## 17 17 40 Beatrix Jean Guillaume FRA 1008.6 511.6
## 18 18 34 Fourcade Simon FRA 1005.6 501.1
## 19 19 45 Lesser Erik GER 1017.6 532.0
## 20 20 32 Lindstroem Fredrik SWE 1019.1 500.8
## 21 21 50 Rastorgujevs Andrejs LAT 1022.2 495.7
## 22 22 38 Pryma Artem UKR 1021.9 525.6
## 23 23 1 Krcmar Michal CZE 1020.5 517.3
## 24 24 66 Os Alexander NOR 1017.5 497.5
## 25 25 10 Fourcade Martin FRA 1014.2 508.0
## 26 26 88 Doll Benedikt GER 1028.8 518.4
## 27 27 76 Dolder Mario SUI 1013.6 505.2
## 28 28 3 Svendsen Emil Hegle NOR 1035.9 520.0
## 29 29 19 Fillon Maillet Quentin FRA 1033.3 488.0
## 30 30 14 Boehm Daniel GER 1020.6 529.0
## 31 31 5 Boe Johannes Thingnes NOR 1040.0 515.7
## 32 32 37 Bailey Lowell USA 1025.7 527.4
## 33 33 41 Chepelin Vladimir BLR 1029.8 540.3
## 34 34 16 Hofer Lukas ITA 1031.8 528.5
## 35 34 44 Kazar Matej SVK 1049.7 506.3
## 36 36 11 Birnbacher Andreas GER 1035.2 497.9
## 37 37 47 Komatz David AUT 1026.6 528.5
## 38 38 25 Windisch Dominik ITA 1046.3 518.2
## 39 39 92 Hasilla Tomas SVK 1032.2 527.7
## 40 40 63 Soukup Jaroslav CZE 1051.0 525.6
## 41 41 13 Puchianu Cornel ROU 1055.0 557.1
## 42 42 102 Zhyrnyi Oleksandr UKR 1028.4 525.3
## 43 43 99 De Lorenzi Christian ITA 1039.1 536.6
## 44 44 23 Mesotitsch Daniel AUT 1049.0 531.6
## 45 45 36 Boe Tarjei NOR 1047.5 546.7
## 46 46 94 Jouty Baptiste FRA 1046.5 536.5
## 47 47 67 Burke Tim USA 1059.2 543.8
## 48 48 22 Savitskiy Yan KAZ 1044.3 516.7
## 49 49 18 Slesingr Michal CZE 1052.4 535.5
## 50 50 39 Roesch Michael BEL 1047.5 559.8
## 51 51 103 Gow Christian CAN 1041.3 523.1
## 52 52 52 Trsan Rok SLO 1052.2 527.0
## 53 53 33 Grossegger Sven AUT 1040.4 540.0
## 54 54 7 Liadov Yuryi BLR 1067.1 559.0
## 55 55 35 Anev Krasimir BUL 1060.3 511.9
## 56 56 96 Pinter Friedrich AUT 1057.1 549.0
## 57 57 74 Kaukenas Tomas LTU 1054.7 538.7
## 58 58 75 Desthieux Simon FRA 1065.0 560.2
## 59 59 59 Pantov Anton KAZ 1063.7 504.0
## 60 60 82 Oblak Lenart SLO 1048.7 533.4
## 61 61 30 Toivanen Ahti FIN 1083.3 542.9
## 62 62 83 Doherty Sean USA 1075.1 553.8
## 63 63 31 Krupcik Tomas CZE 1064.0 548.8
## 64 64 69 Tsvetkov Maxim RUS 1067.0 576.6
## 65 65 81 Matiasko Miroslav SVK 1068.5 557.8
## 66 66 72 Tyshchenko Artem UKR 1055.2 559.7
## 67 67 70 Faur Remus ROU 1055.1 528.6
## 68 68 54 Dokl Peter SLO 1052.9 532.1
## 69 69 60 Bormolini Thomas ITA 1060.1 563.3
## 70 70 51 Tobreluts Indrek EST 1088.6 564.2
## 71 71 8 Semenov Sergii UKR 1106.8 518.9
## 72 72 56 Hiidensalo Olli FIN 1084.5 531.3
## 73 73 20 Gow Scott CAN 1093.3 541.2
## 74 74 24 Lessing Roland EST 1077.9 526.8
## 75 75 73 Zlatev Ivan BUL 1058.5 546.8
## 76 76 86 Zahkna Rene EST 1070.0 523.3
## 77 77 43 Smith Nathan CAN 1074.9 549.1
## 78 78 101 Abasheu Dzmitry BLR 1073.2 564.3
## 79 79 21 Nordgren Leif USA 1088.4 547.9
## 80 80 87 Kauppinen Jarkko FIN 1071.5 540.0
## 81 81 100 Stegmayr Gabriel SWE 1077.0 537.5
## 82 82 2 Otcenas Martin SVK 1105.6 567.7
## 83 83 62 Guzik Grzegorz POL 1084.7 526.2
## 84 84 77 Sloof Joel NED 1069.2 558.1
## 85 85 61 Almoukov Alexei AUS 1063.6 546.9
## 86 86 71 Armgren Ted SWE 1100.2 556.5
## 87 87 78 Dyuzhev Dmitriy BLR 1108.7 560.2
## 88 88 65 Lobo Escolar Victor ESP 1095.0 554.0
## 89 89 89 Dombrovski Karol LTU 1090.8 554.1
## 90 90 58 Puzulis Rolands LAT 1098.5 542.3
## 91 91 12 Wiestner Serafin SUI 1142.1 580.8
## 92 92 95 Trifonov Alexandr KAZ 1101.4 554.0
## 93 93 80 Stenersen Torstein SWE 1130.5 576.4
## 94 94 79 Kane Kevin GBR 1110.8 556.0
## 95 95 97 Cuenot Gaspard SUI 1115.0 565.0
## 96 96 55 Rastic Damir SRB 1139.1 583.7
## 97 97 90 Szczurek Lukasz POL 1180.2 545.4
## 98 98 91 Slotins Roberts LAT 1168.1 637.9
## 99 99 64 Inomata Kazuya JPN 1162.1 592.2
## 100 100 98 Laponder Marcel GBR 1188.8 603.6
## 101 101 93 Krsmanovic Dejan SRB 1236.9 642.0
## 102 1 1 Schempp Simon GER 1555.9 379.1
## 103 2 8 Eder Simon AUT 1554.5 380.8
## 104 3 2 Garanichev Evgeniy RUS 1553.9 382.4
## 105 4 9 Bjoerndalen Ole Einar NOR 1555.5 380.4
## 106 5 25 Fourcade Martin FRA 1579.0 378.8
## 107 6 19 Lesser Erik GER 1584.3 383.3
## 108 7 3 Fak Jakov SLO 1599.0 397.6
## 109 8 18 Fourcade Simon FRA 1600.5 380.4
## 110 9 13 Pidruchnyi Dmytro UKR 1615.6 377.9
## 111 10 11 Peiffer Arnd GER 1608.5 391.3
## 112 11 10 Moravec Ondrej CZE 1615.1 382.4
## 113 12 30 Boehm Daniel GER 1603.4 379.4
## 114 13 7 Shipulin Anton RUS 1622.9 397.8
## 115 14 16 Lapshin Timofei RUS 1612.7 393.5
## 116 15 12 Eberhard Julian AUT 1622.6 401.6
## 117 16 17 Beatrix Jean Guillaume FRA 1639.0 418.5
## 118 17 28 Svendsen Emil Hegle NOR 1641.2 409.0
## 119 18 5 Green Brendan CAN 1656.6 386.9
## 120 19 37 Birnbacher Andreas GER 1655.1 387.8
## 121 20 20 Lindstroem Fredrik SWE 1658.2 426.9
## 122 21 29 Fillon Maillet Quentin FRA 1667.1 408.5
## 123 22 31 Boe Johannes Thingnes NOR 1687.6 447.5
## 124 23 26 Doll Benedikt GER 1702.8 429.6
## 125 24 23 Krcmar Michal CZE 1699.7 412.2
## 126 25 46 Boe Tarjei NOR 1697.9 412.7
## 127 26 22 Pryma Artem UKR 1695.6 405.8
## 128 27 54 Grossegger Sven AUT 1697.0 398.0
## 129 28 4 Weger Benjamin SUI 1696.0 438.2
## 130 29 45 Mesotitsch Daniel AUT 1704.1 404.6
## 131 30 34 Hofer Lukas ITA 1717.3 426.0
## 132 31 32 Bailey Lowell USA 1717.7 428.8
## 133 32 14 Iliev Vladimir BUL 1720.5 449.3
## 134 33 44 De Lorenzi Christian ITA 1710.3 418.3
## 135 34 24 Os Alexander NOR 1723.5 439.5
## 136 35 21 Rastorgujevs Andrejs LAT 1731.4 414.7
## 137 36 39 Windisch Dominik ITA 1736.5 445.0
## 138 37 38 Komatz David AUT 1736.1 395.5
## 139 38 33 Chepelin Vladimir BLR 1734.4 463.5
## 140 39 51 Roesch Michael BEL 1755.2 446.3
## 141 40 48 Burke Tim USA 1761.5 405.9
## 142 41 41 Soukup Jaroslav CZE 1765.4 419.7
## 143 42 43 Zhyrnyi Oleksandr UKR 1771.0 400.6
## 144 43 15 Malyshko Dmitry RUS 1768.3 405.4
## 145 44 49 Savitskiy Yan KAZ 1765.1 430.5
## 146 45 27 Dolder Mario SUI 1791.0 477.5
## 147 46 52 Gow Christian CAN 1778.7 430.2
## 148 47 58 Kaukenas Tomas LTU 1807.4 444.2
## 149 48 42 Puchianu Cornel ROU 1801.0 454.2
## 150 49 40 Hasilla Tomas SVK 1816.2 447.6
## 151 50 35 Kazar Matej SVK 1824.3 490.5
## 152 51 57 Pinter Friedrich AUT 1833.4 469.4
## 153 52 47 Jouty Baptiste FRA 1863.3 460.9
## 154 53 60 Pantov Anton KAZ 1890.0 424.3
## 155 1 13 Boe Johannes Thingnes NOR 1134.7 777.8
## 156 2 19 Schempp Simon GER 1149.9 778.8
## 157 3 16 Birnbacher Andreas GER 1149.0 775.9
## 158 4 27 Landertinger Dominik AUT 1156.1 791.8
## 159 5 25 Fak Jakov SLO 1157.4 771.3
## 160 6 6 Boe Tarjei NOR 1161.7 792.3
## 161 7 83 Fourcade Martin FRA 1150.7 787.4
## 162 8 30 Malyshko Dmitry RUS 1153.2 781.5
## 163 9 2 Svendsen Emil Hegle NOR 1163.3 801.2
## 164 10 5 Moravec Ondrej CZE 1167.9 773.8
## 165 11 33 Shipulin Anton RUS 1165.4 773.6
## 166 12 10 Weger Benjamin SUI 1161.5 799.9
## 167 13 7 Burke Tim USA 1168.8 802.8
## 168 14 4 Mesotitsch Daniel AUT 1171.6 804.5
## 169 15 52 Boehm Daniel GER 1173.2 804.7
## 170 16 88 Lapshin Timofei RUS 1170.8 812.4
## 171 17 23 Anev Krasimir BUL 1169.6 797.7
## 172 17 41 Bailey Lowell USA 1171.0 800.2
## 173 19 31 Iliev Vladimir BUL 1183.9 808.1
## 174 20 26 Kazar Matej SVK 1183.6 814.3
## 175 21 14 Savitskiy Yan KAZ 1169.7 791.6
## 176 22 18 Tsvetkov Maxim RUS 1179.4 808.7
## 177 23 28 Rastorgujevs Andrejs LAT 1198.9 784.7
## 178 24 12 Eder Simon AUT 1190.2 810.4
## 179 25 36 Os Alexander NOR 1205.9 789.4
## 180 26 8 Pryma Artem UKR 1204.4 825.7
## 181 27 9 Puchianu Cornel ROU 1208.7 834.8
## 182 28 39 Lesser Erik GER 1217.3 831.0
## 183 29 105 Fourcade Simon FRA 1192.6 821.8
## 184 30 21 Desthieux Simon FRA 1219.7 849.3
## 185 31 22 Semenov Sergii UKR 1212.0 800.7
## 186 32 43 Peiffer Arnd GER 1209.9 845.1
## 187 33 42 Garanichev Evgeniy RUS 1214.1 849.6
## 188 34 47 Dolder Mario SUI 1213.8 838.2
## 189 35 85 Pidruchnyi Dmytro UKR 1216.1 817.2
## 190 36 17 Soukup Jaroslav CZE 1226.8 829.5
## 191 37 91 Beatrix Jean Guillaume FRA 1225.5 856.4
## 192 38 73 Birkeland Lars Helge NOR 1225.7 813.1
## 193 39 101 Bjoerndalen Ole Einar NOR 1220.7 811.3
## 194 40 24 Bauer Klemen SLO 1227.1 863.4
## 195 41 82 Eberhard Julian AUT 1238.9 822.0
## 196 42 15 Slesingr Michal CZE 1229.2 851.4
## 197 43 29 Smith Nathan CAN 1235.7 820.5
## 198 44 35 Fillon Maillet Quentin FRA 1223.1 845.3
## 199 45 1 Liadov Yuryi BLR 1228.8 828.7
## 200 46 40 Lindstroem Fredrik SWE 1246.1 855.4
## 201 47 79 Otcenas Martin SVK 1242.5 877.5
## 202 48 74 Green Brendan CAN 1244.6 813.5
## 203 49 54 Koiv Kauri EST 1225.1 852.2
## 204 50 70 Nordgren Leif USA 1243.9 833.6
## 205 51 50 Sloof Joel NED 1229.4 845.2
## 206 52 69 Hiidensalo Olli FIN 1255.6 822.8
## 207 53 57 Chepelin Vladimir BLR 1255.6 881.2
## 208 54 65 Zhyrnyi Oleksandr UKR 1242.0 830.6
## 209 55 48 Krcmar Michal CZE 1260.6 879.4
## 210 56 3 Arwidson Tobias SWE 1236.1 866.0
## 211 57 53 Cuenot Gaspard SUI 1256.6 854.3
## 212 58 37 Windisch Dominik ITA 1258.3 843.4
## 213 59 96 Tobreluts Indrek EST 1262.3 878.3
## 214 60 97 Currier Russell USA 1269.0 830.7
## 215 61 94 Dombrovski Karol LTU 1240.2 835.8
## 216 62 102 Wiestner Serafin SUI 1262.1 836.5
## 217 63 67 Darozhka Aliaksandr BLR 1263.3 865.9
## 218 64 51 Kaukenas Tomas LTU 1261.6 885.6
## 219 65 20 Hofer Lukas ITA 1264.6 853.5
## 220 66 56 Bormolini Thomas ITA 1260.1 836.2
## 221 67 46 Eriksson Christofer SWE 1267.1 877.1
## 222 68 93 Willeitner Michael GER 1282.7 897.2
## 223 69 103 Rastic Damir SRB 1260.6 864.5
## 224 70 89 Budzilovich Dzmitry BLR 1267.9 874.6
## 225 71 64 Eberhard Tobias AUT 1274.0 859.0
## 226 72 32 Tyshchenko Artem UKR 1275.9 865.6
## 227 73 34 Lessing Roland EST 1291.7 856.1
## 228 74 86 Armgren Ted SWE 1283.7 858.7
## 229 75 84 Trsan Rok SLO 1280.4 899.0
## 230 76 58 Oblak Lenart SLO 1276.8 837.7
## 231 77 76 Dokl Peter SLO 1265.9 876.3
## 232 78 45 Krupcik Tomas CZE 1277.2 874.5
## 233 79 75 Hakala Matti FIN 1290.5 857.6
## 234 80 80 Roesch Michael BEL 1261.4 893.2
## 235 81 49 Bedard Marc Andre CAN 1283.7 850.5
## 236 82 38 Komatz David AUT 1288.1 875.4
## 237 83 81 Buta George ROU 1298.5 884.9
## 238 84 68 Almoukov Alexei AUS 1302.7 864.6
## 239 85 90 Martinelli Christian ITA 1291.4 861.8
## 240 86 59 Boeuf Alexis FRA 1297.8 890.5
## 241 87 44 Hasilla Tomas SVK 1293.9 888.4
## 242 88 77 Trifonov Alexandr KAZ 1293.4 876.8
## 243 89 87 Janik Mateusz POL 1309.1 885.6
## 244 90 78 Lobo Escolar Victor ESP 1302.7 908.0
## 245 91 11 Kobonoki Tsukasa JPN 1301.7 872.6
## 246 92 104 Gronman Tuomas FIN 1304.4 889.2
## 247 93 60 Sinapov Anton BUL 1317.1 931.7
## 248 94 62 Szczurek Lukasz POL 1332.7 864.6
## 249 95 61 Jackson Lee-Steve GBR 1325.4 852.7
## 250 96 66 Femling Peppe SWE 1301.4 877.4
## 251 97 98 Podkorytov Vassiliy KAZ 1336.0 845.7
## 252 98 99 Matiasko Miroslav SVK 1349.6 932.0
## 253 99 92 Perras Scott CAN 1365.9 902.7
## 254 100 55 Puzulis Rolands LAT 1332.3 929.1
## 255 101 95 Patrijuks Aleksandrs LAT 1373.4 934.9
## 256 102 71 Crnkovic Kresimir CRO 1377.5 942.1
## 257 103 100 Kane Kevin GBR 1403.2 987.1
## 258 104 72 Hodzic Edin SRB 1406.8 934.2
## 259 1 7 Fourcade Martin FRA 1612.2 416.0
## 260 2 2 Schempp Simon GER 1620.3 422.0
## 261 3 5 Fak Jakov SLO 1638.4 443.7
## 262 4 1 Boe Johannes Thingnes NOR 1637.8 415.3
## 263 5 11 Shipulin Anton RUS 1647.5 415.2
## 264 6 6 Boe Tarjei NOR 1657.9 419.6
## 265 7 3 Birnbacher Andreas GER 1665.8 417.5
## 266 8 4 Landertinger Dominik AUT 1691.9 462.9
## 267 9 10 Moravec Ondrej CZE 1683.5 422.8
## 268 10 8 Malyshko Dmitry RUS 1684.8 423.0
## 269 11 19 Iliev Vladimir BUL 1685.9 446.5
## 270 12 15 Boehm Daniel GER 1686.4 423.2
## 271 13 16 Lapshin Timofei RUS 1691.7 443.9
## 272 14 9 Svendsen Emil Hegle NOR 1691.3 445.6
## 273 15 45 Fillon Maillet Quentin FRA 1711.1 417.8
## 274 16 25 Eder Simon AUT 1737.5 454.0
## 275 17 24 Rastorgujevs Andrejs LAT 1736.8 420.3
## 276 18 29 Lesser Erik GER 1746.2 423.8
## 277 19 14 Mesotitsch Daniel AUT 1735.4 451.1
## 278 20 12 Weger Benjamin SUI 1751.2 446.2
## 279 21 23 Tsvetkov Maxim RUS 1766.6 436.3
## 280 22 47 Lindstroem Fredrik SWE 1766.0 424.1
## 281 23 17 Anev Krasimir BUL 1732.0 453.0
## 282 24 20 Kazar Matej SVK 1776.0 433.7
## 283 25 13 Burke Tim USA 1772.8 425.8
## 284 26 30 Fourcade Simon FRA 1779.0 421.4
## 285 27 34 Garanichev Evgeniy RUS 1781.3 440.1
## 286 28 21 Savitskiy Yan KAZ 1751.6 435.0
## 287 29 27 Pryma Artem UKR 1775.7 452.1
## 288 30 39 Birkeland Lars Helge NOR 1789.9 444.7
## 289 31 36 Pidruchnyi Dmytro UKR 1782.1 457.8
## 290 32 18 Bailey Lowell USA 1784.9 478.1
## 291 33 26 Os Alexander NOR 1800.2 441.9
## 292 34 32 Semenov Sergii UKR 1800.8 433.7
## 293 35 41 Bauer Klemen SLO 1803.5 431.9
## 294 36 51 Nordgren Leif USA 1802.0 428.1
## 295 37 38 Beatrix Jean Guillaume FRA 1822.1 486.1
## 296 38 42 Eberhard Julian AUT 1840.9 446.1
## 297 39 31 Desthieux Simon FRA 1839.1 505.5
## 298 40 54 Chepelin Vladimir BLR 1844.5 443.0
## 299 41 59 Windisch Dominik ITA 1844.3 468.5
## 300 42 33 Peiffer Arnd GER 1853.9 454.3
## 301 43 49 Green Brendan CAN 1868.4 494.1
## 302 44 35 Dolder Mario SUI 1861.0 467.1
## 303 45 57 Arwidson Tobias SWE 1860.4 440.9
## 304 46 48 Otcenas Martin SVK 1886.9 505.6
## 305 47 56 Krcmar Michal CZE 1889.7 486.6
## 306 48 44 Smith Nathan CAN 1912.9 553.9
## 307 49 58 Cuenot Gaspard SUI 1921.3 504.3
## 308 50 55 Zhyrnyi Oleksandr UKR 1924.9 471.2
## 309 51 37 Soukup Jaroslav CZE 1913.6 549.9
## 310 52 46 Liadov Yuryi BLR 1928.3 510.7
## 311 53 28 Puchianu Cornel ROU 1963.8 493.9
## 312 54 53 Hiidensalo Olli FIN 1967.2 476.2
## 313 55 50 Koiv Kauri EST 2032.7 515.7
## 314 56 52 Sloof Joel NED 2020.4 508.0
## 315 1 38 Fourcade Martin FRA 988.2 495.7
## 316 2 43 Shipulin Anton RUS 999.6 500.0
## 317 3 27 Doll Benedikt GER 1013.4 517.9
## 318 4 32 Rastorgujevs Andrejs LAT 1011.7 502.1
## 319 5 24 Smith Nathan CAN 1025.1 505.4
## 320 6 52 Peiffer Arnd GER 1029.9 519.5
## 321 7 26 Lindstroem Fredrik SWE 1019.6 512.2
## 322 8 23 Fourcade Simon FRA 1022.2 504.8
## 323 9 30 Bjoerndalen Ole Einar NOR 1017.6 509.2
## 324 10 3 Kuehn Johannes GER 1043.2 538.0
## 325 11 31 Boehm Daniel GER 1031.3 530.7
## 326 12 2 Beatrix Jean Guillaume FRA 1021.2 513.5
## 327 13 37 Svendsen Emil Hegle NOR 1027.7 527.0
## 328 14 14 Tsvetkov Maxim RUS 1036.8 518.0
## 329 15 28 Slesingr Michal CZE 1042.6 524.6
## 330 16 67 Schempp Simon GER 1048.9 546.9
## 331 17 45 Dolder Mario SUI 1039.4 533.1
## 332 18 19 Fak Jakov SLO 1058.7 541.0
## 333 19 39 Weger Benjamin SUI 1051.6 548.3
## 334 20 6 Anev Krasimir BUL 1032.6 518.4
## 335 21 41 Nordgren Leif USA 1045.5 534.3
## 336 22 29 Eberhard Julian AUT 1066.1 561.1
## 337 23 87 Graf Florian GER 1048.7 530.7
## 338 24 66 Volkov Alexey RUS 1030.7 524.7
## 339 25 36 Chepelin Vladimir BLR 1058.6 530.7
## 340 26 53 Lesser Erik GER 1057.1 553.6
## 341 27 51 Koiv Kauri EST 1043.0 540.0
## 342 28 9 Kazar Matej SVK 1052.3 532.3
## 343 29 11 Liadov Yuryi BLR 1055.3 531.7
## 344 30 47 Green Brendan CAN 1058.0 542.2
## 345 31 88 Joller Ivan SUI 1051.4 522.8
## 346 32 15 Wiestner Serafin SUI 1069.7 541.9
## 347 33 22 Garanichev Evgeniy RUS 1067.5 525.5
## 348 34 20 Iliev Vladimir BUL 1075.5 551.6
## 349 35 65 Grossegger Sven AUT 1044.7 535.6
## 350 36 1 Semenov Sergii UKR 1071.8 513.5
## 351 37 35 Bauer Klemen SLO 1076.3 525.4
## 352 38 42 Moravec Ondrej CZE 1073.4 508.2
## 353 39 4 Bjoentegaard Erlend NOR 1069.0 536.5
## 354 40 33 Malyshko Dmitry RUS 1067.9 515.4
## 355 41 55 Zhyrnyi Oleksandr UKR 1067.3 561.6
## 356 42 48 Femling Peppe SWE 1069.2 540.5
## 357 43 34 Roesch Michael BEL 1073.8 563.2
## 358 44 69 Slepov Alexey RUS 1096.5 527.9
## 359 44 75 Abasheu Dzmitry BLR 1068.2 548.6
## 360 46 63 Fillon Maillet Quentin FRA 1079.4 511.8
## 361 47 74 Gjermundshaug Vegard NOR 1068.8 533.8
## 362 48 81 Eder Simon AUT 1073.1 532.7
## 363 49 46 Hiidensalo Olli FIN 1088.7 556.1
## 364 50 12 Boe Tarjei NOR 1082.4 560.5
## 365 51 82 Bailey Lowell USA 1072.2 561.0
## 366 52 21 Pryma Artem UKR 1088.6 546.3
## 367 53 80 Mesotitsch Daniel AUT 1061.9 554.1
## 368 54 49 Windisch Dominik ITA 1081.0 568.2
## 369 55 56 Burke Tim USA 1096.7 574.7
## 370 56 16 Krcmar Michal CZE 1083.9 567.0
## 371 57 17 Hofer Lukas ITA 1109.3 555.9
## 372 57 70 L'Abee-Lund Henrik NOR 1078.2 568.6
## 373 59 62 Birkeland Lars Helge NOR 1073.4 531.8
## 374 60 5 Lapshin Timofei RUS 1089.7 526.8
## 375 61 7 Komatz David AUT 1085.4 548.9
## 376 62 25 Otcenas Martin SVK 1096.6 567.7
## 377 63 59 Matiasko Miroslav SVK 1082.0 552.2
## 378 64 71 Buta George ROU 1094.1 528.2
## 379 65 40 Savitskiy Yan KAZ 1087.0 548.4
## 380 66 89 Tyshchenko Artem UKR 1086.8 549.2
## 381 67 86 Dombrovski Karol LTU 1083.1 563.0
## 382 68 18 Boe Johannes Thingnes NOR 1099.3 574.5
## 383 69 54 Dyuzhev Dmitriy BLR 1107.8 549.4
## 384 70 85 Bormolini Thomas ITA 1102.0 551.9
## 385 71 78 Oblak Lenart SLO 1087.6 545.8
## 386 72 13 Puchianu Cornel ROU 1126.9 598.3
## 387 73 58 Zlatev Ivan BUL 1119.9 536.7
## 388 74 61 Braun Maxim KAZ 1135.9 545.0
## 389 75 44 Sloof Joel NED 1114.9 538.8
## 390 76 8 Arwidson Tobias SWE 1114.7 557.6
## 391 77 50 Trsan Rok SLO 1138.8 569.1
## 392 78 72 Krupcik Tomas CZE 1119.6 593.1
## 393 79 84 Pantov Anton KAZ 1142.4 565.6
## 394 80 90 Eliseev Matvey RUS 1143.4 571.9
## 395 81 68 Almoukov Alexei AUS 1137.4 565.7
## 396 82 83 Slotins Roberts LAT 1156.2 598.0
## 397 83 64 Kaukenas Tomas LTU 1175.4 628.1
## 398 84 77 Stephan Christoph GER 1210.8 706.5
## 399 85 60 Puzulis Rolands LAT 1173.1 604.7
## 400 86 79 Koivunen Mikael FIN 1188.2 635.5
## 401 87 57 Rastic Damir SRB 1206.4 668.4
## 402 88 76 Krsmanovic Dejan SRB 1281.3 683.7
## 403 1 3 Fak Jakov SLO 1894.7 470.8
## 404 2 2 Shipulin Anton RUS 1910.9 455.6
## 405 3 18 Boe Tarjei NOR 1901.0 471.3
## 406 4 10 Fourcade Simon FRA 1913.2 464.9
## 407 5 14 Eder Simon AUT 1918.0 464.4
## 408 6 19 Beatrix Jean Guillaume FRA 1918.0 468.3
## 409 7 13 Peiffer Arnd GER 1941.3 494.7
## 410 8 17 Boehm Daniel GER 1932.6 474.7
## 411 9 4 Boe Johannes Thingnes NOR 1935.7 492.6
## 412 10 16 Weger Benjamin SUI 1951.9 467.7
## 413 11 24 Rastorgujevs Andrejs LAT 1961.5 469.1
## 414 12 7 Garanichev Evgeniy RUS 1957.1 501.5
## 415 13 9 Lesser Erik GER 1937.5 505.2
## 416 14 22 Fillon Maillet Quentin FRA 1935.3 501.1
## 417 15 12 Lindstroem Fredrik SWE 1957.7 486.8
## 418 16 30 Eberhard Julian AUT 1982.1 469.8
## 419 17 15 Smith Nathan CAN 1971.6 489.9
## 420 18 27 Chepelin Vladimir BLR 1971.3 496.5
## 421 19 28 Kuehn Johannes GER 1981.2 499.9
## 422 20 1 Fourcade Martin FRA 1969.6 504.8
## 423 21 5 Moravec Ondrej CZE 1991.1 481.9
## 424 22 20 Doll Benedikt GER 2009.0 558.8
## 425 23 6 Slesingr Michal CZE 2009.3 503.2
## 426 24 26 Nordgren Leif USA 1998.6 503.8
## 427 25 25 Anev Krasimir BUL 1995.6 500.3
## 428 26 23 Semenov Sergii UKR 2019.7 477.1
## 429 27 8 Svendsen Emil Hegle NOR 2005.2 533.5
## 430 28 11 Lapshin Timofei RUS 2020.3 482.2
## 431 29 29 Graf Florian GER 2044.9 561.5
## 432 30 21 Iliev Vladimir BUL 2066.9 534.4
## 433 1 5 Smith Nathan CAN 1590.9 414.0
## 434 2 3 Doll Benedikt GER 1628.6 420.7
## 435 3 2 Shipulin Anton RUS 1636.8 444.6
## 436 4 1 Fourcade Martin FRA 1637.2 439.0
## 437 5 11 Boehm Daniel GER 1645.7 426.2
## 438 6 6 Peiffer Arnd GER 1653.0 446.5
## 439 7 7 Lindstroem Fredrik SWE 1656.6 423.2
## 440 8 4 Rastorgujevs Andrejs LAT 1685.9 461.0
## 441 9 15 Slesingr Michal CZE 1705.7 400.1
## 442 10 18 Fak Jakov SLO 1716.3 395.9
## 443 11 8 Fourcade Simon FRA 1697.4 459.5
## 444 11 50 Boe Tarjei NOR 1715.8 400.4
## 445 13 19 Weger Benjamin SUI 1714.2 438.4
## 446 14 57 Hofer Lukas ITA 1716.3 430.4
## 447 15 25 Chepelin Vladimir BLR 1712.2 432.9
## 448 16 36 Semenov Sergii UKR 1718.4 420.2
## 449 17 21 Nordgren Leif USA 1703.4 404.0
## 450 18 23 Graf Florian GER 1714.4 407.4
## 451 19 22 Eberhard Julian AUT 1734.6 437.2
## 452 20 12 Beatrix Jean Guillaume FRA 1707.5 447.8
## 453 21 40 Malyshko Dmitry RUS 1734.4 435.6
## 454 22 51 Bailey Lowell USA 1721.9 424.0
## 455 23 30 Green Brendan CAN 1725.3 408.4
## 456 24 53 Mesotitsch Daniel AUT 1739.0 415.6
## 457 25 26 Lesser Erik GER 1735.6 485.7
## 458 26 31 Joller Ivan SUI 1729.9 427.2
## 459 27 9 Bjoerndalen Ole Einar NOR 1740.3 410.7
## 460 28 44 Slepov Alexey RUS 1758.8 446.0
## 461 29 24 Volkov Alexey RUS 1742.3 458.7
## 462 30 43 Roesch Michael BEL 1745.5 454.9
## 463 31 10 Kuehn Johannes GER 1760.9 503.4
## 464 32 20 Anev Krasimir BUL 1759.6 406.9
## 465 33 34 Iliev Vladimir BUL 1776.7 423.6
## 466 34 17 Dolder Mario SUI 1760.5 457.0
## 467 35 48 Eder Simon AUT 1800.4 459.1
## 468 36 33 Garanichev Evgeniy RUS 1799.5 452.1
## 469 37 27 Koiv Kauri EST 1789.3 466.4
## 470 38 41 Zhyrnyi Oleksandr UKR 1798.3 440.4
## 471 39 35 Grossegger Sven AUT 1799.0 482.0
## 472 40 37 Bauer Klemen SLO 1810.5 433.5
## 473 41 14 Tsvetkov Maxim RUS 1807.9 455.4
## 474 42 38 Moravec Ondrej CZE 1817.7 413.3
## 475 43 54 Windisch Dominik ITA 1826.4 400.6
## 476 44 60 Lapshin Timofei RUS 1817.2 422.7
## 477 45 28 Kazar Matej SVK 1833.4 455.4
## 478 46 29 Liadov Yuryi BLR 1841.9 456.3
## 479 47 59 Birkeland Lars Helge NOR 1836.9 462.1
## 480 48 52 Pryma Artem UKR 1843.5 458.4
## 481 49 32 Wiestner Serafin SUI 1855.6 500.0
## 482 50 56 Krcmar Michal CZE 1854.2 427.3
## 483 51 58 L'Abee-Lund Henrik NOR 1855.2 425.5
## 484 52 45 Abasheu Dzmitry BLR 1868.0 435.8
## 485 53 55 Burke Tim USA 1881.2 462.1
## 486 54 49 Hiidensalo Olli FIN 1890.8 469.3
## 487 55 47 Gjermundshaug Vegard NOR 1890.3 494.8
## 488 1 16 Boe Johannes Thingnes NOR 1014.1 527.7
## 489 2 12 Smith Nathan CAN 1021.7 527.7
## 490 3 38 Boe Tarjei NOR 1032.5 528.2
## 491 4 41 Fourcade Simon FRA 1034.7 547.0
## 492 5 36 Lesser Erik GER 1036.8 537.4
## 493 6 11 Garanichev Evgeniy RUS 1041.8 552.1
## 494 7 10 Slesingr Michal CZE 1047.4 527.5
## 495 8 4 Iliev Vladimir BUL 1033.4 513.1
## 496 9 23 Moravec Ondrej CZE 1048.5 555.3
## 497 10 39 Doll Benedikt GER 1055.8 559.7
## 498 11 43 Soukup Jaroslav CZE 1036.4 528.8
## 499 12 25 Fourcade Martin FRA 1061.8 575.1
## 500 13 7 Weger Benjamin SUI 1063.2 544.6
## 501 14 17 Fak Jakov SLO 1069.1 556.7
## 502 15 5 Burke Tim USA 1063.4 542.4
## 503 16 21 Liadov Yuryi BLR 1061.7 566.1
## 504 17 40 Bailey Lowell USA 1058.0 543.7
## 505 18 28 Shipulin Anton RUS 1066.6 551.4
## 506 19 34 Bjoerndalen Ole Einar NOR 1069.9 558.0
## 507 20 26 Lindstroem Fredrik SWE 1077.7 586.2
## 508 21 18 Green Brendan CAN 1064.9 556.2
## 509 21 54 Roesch Michael BEL 1050.0 530.2
## 510 23 14 Windisch Dominik ITA 1077.9 541.7
## 511 24 2 Hofer Lukas ITA 1079.9 569.3
## 512 25 58 De Lorenzi Christian ITA 1061.0 548.8
## 513 26 6 Semenov Sergii UKR 1091.2 566.9
## 514 27 31 Lapshin Timofei RUS 1086.4 567.8
## 515 28 3 Dolder Mario SUI 1073.1 572.6
## 516 29 53 Wiestner Serafin SUI 1093.6 553.3
## 517 30 27 Peiffer Arnd GER 1085.0 575.0
## 518 31 57 Lessing Roland EST 1070.1 527.3
## 519 32 51 Puchianu Cornel ROU 1084.4 548.3
## 520 33 48 Kazar Matej SVK 1083.9 570.3
## 521 34 37 Malyshko Dmitry RUS 1088.9 519.2
## 522 35 59 L'Abee-Lund Henrik NOR 1075.0 544.8
## 523 36 8 Svendsen Emil Hegle NOR 1105.2 557.9
## 524 36 46 Joller Ivan SUI 1092.8 561.1
## 525 38 29 Fillon Maillet Quentin FRA 1089.7 585.0
## 526 39 30 Landertinger Dominik AUT 1096.0 566.1
## 527 39 42 Beatrix Jean Guillaume FRA 1096.3 599.7
## 528 41 35 Mesotitsch Daniel AUT 1101.2 554.3
## 529 42 1 Rastorgujevs Andrejs LAT 1107.4 568.0
## 530 43 9 Chepelin Vladimir BLR 1110.4 548.2
## 531 44 50 Eberhard Julian AUT 1125.9 561.1
## 532 45 22 Nordgren Leif USA 1106.6 610.4
## 533 46 19 Eder Simon AUT 1121.7 583.5
## 534 47 15 Bauer Klemen SLO 1127.6 588.8
## 535 48 56 Zhyrnyi Oleksandr UKR 1107.9 551.8
## 536 49 24 Pidruchnyi Dmytro UKR 1105.3 557.8
## 537 50 55 Gow Scott CAN 1102.1 566.4
## 538 51 70 Kauppinen Jarkko FIN 1091.7 577.5
## 539 52 13 Anev Krasimir BUL 1127.9 624.8
## 540 53 89 Koiv Kauri EST 1112.9 582.7
## 541 54 61 Toivanen Ahti FIN 1111.5 575.3
## 542 55 97 Doherty Sean USA 1128.2 557.1
## 543 56 47 Dyuzhev Dmitriy BLR 1130.4 590.4
## 544 57 64 Zlatev Ivan BUL 1139.2 590.0
## 545 58 120 Plywaczyk Krzysztof POL 1123.7 610.4
## 546 59 33 Krcmar Michal CZE 1155.3 581.2
## 547 60 88 Kaukenas Tomas LTU 1134.6 608.2
## 548 61 108 Buta George ROU 1133.8 611.7
## 549 62 32 Pryma Artem UKR 1157.6 621.7
## 550 63 68 Szczurek Lukasz POL 1144.8 581.8
## 551 64 52 Ermits Kalev EST 1158.8 567.2
## 552 65 62 Otcenas Martin SVK 1148.3 603.6
## 553 66 102 Maric Janez SLO 1159.5 641.5
## 554 67 44 Kobonoki Tsukasa JPN 1155.7 604.2
## 555 68 80 Dombrovski Karol LTU 1148.3 620.7
## 556 69 110 Strolia Vytautas LTU 1150.1 607.4
## 557 70 99 Abasheu Dzmitry BLR 1162.9 600.2
## 558 71 98 Trsan Rok SLO 1160.6 639.8
## 559 72 60 Armgren Ted SWE 1165.4 638.2
## 560 73 109 Gow Christian CAN 1157.4 608.7
## 561 74 111 Matiasko Miroslav SVK 1165.1 626.8
## 562 75 92 Hasilla Tomas SVK 1148.9 602.0
## 563 76 128 Sinapov Anton BUL 1165.5 581.3
## 564 77 20 Schempp Simon GER 1203.5 608.7
## 565 78 49 Femling Peppe SWE 1187.1 608.1
## 566 79 93 Jackson Lee-Steve GBR 1171.2 607.7
## 567 80 105 Tachizaki Mikito JPN 1174.6 599.9
## 568 81 78 Dixon Scott GBR 1158.7 614.9
## 569 82 69 Pantov Anton KAZ 1157.1 617.7
## 570 83 74 Eriksson Christofer SWE 1199.0 632.7
## 571 84 77 Inomata Kazuya JPN 1198.8 615.3
## 572 85 83 Hiidensalo Olli FIN 1210.0 641.2
## 573 86 100 Braun Maxim KAZ 1162.1 626.2
## 574 87 96 Tang Jinle CHN 1219.9 657.2
## 575 88 73 Ren Long CHN 1235.9 686.0
## 576 89 90 Guzik Grzegorz POL 1227.3 597.1
## 577 90 45 Bormolini Thomas ITA 1210.3 661.1
## 578 91 84 Kim Yonggyu KOR 1205.3 629.8
## 579 92 104 Almoukov Alexei AUS 1215.2 629.3
## 580 93 94 Slotins Roberts LAT 1219.6 656.1
## 581 94 101 Faur Remus ROU 1231.3 648.7
## 582 95 106 Rastic Damir SRB 1237.1 668.5
## 583 96 63 Savitskiy Yan KAZ 1247.0 670.2
## 584 97 91 Jun Jeuk KOR 1230.8 630.8
## 585 98 75 Angelis Apostolos GRE 1249.2 638.4
## 586 99 86 Langer Thorsten BEL 1211.9 616.0
## 587 100 124 Kim Jongmin KOR 1238.3 638.2
## 588 101 118 Danila Marian Marcel ROU 1267.3 670.8
## 589 102 103 Gombos Karoly HUN 1270.5 666.4
## 590 103 126 Gronman Tuomas FIN 1286.5 703.8
## 591 104 107 Hodzic Edin SRB 1245.8 648.6
## 592 105 125 Lee Suyoung KOR 1289.5 704.1
## 593 106 127 Praulitis Toms LAT 1273.1 690.7
## 594 107 85 Petrovic Filip CRO 1281.2 700.4
## 595 108 114 Kane Kevin GBR 1302.6 677.9
## 596 109 123 Suslavicius Rokas LTU 1303.3 648.1
## 597 110 121 Langer Thierry BEL 1335.1 639.2
## 598 111 112 Ustuntas Ahmet TUR 1302.3 691.7
## 599 112 119 Maeda Ryo JPN 1315.7 707.2
## 600 113 129 Podkorytov Vassiliy KAZ 1341.0 791.6
## 601 114 81 Icoski Gjorgji MKD 1318.0 720.5
## 602 115 66 Puzulis Rolands LAT 1336.5 693.5
## 603 116 116 Kyriazis Dimitrios GRE 1309.1 713.6
## 604 117 95 Karamichas Kleanthis GRE 1331.3 657.2
## 605 118 115 Laponder Marcel GBR 1364.4 757.6
## 606 119 82 Lahaye-Goffart Tom BEL 1381.9 702.5
## 607 120 122 Krsmanovic Dejan SRB 1405.9 723.1
## 608 1 34 Fourcade Martin FRA 2341.8 576.3
## 609 2 17 Svendsen Emil Hegle NOR 2345.3 602.7
## 610 3 40 Moravec Ondrej CZE 2373.5 584.8
## 611 4 3 Fourcade Simon FRA 2359.6 598.2
## 612 5 12 Semenov Sergii UKR 2386.2 588.8
## 613 6 69 Bjoerndalen Ole Einar NOR 2386.8 598.1
## 614 7 29 Boe Johannes Thingnes NOR 2402.3 589.8
## 615 8 24 Schempp Simon GER 2422.3 582.2
## 616 9 84 Volkov Alexey RUS 2404.3 621.6
## 617 10 13 Fak Jakov SLO 2444.9 664.9
## 618 11 42 Boehm Daniel GER 2435.1 650.5
## 619 12 76 De Lorenzi Christian ITA 2421.5 602.2
## 620 13 10 Roesch Michael BEL 2449.6 663.0
## 621 14 4 Slesingr Michal CZE 2460.2 637.6
## 622 15 45 Lessing Roland EST 2445.7 594.5
## 623 16 19 Shipulin Anton RUS 2455.8 648.1
## 624 17 31 Liadov Yuryi BLR 2430.9 628.0
## 625 18 22 Lesser Erik GER 2436.5 676.6
## 626 19 2 Anev Krasimir BUL 2471.3 590.6
## 627 20 38 Eder Simon AUT 2492.0 643.7
## 628 21 53 Green Brendan CAN 2492.8 609.4
## 629 22 104 Peiffer Arnd GER 2505.5 718.1
## 630 23 18 Bauer Klemen SLO 2512.5 589.3
## 631 24 65 Bailey Lowell USA 2505.4 598.8
## 632 25 105 Boe Tarjei NOR 2508.1 669.0
## 633 26 75 Krupcik Tomas CZE 2497.0 619.3
## 634 27 56 Iliev Vladimir BUL 2521.1 714.0
## 635 28 47 Landertinger Dominik AUT 2516.8 673.1
## 636 29 126 Grossegger Sven AUT 2533.7 731.7
## 637 30 36 Weger Benjamin SUI 2547.5 666.5
## 638 31 23 Burke Tim USA 2569.6 717.4
## 639 32 43 Maric Janez SLO 2545.1 747.5
## 640 33 101 Nordgren Leif USA 2540.5 662.3
## 641 34 63 Pryma Artem UKR 2548.0 656.8
## 642 35 6 Garanichev Evgeniy RUS 2568.7 713.7
## 643 36 41 Soukup Jaroslav CZE 2568.3 732.8
## 644 37 37 Armgren Ted SWE 2565.7 615.2
## 645 38 92 Lindstroem Fredrik SWE 2578.7 737.9
## 646 39 50 Jackson Lee-Steve GBR 2545.8 690.9
## 647 40 27 Ermits Kalev EST 2573.0 610.8
## 648 41 67 Chepelin Vladimir BLR 2570.8 660.9
## 649 42 54 Kazar Matej SVK 2589.6 662.2
## 650 43 35 Almoukov Alexei AUS 2557.8 659.5
## 651 44 28 Smith Nathan CAN 2623.1 713.9
## 652 45 11 Matiasko Miroslav SVK 2614.8 616.7
## 653 46 60 Szczurek Lukasz POL 2596.8 623.8
## 654 47 125 Doherty Sean USA 2621.5 614.7
## 655 48 8 Rastorgujevs Andrejs LAT 2634.2 645.1
## 656 49 122 Desthieux Simon FRA 2603.1 762.1
## 657 50 7 Hofer Lukas ITA 2650.3 727.1
## 658 51 9 Toivanen Ahti FIN 2620.2 687.9
## 659 52 108 Rusinov Dmytro UKR 2620.3 634.5
## 660 53 94 Braun Maxim KAZ 2619.1 694.5
## 661 54 86 Mesotitsch Daniel AUT 2659.0 723.8
## 662 55 96 Buta George ROU 2643.8 685.1
## 663 56 71 Pantov Anton KAZ 2625.2 642.1
## 664 57 98 Beatrix Jean Guillaume FRA 2602.9 643.4
## 665 58 66 Lapshin Timofei RUS 2645.8 622.5
## 666 59 85 Koiv Kauri EST 2657.1 624.2
## 667 60 103 Tyshchenko Artem UKR 2668.2 758.4
## 668 61 83 Wiestner Serafin SUI 2691.2 739.4
## 669 62 55 Femling Peppe SWE 2674.1 657.9
## 670 63 79 Gow Scott CAN 2678.8 677.3
## 671 64 82 Hiidensalo Olli FIN 2685.7 753.9
## 672 65 124 Gow Christian CAN 2664.5 627.2
## 673 66 99 Strolia Vytautas LTU 2680.1 647.1
## 674 67 51 Puchianu Cornel ROU 2706.6 713.8
## 675 68 110 Arwidson Tobias SWE 2653.4 703.1
## 676 69 20 Kobonoki Tsukasa JPN 2693.8 623.0
## 677 70 33 Sloof Joel NED 2663.5 708.4
## 678 71 14 Plywaczyk Krzysztof POL 2670.5 702.0
## 679 72 25 Faur Remus ROU 2682.8 699.1
## 680 73 32 Kaukenas Tomas LTU 2715.1 612.6
## 681 74 117 Darozhka Aliaksandr BLR 2697.2 682.2
## 682 75 57 Kauppinen Jarkko FIN 2707.1 687.2
## 683 76 127 Podkorytov Vassiliy KAZ 2692.0 785.7
## 684 77 74 Guzik Grzegorz POL 2721.8 753.7
## 685 78 39 Dixon Scott GBR 2700.7 653.6
## 686 79 70 Fillon Maillet Quentin FRA 2721.4 690.5
## 687 80 114 Koivunen Mikael FIN 2665.8 741.7
## 688 81 21 Ren Long CHN 2740.6 770.1
## 689 81 111 Gerdzhikov Dimitar BUL 2734.1 618.0
## 690 83 107 Bormolini Thomas ITA 2736.0 698.7
## 691 84 77 Hodzic Edin SRB 2700.6 683.2
## 692 85 78 Inomata Kazuya JPN 2767.5 689.4
## 693 86 16 Savitskiy Yan KAZ 2732.3 772.9
## 694 87 116 Joller Ivan SUI 2774.9 703.0
## 695 88 87 Otcenas Martin SVK 2789.2 748.5
## 696 89 88 Praulitis Toms LAT 2763.4 662.6
## 697 90 62 Jun Jeuk KOR 2795.4 840.1
## 698 91 64 Windisch Dominik ITA 2821.0 728.1
## 699 92 59 Dolder Mario SUI 2818.0 750.2
## 700 93 72 Dombrovski Karol LTU 2824.6 818.2
## 701 94 30 Gombos Karoly HUN 2791.2 772.7
## 702 95 1 Kim Yonggyu KOR 2827.5 658.1
## 703 96 106 Maeda Ryo JPN 2835.1 733.9
## 704 97 100 Abasheu Dzmitry BLR 2878.7 685.7
## 705 98 97 Langer Thierry BEL 2870.8 716.8
## 706 99 113 Sima Michal SVK 2880.2 828.1
## 707 100 46 Langer Thorsten BEL 2864.5 762.3
## 708 101 93 Oblak Lenart SLO 2912.0 646.5
## 709 102 112 Remmelg Martin EST 2912.2 778.4
## 710 103 44 Slotins Roberts LAT 2956.7 839.2
## 711 104 90 Laponder Marcel GBR 2952.5 722.6
## 712 105 109 Patrijuks Aleksandrs LAT 2955.2 870.5
## 713 106 52 Tachizaki Mikito JPN 3009.1 810.7
## 714 107 26 Ustuntas Ahmet TUR 2964.3 685.5
## 715 108 49 Rastic Damir SRB 3031.6 772.2
## 716 109 89 Zlatev Ivan BUL 3062.1 765.5
## 717 110 115 Lee Suyoung KOR 3080.8 797.8
## 718 111 68 Ustuntas Mehmet TUR 3027.3 786.4
## 719 112 120 Danila Marian Marcel ROU 3119.9 828.5
## 720 113 118 Suslavicius Rokas LTU 3073.6 753.1
## 721 114 119 Kane Kevin GBR 3100.8 791.9
## 722 115 15 Krsmanovic Dejan SRB 3110.4 674.3
## 723 116 61 Angelis Apostolos GRE 3121.1 773.8
## 724 117 80 Stanoeski Toni MKD 3088.0 865.4
## 725 118 91 Kyriazis Dimitrios GRE 3118.6 771.8
## 726 119 95 Kim Jongmin KOR 3176.9 971.2
## 727 120 123 Rastic Ajlan SRB 3195.9 802.6
## 728 1 9 Fak Jakov SLO 1812.5 444.1
## 729 2 8 Moravec Ondrej CZE 1811.8 458.8
## 730 3 7 Boe Tarjei NOR 1810.0 440.0
## 731 4 15 Bjoerndalen Ole Einar NOR 1808.4 462.2
## 732 5 12 Slesingr Michal CZE 1830.6 437.4
## 733 6 1 Boe Johannes Thingnes NOR 1827.0 438.7
## 734 7 5 Shipulin Anton RUS 1827.4 439.4
## 735 8 10 Schempp Simon GER 1822.5 447.4
## 736 9 14 Fourcade Simon FRA 1826.7 480.9
## 737 10 3 Fourcade Martin FRA 1842.8 454.2
## 738 11 11 Garanichev Evgeniy RUS 1835.1 468.3
## 739 12 16 Lindstroem Fredrik SWE 1829.8 458.9
## 740 13 28 Bailey Lowell USA 1833.5 461.9
## 741 14 26 Burke Tim USA 1845.9 470.6
## 742 15 6 Svendsen Emil Hegle NOR 1834.5 460.4
## 743 16 29 Doll Benedikt GER 1851.1 476.6
## 744 17 2 Lesser Erik GER 1845.1 451.0
## 745 18 22 De Lorenzi Christian ITA 1844.2 472.2
## 746 19 13 Eder Simon AUT 1854.8 505.2
## 747 20 20 Liadov Yuryi BLR 1858.9 493.4
## 748 21 23 Green Brendan CAN 1851.9 492.5
## 749 22 25 Peiffer Arnd GER 1875.8 456.3
## 750 23 4 Smith Nathan CAN 1865.9 465.1
## 751 24 30 Landertinger Dominik AUT 1873.2 481.2
## 752 25 18 Iliev Vladimir BUL 1871.3 478.9
## 753 26 21 Roesch Michael BEL 1893.1 494.7
## 754 27 19 Semenov Sergii UKR 1899.2 480.3
## 755 28 24 Soukup Jaroslav CZE 1892.2 473.7
## 756 29 17 Weger Benjamin SUI 1898.7 491.4
## 757 30 27 Lessing Roland EST 1929.3 521.1
## 758 1 5 Lesser Erik GER 1528.3 382.7
## 759 2 18 Shipulin Anton RUS 1560.5 374.8
## 760 3 3 Boe Tarjei NOR 1559.7 382.7
## 761 4 7 Slesingr Michal CZE 1566.5 383.5
## 762 5 19 Bjoerndalen Ole Einar NOR 1580.3 395.3
## 763 6 8 Iliev Vladimir BUL 1578.3 403.1
## 764 7 12 Fourcade Martin FRA 1589.0 393.2
## 765 8 14 Fak Jakov SLO 1605.4 378.0
## 766 9 9 Moravec Ondrej CZE 1606.8 383.6
## 767 10 4 Fourcade Simon FRA 1591.3 423.3
## 768 11 26 Semenov Sergii UKR 1608.9 378.7
## 769 12 46 Eder Simon AUT 1607.5 372.0
## 770 13 2 Smith Nathan CAN 1623.3 398.1
## 771 14 30 Peiffer Arnd GER 1639.7 398.0
## 772 15 39 Landertinger Dominik AUT 1633.9 394.7
## 773 16 21 Green Brendan CAN 1629.0 411.9
## 774 17 16 Liadov Yuryi BLR 1638.3 408.3
## 775 18 11 Soukup Jaroslav CZE 1627.2 380.0
## 776 19 36 Svendsen Emil Hegle NOR 1639.3 396.5
## 777 20 15 Burke Tim USA 1644.8 429.5
## 778 21 25 De Lorenzi Christian ITA 1640.6 398.2
## 779 22 6 Garanichev Evgeniy RUS 1646.6 400.1
## 780 23 22 Roesch Michael BEL 1634.3 434.8
## 781 24 20 Lindstroem Fredrik SWE 1652.0 403.0
## 782 25 42 Rastorgujevs Andrejs LAT 1671.9 378.8
## 783 26 41 Mesotitsch Daniel AUT 1671.2 385.9
## 784 27 31 Lessing Roland EST 1672.7 386.7
## 785 28 10 Doll Benedikt GER 1681.5 442.5
## 786 29 35 L'Abee-Lund Henrik NOR 1679.5 434.4
## 787 30 24 Hofer Lukas ITA 1694.2 409.3
## 788 31 1 Boe Johannes Thingnes NOR 1693.8 430.2
## 789 32 28 Dolder Mario SUI 1694.8 417.6
## 790 33 13 Weger Benjamin SUI 1707.1 403.5
## 791 34 32 Puchianu Cornel ROU 1706.8 407.1
## 792 35 23 Windisch Dominik ITA 1709.4 427.1
## 793 36 17 Bailey Lowell USA 1706.2 419.7
## 794 37 44 Eberhard Julian AUT 1740.0 416.1
## 795 38 43 Chepelin Vladimir BLR 1719.4 406.3
## 796 39 47 Bauer Klemen SLO 1726.0 453.1
## 797 40 27 Lapshin Timofei RUS 1731.0 432.0
## 798 41 40 Beatrix Jean Guillaume FRA 1729.0 468.4
## 799 42 33 Kazar Matej SVK 1755.5 412.0
## 800 43 49 Pidruchnyi Dmytro UKR 1749.8 416.9
## 801 44 48 Zhyrnyi Oleksandr UKR 1753.8 414.8
## 802 45 55 Doherty Sean USA 1754.7 409.5
## 803 46 38 Fillon Maillet Quentin FRA 1769.0 410.5
## 804 47 34 Malyshko Dmitry RUS 1776.5 436.9
## 805 48 56 Dyuzhev Dmitriy BLR 1786.5 427.5
## 806 49 52 Anev Krasimir BUL 1782.7 399.2
## 807 50 29 Wiestner Serafin SUI 1798.5 448.5
## 808 51 45 Nordgren Leif USA 1792.1 434.7
## 809 52 50 Gow Scott CAN 1794.0 399.3
## 810 53 53 Koiv Kauri EST 1792.8 468.0
## 811 54 54 Toivanen Ahti FIN 1794.6 432.4
## 812 55 37 Joller Ivan SUI 1790.8 412.9
## 813 56 60 Kaukenas Tomas LTU 1839.5 448.1
## 814 57 59 Krcmar Michal CZE 1877.7 452.6
## 815 58 51 Kauppinen Jarkko FIN 1900.9 473.9
## 816 59 57 Zlatev Ivan BUL 1938.2 434.9
## 817 60 58 Plywaczyk Krzysztof POL 1948.9 434.1
## 818 1 18 Fak Jakov SLO 1022.9 515.7
## 819 2 29 Schempp Simon GER 1027.2 517.2
## 820 3 2 Beatrix Jean Guillaume FRA 1030.7 517.2
## 821 4 27 Fourcade Martin FRA 1039.0 539.9
## 822 5 10 Slesingr Michal CZE 1042.3 527.3
## 823 6 41 Shipulin Anton RUS 1034.8 525.2
## 824 7 25 Smith Nathan CAN 1039.0 524.8
## 825 8 21 Semenov Sergii UKR 1046.2 531.5
## 826 9 72 Peiffer Arnd GER 1050.6 540.8
## 827 10 28 Boe Johannes Thingnes NOR 1055.1 551.4
## 828 11 34 Boehm Daniel GER 1040.1 527.9
## 829 12 26 Landertinger Dominik AUT 1069.1 551.9
## 830 13 42 Lesser Erik GER 1055.5 550.0
## 831 14 9 Pidruchnyi Dmytro UKR 1058.6 535.2
## 832 15 6 Lindstroem Fredrik SWE 1059.2 522.7
## 833 16 44 Nordgren Leif USA 1060.2 548.6
## 834 17 94 Eliseev Matvey RUS 1051.6 524.5
## 835 18 22 Birnbacher Andreas GER 1054.4 530.2
## 836 19 36 Garanichev Evgeniy RUS 1058.2 542.2
## 837 20 78 Doll Benedikt GER 1075.2 544.6
## 838 21 24 Fillon Maillet Quentin FRA 1063.5 549.8
## 839 22 39 Green Brendan CAN 1076.5 548.8
## 840 23 31 Fourcade Simon FRA 1058.3 550.0
## 841 24 12 Bauer Klemen SLO 1083.2 554.7
## 842 24 43 Soukup Jaroslav CZE 1070.4 558.1
## 843 26 13 Eder Simon AUT 1063.9 546.3
## 844 27 51 Bjoentegaard Erlend NOR 1085.6 547.4
## 845 28 38 Dolder Mario SUI 1079.2 533.3
## 846 29 17 Weger Benjamin SUI 1071.9 550.2
## 847 30 57 Ermits Kalev EST 1059.6 538.1
## 848 31 55 Dyuzhev Dmitriy BLR 1066.3 540.6
## 849 32 56 Krcmar Michal CZE 1084.8 543.9
## 850 33 76 Armgren Ted SWE 1081.6 549.2
## 851 34 71 Desthieux Simon FRA 1081.9 563.8
## 852 35 8 Bjoerndalen Ole Einar NOR 1093.3 563.0
## 853 36 33 Iliev Vladimir BUL 1102.5 547.4
## 854 37 35 Grossegger Sven AUT 1092.7 557.7
## 855 38 4 Burke Tim USA 1107.8 520.4
## 856 39 3 Roesch Michael BEL 1090.2 560.9
## 857 40 19 Tsvetkov Maxim RUS 1096.3 576.2
## 858 41 5 Kazar Matej SVK 1099.1 562.4
## 859 42 1 Moravec Ondrej CZE 1099.0 544.7
## 860 43 23 Svendsen Emil Hegle NOR 1115.5 558.1
## 861 44 83 L'Abee-Lund Henrik NOR 1100.3 580.3
## 862 45 79 Guigonnat Antonin FRA 1100.2 557.9
## 863 46 81 Kaukenas Tomas LTU 1097.3 570.3
## 864 47 37 Liadov Yuryi BLR 1111.1 585.3
## 865 48 14 Anev Krasimir BUL 1107.0 578.1
## 866 49 30 Pryma Artem UKR 1121.0 600.6
## 867 50 16 Chepelin Vladimir BLR 1122.8 584.1
## 868 51 50 Pinter Friedrich AUT 1121.9 577.9
## 869 52 60 Szczurek Lukasz POL 1109.9 553.3
## 870 53 67 Slepov Alexey RUS 1135.2 574.7
## 871 54 86 Davies Macx CAN 1118.1 558.4
## 872 55 80 Reiter Michael AUT 1103.0 578.0
## 873 56 15 Eberhard Julian AUT 1156.9 542.5
## 874 57 47 Doherty Sean USA 1141.8 536.4
## 875 58 7 De Lorenzi Christian ITA 1130.0 602.5
## 876 59 45 Boe Tarjei NOR 1141.7 579.8
## 877 60 69 Tyshchenko Artem UKR 1139.6 585.4
## 878 61 48 Guzik Grzegorz POL 1128.8 593.7
## 879 62 62 Dombrovski Karol LTU 1115.2 583.9
## 880 63 68 Gow Scott CAN 1141.4 552.7
## 881 64 20 Puchianu Cornel ROU 1123.9 556.2
## 882 65 64 Maric Janez SLO 1145.0 575.1
## 883 66 70 Trsan Rok SLO 1141.3 582.6
## 884 67 93 Yaliotnau Raman BLR 1134.3 565.4
## 885 68 82 Remmelg Martin EST 1116.6 576.5
## 886 69 58 Matiasko Miroslav SVK 1136.8 575.5
## 887 70 11 Toivanen Ahti FIN 1155.7 588.7
## 888 71 91 Krupcik Tomas CZE 1153.2 624.3
## 889 72 59 Gerdzhikov Dimitar BUL 1146.7 578.0
## 890 73 63 Martinelli Christian ITA 1144.3 613.7
## 891 74 90 Raatikainen Antti FIN 1138.9 581.7
## 892 75 52 Babikov Anton RUS 1162.3 580.2
## 893 76 73 Koiv Kauri EST 1161.2 593.2
## 894 77 85 Hasilla Tomas SVK 1165.2 615.6
## 895 78 49 Danila Marian Marcel ROU 1153.1 599.0
## 896 79 87 Siemakov Volodymyr UKR 1175.7 549.0
## 897 80 32 Arwidson Tobias SWE 1155.9 589.6
## 898 81 92 Joller Ivan SUI 1186.0 620.3
## 899 82 66 Tachizaki Mikito JPN 1205.7 608.8
## 900 83 75 Gronman Tuomas FIN 1194.2 625.9
## 901 84 54 Rastic Damir SRB 1215.2 650.0
## 902 85 40 Otcenas Martin SVK 1210.4 616.6
## 903 86 74 Wiestner Serafin SUI 1242.3 624.2
## 904 87 53 Sloof Joel NED 1238.5 627.8
## 905 88 84 Femling Peppe SWE 1223.9 590.9
## 906 89 61 Kane Kevin GBR 1236.3 642.6
## 907 90 89 Dixon Scott GBR 1259.7 680.3
## 908 91 46 Praulitis Toms LAT 1226.9 647.4
## 909 92 96 Krsmanovic Dejan SRB 1269.9 633.9
## 910 93 88 Lusa Daumants LAT 1260.4 660.7
## 911 94 65 Patrijuks Aleksandrs LAT 1317.1 660.2
## 912 1 1 Fak Jakov SLO 1861.2 480.8
## 913 2 2 Schempp Simon GER 1862.6 455.8
## 914 3 4 Fourcade Martin FRA 1861.7 475.3
## 915 4 8 Semenov Sergii UKR 1878.7 455.8
## 916 5 7 Smith Nathan CAN 1883.9 459.2
## 917 6 19 Garanichev Evgeniy RUS 1905.9 480.2
## 918 7 18 Birnbacher Andreas GER 1909.9 466.6
## 919 8 13 Lesser Erik GER 1904.5 484.2
## 920 9 9 Peiffer Arnd GER 1921.5 469.6
## 921 10 15 Lindstroem Fredrik SWE 1923.1 470.1
## 922 11 5 Slesingr Michal CZE 1918.9 491.5
## 923 12 10 Boe Johannes Thingnes NOR 1935.0 491.3
## 924 13 23 Fourcade Simon FRA 1947.6 495.5
## 925 14 6 Shipulin Anton RUS 1961.4 467.4
## 926 15 34 Desthieux Simon FRA 2002.6 516.7
## 927 16 3 Beatrix Jean Guillaume FRA 1981.0 505.7
## 928 17 11 Boehm Daniel GER 1985.8 506.8
## 929 18 37 Grossegger Sven AUT 1986.4 498.5
## 930 19 21 Fillon Maillet Quentin FRA 1995.5 496.1
## 931 20 16 Nordgren Leif USA 1996.1 500.7
## 932 21 20 Doll Benedikt GER 2016.1 492.9
## 933 22 48 Anev Krasimir BUL 2003.1 499.7
## 934 23 43 Svendsen Emil Hegle NOR 2001.9 493.0
## 935 24 36 Iliev Vladimir BUL 2021.7 499.1
## 936 25 45 Guigonnat Antonin FRA 2032.3 501.3
## 937 26 29 Weger Benjamin SUI 2038.9 501.8
## 938 27 17 Eliseev Matvey RUS 2012.4 551.3
## 939 28 40 Tsvetkov Maxim RUS 2033.1 489.8
## 940 29 28 Dolder Mario SUI 2043.0 485.3
## 941 30 22 Green Brendan CAN 2023.0 526.3
## 942 31 25 Soukup Jaroslav CZE 2040.0 481.6
## 943 32 26 Eder Simon AUT 2037.2 512.7
## 944 33 32 Krcmar Michal CZE 2047.1 511.0
## 945 34 12 Landertinger Dominik AUT 2051.7 560.2
## 946 35 35 Bjoerndalen Ole Einar NOR 2054.3 468.4
## 947 36 53 Slepov Alexey RUS 2062.6 486.0
## 948 37 38 Burke Tim USA 2070.0 473.7
## 949 38 27 Bjoentegaard Erlend NOR 2071.8 500.2
## 950 39 42 Moravec Ondrej CZE 2082.7 500.3
## 951 40 44 L'Abee-Lund Henrik NOR 2086.7 493.8
## 952 41 56 Eberhard Julian AUT 2106.5 540.7
## 953 42 46 Kaukenas Tomas LTU 2114.6 555.8
## 954 43 49 Pryma Artem UKR 2135.2 497.1
## 955 44 33 Armgren Ted SWE 2126.8 478.7
## 956 45 57 Doherty Sean USA 2133.7 500.8
## 957 46 24 Bauer Klemen SLO 2119.4 526.5
## 958 47 39 Roesch Michael BEL 2090.2 555.3
## 959 48 41 Kazar Matej SVK 2129.3 544.6
## 960 49 30 Ermits Kalev EST 2158.5 494.5
## 961 50 59 Boe Tarjei NOR 2146.7 532.2
## 962 51 51 Pinter Friedrich AUT 2165.6 538.8
## 963 52 31 Dyuzhev Dmitriy BLR 2181.0 522.5
## 964 53 52 Szczurek Lukasz POL 2200.4 522.1
## 965 54 54 Davies Macx CAN 2308.9 553.2
## 966 1 27 Fourcade Martin FRA 1289.8 806.9
## 967 2 8 Bjoerndalen Ole Einar NOR 1281.9 830.8
## 968 3 48 Lapshin Timofei RUS 1292.2 844.1
## 969 4 21 Boe Johannes Thingnes NOR 1303.4 860.2
## 970 5 1 Weger Benjamin SUI 1300.6 810.2
## 971 6 19 Rastorgujevs Andrejs LAT 1318.8 827.3
## 972 7 37 Lessing Roland EST 1311.3 830.3
## 973 8 88 Doll Benedikt GER 1318.5 837.1
## 974 9 4 Anev Krasimir BUL 1318.5 815.2
## 975 10 23 Tyshchenko Artem UKR 1320.8 867.2
## 976 11 36 Liadov Yuryi BLR 1321.5 823.5
## 977 12 20 Eder Simon AUT 1322.3 830.5
## 978 13 26 Slesingr Michal CZE 1331.0 857.4
## 979 14 39 Iliev Vladimir BUL 1323.6 852.7
## 980 15 9 Bauer Klemen SLO 1332.9 867.6
## 981 16 3 Fak Jakov SLO 1333.4 818.3
## 982 16 15 Fillon Maillet Quentin FRA 1330.9 849.0
## 983 18 17 Chepelin Vladimir BLR 1329.6 876.8
## 984 19 33 Fourcade Simon FRA 1321.4 870.2
## 985 20 25 Birnbacher Andreas GER 1335.7 834.8
## 986 21 31 Bormolini Thomas ITA 1327.7 841.2
## 987 22 56 Bjoentegaard Erlend NOR 1355.6 882.3
## 988 23 35 Malyshko Dmitry RUS 1345.9 812.8
## 989 24 16 Mesotitsch Daniel AUT 1341.9 882.6
## 990 25 28 Moravec Ondrej CZE 1346.6 850.2
## 991 26 44 Lesser Erik GER 1335.9 880.1
## 992 27 40 Os Alexander NOR 1357.7 879.6
## 993 28 92 Wiestner Serafin SUI 1331.5 854.0
## 994 29 59 Eriksson Christofer SWE 1354.1 868.3
## 995 30 6 Schempp Simon GER 1353.4 863.7
## 996 31 32 Soukup Jaroslav CZE 1348.3 877.4
## 997 32 65 Roesch Michael BEL 1348.0 903.8
## 998 33 12 Windisch Dominik ITA 1355.9 876.7
## 999 34 10 Bailey Lowell USA 1361.2 906.0
## 1000 35 11 Smith Nathan CAN 1369.4 902.1
## 1001 36 13 Boehm Daniel GER 1351.1 833.8
## 1002 37 2 Lindstroem Fredrik SWE 1366.4 850.8
## 1003 38 24 Kazar Matej SVK 1369.5 886.4
## 1004 39 95 Matiasko Miroslav SVK 1378.6 907.6
## 1005 40 80 Volkov Alexey RUS 1370.9 890.0
## 1006 41 82 Pinter Friedrich AUT 1367.8 900.5
## 1007 42 45 Burke Tim USA 1384.3 898.5
## 1008 43 29 Shipulin Anton RUS 1393.3 883.9
## 1009 43 78 Koiv Kauri EST 1377.3 904.5
## 1010 45 38 Dolder Mario SUI 1386.2 894.0
## 1011 46 22 Savitskiy Yan KAZ 1372.3 867.9
## 1012 47 41 Eberhard Tobias AUT 1372.5 892.4
## 1013 48 47 Gow Christian CAN 1401.4 903.9
## 1014 49 73 Bedard Marc Andre CAN 1384.6 895.4
## 1015 50 34 Grossegger Sven AUT 1399.6 863.0
## 1016 51 53 Kauppinen Jarkko FIN 1382.0 925.9
## 1017 52 77 Dombrovski Karol LTU 1370.2 891.1
## 1018 53 43 Otcenas Martin SVK 1413.2 967.5
## 1019 54 90 Davies Macx CAN 1407.5 899.9
## 1020 55 83 Krcmar Michal CZE 1403.2 894.8
## 1021 56 30 Beatrix Jean Guillaume FRA 1383.2 895.1
## 1022 57 49 Hasilla Tomas SVK 1395.1 877.8
## 1023 57 51 Desthieux Simon FRA 1402.3 909.7
## 1024 59 76 Yaliotnau Raman BLR 1421.1 889.4
## 1025 60 42 Arwidson Tobias SWE 1397.0 864.5
## 1026 61 5 Garanichev Evgeniy RUS 1431.2 922.2
## 1027 62 79 Gronman Tuomas FIN 1403.7 874.7
## 1028 63 84 Armgren Ted SWE 1410.3 907.9
## 1029 64 62 Peiffer Arnd GER 1403.0 938.3
## 1030 65 46 De Lorenzi Christian ITA 1433.0 862.7
## 1031 66 91 Zhyrnyi Oleksandr UKR 1431.2 900.2
## 1032 67 93 Christiansen Vetle Sjaastad NOR 1416.5 867.6
## 1033 68 89 Kryuko Viktar BLR 1436.4 906.5
## 1034 69 14 Puchianu Cornel ROU 1447.6 934.1
## 1035 70 63 Tobreluts Indrek EST 1453.2 947.6
## 1036 71 18 Toivanen Ahti FIN 1440.7 953.8
## 1037 72 60 Kilchytskyy Vitaliy UKR 1448.9 934.9
## 1038 73 68 Plywaczyk Krzysztof POL 1423.6 943.3
## 1039 74 50 Joller Ivan SUI 1432.6 935.0
## 1040 75 64 Danila Marian Marcel ROU 1436.4 905.0
## 1041 75 71 Maric Janez SLO 1452.7 945.0
## 1042 77 69 Pantov Anton KAZ 1441.4 899.4
## 1043 78 98 Trifonov Alexandr KAZ 1439.1 926.5
## 1044 79 54 Siemakov Volodymyr UKR 1446.7 919.3
## 1045 80 72 Eberhard Julian AUT 1477.0 876.8
## 1046 81 7 Tsvetkov Maxim RUS 1453.8 881.5
## 1047 82 96 Demetz Maikol ITA 1446.1 943.6
## 1048 83 97 Jouty Baptiste FRA 1462.1 960.6
## 1049 84 52 Femling Peppe SWE 1453.5 1004.3
## 1050 85 85 Slotins Roberts LAT 1475.6 952.3
## 1051 86 70 Zlatev Ivan BUL 1478.2 994.1
## 1052 87 99 Strolia Vytautas LTU 1492.1 967.0
## 1053 88 61 Krupcik Tomas CZE 1502.2 1007.1
## 1054 89 57 Inomata Kazuya JPN 1512.8 974.5
## 1055 90 58 Kane Kevin GBR 1507.8 973.0
## 1056 91 74 Sloof Joel NED 1497.2 944.5
## 1057 92 94 Laponder Marcel GBR 1510.3 964.7
## 1058 93 75 Trsan Rok SLO 1542.2 905.6
## 1059 94 55 Rastic Damir SRB 1573.9 1005.8
## 1060 95 66 Puzulis Rolands LAT 1554.0 1024.1
## 1061 96 81 Oblak Lenart SLO 1551.9 1066.3
## 1062 97 86 Guzik Grzegorz POL 1572.7 921.7
## 1063 98 67 Almoukov Alexei AUS 1579.9 989.5
## 1064 99 87 Krsmanovic Dejan SRB 1679.8 1057.7
## 1065 1 1 Fourcade Martin FRA 2311.4 495.6
## 1066 2 2 Shipulin Anton RUS 2338.2 466.9
## 1067 3 21 Malyshko Dmitry RUS 2350.8 507.1
## 1068 4 16 Anev Krasimir BUL 2353.3 483.1
## 1069 5 14 Slesingr Michal CZE 2366.9 505.0
## 1070 6 26 Rastorgujevs Andrejs LAT 2371.1 484.6
## 1071 7 4 Fak Jakov SLO 2367.4 496.8
## 1072 8 28 Doll Benedikt GER 2370.6 512.4
## 1073 9 18 Lapshin Timofei RUS 2377.4 503.6
## 1074 10 5 Schempp Simon GER 2377.9 504.8
## 1075 11 9 Eder Simon AUT 2386.6 483.4
## 1076 12 15 Lesser Erik GER 2384.0 537.0
## 1077 13 6 Moravec Ondrej CZE 2414.2 534.1
## 1078 14 7 Boe Johannes Thingnes NOR 2431.4 499.6
## 1079 15 27 Lessing Roland EST 2416.1 479.0
## 1080 16 25 Fourcade Simon FRA 2433.6 539.5
## 1081 17 19 Bjoerndalen Ole Einar NOR 2438.3 542.3
## 1082 18 8 Birnbacher Andreas GER 2430.8 502.2
## 1083 19 23 Iliev Vladimir BUL 2435.8 482.9
## 1084 20 11 Lindstroem Fredrik SWE 2437.4 503.5
## 1085 20 24 Smith Nathan CAN 2440.9 537.0
## 1086 22 17 Fillon Maillet Quentin FRA 2430.0 499.8
## 1087 23 10 Garanichev Evgeniy RUS 2479.7 555.9
## 1088 24 22 Tsvetkov Maxim RUS 2473.0 497.2
## 1089 25 13 Weger Benjamin SUI 2484.3 555.3
## 1090 26 29 Tyshchenko Artem UKR 2471.6 490.6
## 1091 27 3 Svendsen Emil Hegle NOR 2459.6 529.9
## 1092 28 30 Liadov Yuryi BLR 2481.5 514.4
## 1093 29 20 Bailey Lowell USA 2579.0 556.0
## 1094 1 17 Fourcade Martin FRA 1039.2 515.6
## 1095 2 20 Moravec Ondrej CZE 1065.5 528.8
## 1096 3 27 Fak Jakov SLO 1066.6 530.4
## 1097 4 10 Slesingr Michal CZE 1074.8 532.9
## 1098 5 21 Garanichev Evgeniy RUS 1066.4 527.8
## 1099 6 18 Shipulin Anton RUS 1081.8 529.8
## 1100 7 25 Svendsen Emil Hegle NOR 1082.8 545.3
## 1101 8 19 Bjoerndalen Ole Einar NOR 1092.1 540.6
## 1102 9 3 Smith Nathan CAN 1086.7 537.2
## 1103 10 32 Eder Simon AUT 1094.9 558.7
## 1104 11 31 Schempp Simon GER 1095.4 550.8
## 1105 12 26 Lesser Erik GER 1096.0 538.0
## 1106 13 6 Rastorgujevs Andrejs LAT 1094.8 532.7
## 1107 14 37 Boehm Daniel GER 1088.0 540.7
## 1108 15 39 Boe Tarjei NOR 1110.8 573.6
## 1109 16 101 Os Alexander NOR 1095.3 532.2
## 1110 17 4 Burke Tim USA 1111.2 548.7
## 1111 18 5 Pryma Artem UKR 1105.3 534.8
## 1112 19 44 Beatrix Jean Guillaume FRA 1118.3 577.1
## 1113 20 23 Malyshko Dmitry RUS 1105.8 559.5
## 1114 21 71 Birnbacher Andreas GER 1109.6 540.9
## 1115 22 41 Bailey Lowell USA 1111.4 535.3
## 1116 23 9 Fourcade Simon FRA 1113.5 575.4
## 1117 24 7 Kazar Matej SVK 1113.2 564.9
## 1118 25 43 Bauer Klemen SLO 1120.2 559.6
## 1119 26 15 Peiffer Arnd GER 1116.6 539.5
## 1120 27 8 Semenov Sergii UKR 1124.0 553.4
## 1121 28 38 Komatz David AUT 1110.3 562.3
## 1122 29 22 Landertinger Dominik AUT 1124.0 557.6
## 1123 30 84 Tsvetkov Maxim RUS 1121.6 564.2
## 1124 31 68 Mesotitsch Daniel AUT 1129.8 543.1
## 1125 32 61 Krupcik Tomas CZE 1119.2 556.5
## 1126 33 40 Hofer Lukas ITA 1120.3 562.0
## 1127 34 48 Puchianu Cornel ROU 1139.6 570.0
## 1128 35 11 Lindstroem Fredrik SWE 1131.1 545.1
## 1129 36 60 Liadov Yuryi BLR 1120.9 570.8
## 1130 37 29 Anev Krasimir BUL 1125.3 544.2
## 1131 38 1 Eberhard Tobias AUT 1124.6 575.1
## 1132 39 2 Boe Johannes Thingnes NOR 1148.5 576.9
## 1133 40 14 Savitskiy Yan KAZ 1142.9 594.6
## 1134 41 45 Lapshin Timofei RUS 1140.9 583.4
## 1135 42 13 Fillon Maillet Quentin FRA 1154.3 583.9
## 1136 43 35 Hasilla Tomas SVK 1138.3 551.1
## 1137 44 47 Christiansen Vetle Sjaastad NOR 1132.3 557.8
## 1138 45 64 Toivanen Ahti FIN 1144.6 569.9
## 1139 46 59 Femling Peppe SWE 1135.9 582.7
## 1140 47 87 Cuenot Gaspard SUI 1148.1 577.0
## 1141 48 83 Krcmar Michal CZE 1153.0 576.4
## 1142 49 98 Graf Florian GER 1140.6 585.2
## 1143 50 79 Nordgren Leif USA 1143.7 578.6
## 1144 51 34 Arwidson Tobias SWE 1132.8 555.0
## 1145 52 28 Chepelin Vladimir BLR 1173.0 633.6
## 1146 53 12 Windisch Dominik ITA 1164.9 599.1
## 1147 54 81 Zhyrnyi Oleksandr UKR 1150.2 566.2
## 1148 55 33 Soukup Jaroslav CZE 1169.0 593.6
## 1149 56 46 Iliev Vladimir BUL 1169.3 618.7
## 1150 57 75 Bormolini Thomas ITA 1152.0 575.0
## 1151 58 94 Grossegger Sven AUT 1151.4 584.9
## 1152 59 52 Desthieux Simon FRA 1171.9 600.3
## 1153 60 99 Bedard Marc Andre CAN 1161.9 591.4
## 1154 61 62 Almoukov Alexei AUS 1145.5 576.2
## 1155 62 36 Green Brendan CAN 1180.3 593.7
## 1156 63 90 Eriksson Christofer SWE 1166.4 587.3
## 1157 64 30 Koiv Kauri EST 1156.4 600.7
## 1158 65 76 Armgren Ted SWE 1170.6 580.4
## 1159 66 42 Pidruchnyi Dmytro UKR 1174.9 620.4
## 1160 67 57 Finello Jeremy SUI 1174.3 596.1
## 1161 68 69 Dombrovski Karol LTU 1173.5 604.6
## 1162 69 56 Sloof Joel NED 1167.9 592.5
## 1163 69 100 Hiidensalo Olli FIN 1192.4 586.4
## 1164 71 78 Joller Ivan SUI 1196.5 592.3
## 1165 72 65 Otcenas Martin SVK 1197.7 617.0
## 1166 73 95 Braun Maxim KAZ 1196.4 613.7
## 1167 74 63 Remmelg Martin EST 1179.4 579.9
## 1168 75 70 Roesch Michael BEL 1173.5 582.0
## 1169 76 89 Ermits Kalev EST 1196.2 558.8
## 1170 77 72 Szczurek Lukasz POL 1183.6 575.0
## 1171 78 50 Trifonov Alexandr KAZ 1177.5 607.3
## 1172 79 54 Kobonoki Tsukasa JPN 1204.5 634.3
## 1173 80 24 Weger Benjamin SUI 1219.1 608.4
## 1174 81 102 De Lorenzi Christian ITA 1199.3 616.4
## 1175 82 96 Budzilovich Dzmitry BLR 1201.1 604.7
## 1176 83 51 Hakala Matti FIN 1196.8 630.8
## 1177 84 86 Danila Marian Marcel ROU 1206.2 616.8
## 1178 85 85 Plywaczyk Krzysztof POL 1205.2 630.3
## 1179 86 67 Darozhka Aliaksandr BLR 1223.5 635.7
## 1180 87 66 Oblak Lenart SLO 1217.3 616.5
## 1181 88 16 Kaukenas Tomas LTU 1232.1 580.7
## 1182 89 93 Currier Russell USA 1254.2 581.7
## 1183 90 49 Puzulis Rolands LAT 1246.6 638.6
## 1184 91 55 Rastic Damir SRB 1241.3 651.9
## 1185 92 97 Patrijuks Aleksandrs LAT 1249.1 597.9
## 1186 93 73 Lobo Escolar Victor ESP 1255.6 624.4
## 1187 94 77 Jackson Lee-Steve GBR 1267.2 626.4
## 1188 95 88 Hodzic Edin SRB 1270.8 613.3
## 1189 96 82 Sima Michal SVK 1278.1 623.5
## 1190 97 80 Zlatev Ivan BUL 1310.8 652.5
## 1191 98 92 Laponder Marcel GBR 1322.2 673.6
## 1192 99 58 Tyshchenko Artem UKR 1385.0 654.9
## 1193 1 4 Svendsen Emil Hegle NOR 2607.4 675.6
## 1194 2 7 Semenov Sergii UKR 2679.9 667.9
## 1195 3 16 Slesingr Michal CZE 2739.5 686.7
## 1196 4 41 Lesser Erik GER 2738.5 692.7
## 1197 5 12 Lindstroem Fredrik SWE 2751.9 748.6
## 1198 6 21 Bjoerndalen Ole Einar NOR 2756.4 648.2
## 1199 7 18 Landertinger Dominik AUT 2787.2 674.5
## 1200 8 6 Boe Johannes Thingnes NOR 2791.8 716.9
## 1201 9 45 Fourcade Simon FRA 2753.8 693.7
## 1202 10 98 Fillon Maillet Quentin FRA 2783.9 766.2
## 1203 11 39 Burke Tim USA 2819.2 674.2
## 1204 12 17 Moravec Ondrej CZE 2766.8 746.9
## 1205 13 44 Windisch Dominik ITA 2797.1 754.5
## 1206 14 28 Anev Krasimir BUL 2814.8 817.4
## 1207 15 20 Garanichev Evgeniy RUS 2850.5 782.0
## 1208 16 34 Peiffer Arnd GER 2841.0 819.0
## 1209 17 3 Weger Benjamin SUI 2865.6 735.2
## 1210 18 51 Tsvetkov Maxim RUS 2858.0 770.6
## 1211 19 97 Bormolini Thomas ITA 2862.9 771.0
## 1212 20 15 Bailey Lowell USA 2880.7 822.6
## 1213 21 38 Arwidson Tobias SWE 2834.5 704.2
## 1214 22 42 Bauer Klemen SLO 2888.7 810.1
## 1215 23 26 Boehm Daniel GER 2880.9 795.8
## 1216 24 14 Fak Jakov SLO 2908.3 801.3
## 1217 25 19 Schempp Simon GER 2881.4 703.3
## 1218 26 87 Finello Jeremy SUI 2894.8 757.0
## 1219 27 27 Beatrix Jean Guillaume FRA 2906.9 730.9
## 1220 28 69 Puchianu Cornel ROU 2893.9 817.3
## 1221 29 33 Boe Tarjei NOR 2912.0 804.3
## 1222 30 37 Iliev Vladimir BUL 2926.2 796.6
## 1223 31 35 Eberhard Tobias AUT 2943.4 800.2
## 1224 32 78 Kobonoki Tsukasa JPN 2891.9 791.1
## 1225 33 36 Soukup Jaroslav CZE 2935.3 894.9
## 1226 34 73 Lessing Roland EST 2933.5 710.7
## 1227 35 95 Birnbacher Andreas GER 2968.8 810.5
## 1228 36 88 Komatz David AUT 2978.5 760.3
## 1229 37 76 Tyshchenko Artem UKR 2961.5 791.5
## 1230 38 61 Toivanen Ahti FIN 2974.6 826.2
## 1231 39 23 Desthieux Simon FRA 2978.8 871.8
## 1232 40 43 Hasilla Tomas SVK 2961.5 738.2
## 1233 41 32 Koiv Kauri EST 2983.2 773.0
## 1234 42 40 Lapshin Timofei RUS 3018.5 811.5
## 1235 43 24 Mesotitsch Daniel AUT 3010.2 792.6
## 1236 44 22 Kazar Matej SVK 2993.9 772.6
## 1237 45 5 Savitskiy Yan KAZ 3007.3 751.7
## 1238 46 96 Krupcik Tomas CZE 2979.9 838.0
## 1239 47 13 Chepelin Vladimir BLR 2998.4 789.1
## 1240 48 25 Hofer Lukas ITA 2965.8 892.4
## 1241 49 30 Green Brendan CAN 3017.4 725.6
## 1242 50 48 Roesch Michael BEL 2993.5 832.5
## 1243 51 63 De Lorenzi Christian ITA 3020.0 766.5
## 1244 52 70 Trifonov Alexandr KAZ 3009.9 790.7
## 1245 53 101 Christiansen Vetle Sjaastad NOR 3027.3 896.8
## 1246 54 8 Smith Nathan CAN 3075.7 792.4
## 1247 55 92 Stegmayr Gabriel SWE 3017.4 751.8
## 1248 56 64 Armgren Ted SWE 3059.5 754.5
## 1249 57 75 Rastic Damir SRB 3045.0 775.8
## 1250 58 29 Malyshko Dmitry RUS 3055.9 777.2
## 1251 59 1 Shipulin Anton RUS 3114.5 724.1
## 1252 60 85 Kilchytskyy Vitaliy UKR 3076.6 713.9
## 1253 61 86 Bedard Marc Andre CAN 3083.4 848.6
## 1254 62 71 Boeuf Alexis FRA 3031.5 860.7
## 1255 63 62 Almoukov Alexei AUS 3081.8 783.0
## 1256 64 66 Grossegger Sven AUT 3119.5 817.9
## 1257 65 74 Puzulis Rolands LAT 3084.1 809.7
## 1258 66 67 Zlatev Ivan BUL 3130.1 731.7
## 1259 67 80 Hakala Matti FIN 3114.4 770.5
## 1260 68 31 Pidruchnyi Dmytro UKR 3101.2 786.9
## 1261 69 11 Eder Simon AUT 3142.6 761.2
## 1262 70 72 Szczurek Lukasz POL 3123.5 725.2
## 1263 71 49 Nordgren Leif USA 3091.9 795.3
## 1264 72 46 Liadov Yuryi BLR 3146.6 905.8
## 1265 73 50 Perras Scott CAN 3123.9 780.8
## 1266 74 94 Currier Russell USA 3171.5 710.8
## 1267 75 56 Graf Florian GER 3174.4 859.1
## 1268 76 81 Tcherezov Ivan RUS 3142.7 724.8
## 1269 77 52 Dombrovski Karol LTU 3163.4 772.1
## 1270 78 93 Plywaczyk Krzysztof POL 3154.2 801.2
## 1271 79 58 Joller Ivan SUI 3182.6 888.4
## 1272 80 79 Krcmar Michal CZE 3174.9 890.5
## 1273 81 10 Fourcade Martin FRA 3099.2 842.6
## 1274 82 9 Kaukenas Tomas LTU 3192.2 757.1
## 1275 83 54 Eriksson Christofer SWE 3226.5 769.4
## 1276 84 59 Birkeland Lars Helge NOR 3257.0 851.9
## 1277 85 53 Otcenas Martin SVK 3235.3 850.1
## 1278 86 84 Matiasko Miroslav SVK 3208.6 853.2
## 1279 87 83 Braun Maxim KAZ 3215.3 888.4
## 1280 88 100 Hodzic Edin SRB 3213.8 835.9
## 1281 89 89 Danila Marian Marcel ROU 3280.0 924.2
## 1282 90 60 Cuenot Gaspard SUI 3299.3 901.0
## 1283 91 57 Darozhka Aliaksandr BLR 3265.4 793.3
## 1284 92 77 Sloof Joel NED 3249.2 882.2
## 1285 93 90 Ermits Kalev EST 3363.7 888.0
## 1286 94 99 Budzilovich Dzmitry BLR 3328.8 812.0
## 1287 95 47 Jackson Lee-Steve GBR 3378.6 784.9
## 1288 96 91 Patrijuks Aleksandrs LAT 3340.5 874.8
## 1289 97 68 Oblak Lenart SLO 3381.2 944.5
## 1290 98 102 Laponder Marcel GBR 3454.9 829.9
## 1291 99 65 Lobo Escolar Victor ESP 3559.4 831.1
## 1292 1 1 Fourcade Martin FRA 1698.4 419.2
## 1293 2 6 Shipulin Anton RUS 1708.8 403.6
## 1294 3 7 Svendsen Emil Hegle NOR 1723.1 424.4
## 1295 4 3 Fak Jakov SLO 1729.0 458.4
## 1296 5 30 Landertinger Dominik AUT 1736.1 423.7
## 1297 6 11 Schempp Simon GER 1735.5 428.9
## 1298 7 22 Birnbacher Andreas GER 1735.1 425.9
## 1299 8 16 Os Alexander NOR 1734.7 427.5
## 1300 9 20 Beatrix Jean Guillaume FRA 1763.0 435.2
## 1301 10 8 Bjoerndalen Ole Einar NOR 1762.5 432.2
## 1302 11 5 Garanichev Evgeniy RUS 1772.7 416.9
## 1303 12 26 Bauer Klemen SLO 1772.1 436.3
## 1304 13 36 Lindstroem Fredrik SWE 1778.5 452.9
## 1305 14 15 Boe Tarjei NOR 1800.5 453.4
## 1306 15 45 Christiansen Vetle Sjaastad NOR 1785.7 427.8
## 1307 16 9 Smith Nathan CAN 1779.0 492.5
## 1308 17 23 Bailey Lowell USA 1799.5 439.7
## 1309 18 27 Peiffer Arnd GER 1803.7 466.1
## 1310 19 4 Slesingr Michal CZE 1807.0 477.0
## 1311 20 2 Moravec Ondrej CZE 1807.7 468.3
## 1312 21 33 Krupcik Tomas CZE 1820.5 420.3
## 1313 22 38 Anev Krasimir BUL 1821.1 427.0
## 1314 23 12 Lesser Erik GER 1833.4 474.2
## 1315 24 10 Eder Simon AUT 1836.6 442.7
## 1316 25 32 Mesotitsch Daniel AUT 1824.7 450.7
## 1317 26 43 Fillon Maillet Quentin FRA 1831.1 436.8
## 1318 27 41 Savitskiy Yan KAZ 1830.4 417.1
## 1319 28 13 Rastorgujevs Andrejs LAT 1851.5 460.0
## 1320 29 31 Tsvetkov Maxim RUS 1848.4 453.8
## 1321 30 40 Boe Johannes Thingnes NOR 1857.5 486.2
## 1322 31 42 Lapshin Timofei RUS 1854.9 443.5
## 1323 32 34 Hofer Lukas ITA 1847.5 480.0
## 1324 33 14 Boehm Daniel GER 1854.5 487.5
## 1325 34 24 Fourcade Simon FRA 1871.4 477.8
## 1326 35 17 Burke Tim USA 1872.3 499.9
## 1327 36 28 Semenov Sergii UKR 1872.0 500.2
## 1328 37 57 Iliev Vladimir BUL 1882.7 445.7
## 1329 38 19 Pryma Artem UKR 1890.8 418.3
## 1330 39 37 Liadov Yuryi BLR 1887.0 437.9
## 1331 40 29 Komatz David AUT 1889.8 428.2
## 1332 41 50 Graf Florian GER 1919.0 475.6
## 1333 42 49 Krcmar Michal CZE 1921.9 457.0
## 1334 43 21 Malyshko Dmitry RUS 1914.0 478.3
## 1335 44 35 Puchianu Cornel ROU 1941.6 468.8
## 1336 45 51 Nordgren Leif USA 1940.1 480.6
## 1337 46 53 Chepelin Vladimir BLR 1964.7 474.2
## 1338 47 59 Grossegger Sven AUT 1953.7 483.7
## 1339 48 55 Zhyrnyi Oleksandr UKR 1961.6 461.8
## 1340 49 52 Arwidson Tobias SWE 1949.4 463.8
## 1341 50 60 Desthieux Simon FRA 1976.3 478.3
## 1342 51 44 Hasilla Tomas SVK 1981.7 486.7
## 1343 52 58 Bormolini Thomas ITA 1997.3 468.5
## 1344 53 54 Windisch Dominik ITA 2028.0 499.6
## 1345 54 47 Femling Peppe SWE 2032.9 480.0
## 1346 55 56 Soukup Jaroslav CZE 2014.7 498.1
## 1347 56 25 Kazar Matej SVK 2044.9 561.1
## 1348 57 39 Eberhard Tobias AUT 2042.9 497.4
## 1349 58 48 Cuenot Gaspard SUI 2058.6 539.3
## 1350 59 46 Toivanen Ahti FIN 2050.0 491.3
## 1351 1 70 Peiffer Arnd GER 1002.9 505.8
## 1352 2 27 Fourcade Martin FRA 1007.7 507.9
## 1353 3 11 Shipulin Anton RUS 1007.8 510.1
## 1354 4 7 Birnbacher Andreas GER 1006.3 501.9
## 1355 5 44 Birkeland Lars Helge NOR 1001.4 504.3
## 1356 6 14 Fillon Maillet Quentin FRA 1021.6 515.4
## 1357 7 6 Moravec Ondrej CZE 1015.9 513.8
## 1358 8 21 Boe Johannes Thingnes NOR 1021.9 532.0
## 1359 9 26 Landertinger Dominik AUT 1038.0 524.8
## 1360 10 33 Garanichev Evgeniy RUS 1019.6 515.2
## 1361 11 100 Doll Benedikt GER 1029.3 528.0
## 1362 12 30 Pidruchnyi Dmytro UKR 1032.7 523.0
## 1363 13 19 Schempp Simon GER 1045.1 527.1
## 1364 14 24 Lesser Erik GER 1032.8 538.2
## 1365 15 13 Semenov Sergii UKR 1041.6 534.2
## 1366 16 43 Dolder Mario SUI 1031.5 523.9
## 1367 17 34 Mesotitsch Daniel AUT 1026.5 521.0
## 1368 18 77 Tsvetkov Maxim RUS 1038.8 530.1
## 1369 19 31 Fak Jakov SLO 1035.6 524.9
## 1370 20 15 Ermits Kalev EST 1045.6 515.0
## 1371 21 25 Beatrix Jean Guillaume FRA 1045.9 518.1
## 1372 22 16 Smith Nathan CAN 1045.6 538.2
## 1373 23 88 Slepov Alexey RUS 1053.4 552.5
## 1374 24 2 Slesingr Michal CZE 1045.1 546.1
## 1375 25 94 Guigonnat Antonin FRA 1047.1 538.7
## 1376 26 1 Weger Benjamin SUI 1050.3 556.0
## 1377 27 23 Iliev Vladimir BUL 1061.9 536.3
## 1378 28 36 Grossegger Sven AUT 1046.6 524.5
## 1379 29 8 Nordgren Leif USA 1050.5 517.6
## 1380 30 47 Boehm Daniel GER 1059.6 537.2
## 1381 31 4 Eder Simon AUT 1065.8 567.7
## 1382 32 48 Fourcade Simon FRA 1077.2 510.3
## 1383 33 60 Desthieux Simon FRA 1066.0 556.1
## 1384 34 3 Lindstroem Fredrik SWE 1056.9 558.3
## 1385 35 45 Malyshko Dmitry RUS 1070.1 540.4
## 1386 36 76 Gow Scott CAN 1076.4 533.6
## 1387 37 50 Chepelin Vladimir BLR 1096.9 580.4
## 1388 38 17 Os Alexander NOR 1055.3 536.2
## 1389 39 40 Green Brendan CAN 1066.8 527.5
## 1390 40 37 Hofer Lukas ITA 1077.7 526.0
## 1391 41 52 Wiestner Serafin SUI 1083.3 525.0
## 1392 42 101 Stenersen Torstein SWE 1056.2 537.5
## 1393 43 20 Lapshin Timofei RUS 1053.3 532.1
## 1394 44 41 Anev Krasimir BUL 1063.6 539.4
## 1395 45 67 Bormolini Thomas ITA 1059.4 536.1
## 1396 46 39 Krcmar Michal CZE 1074.1 560.7
## 1397 47 5 Liadov Yuryi BLR 1080.2 574.3
## 1398 48 28 L'Abee-Lund Henrik NOR 1092.2 570.3
## 1399 49 18 Bauer Klemen SLO 1092.4 541.0
## 1400 50 68 Matiasko Miroslav SVK 1083.2 558.8
## 1401 51 12 Rastorgujevs Andrejs LAT 1088.6 519.5
## 1402 52 29 Roesch Michael BEL 1064.0 550.3
## 1403 53 38 Arwidson Tobias SWE 1059.2 539.8
## 1404 54 75 Krupcik Tomas CZE 1084.2 560.1
## 1405 55 73 Tyshchenko Artem UKR 1088.1 542.1
## 1406 56 62 Waernes Andreas Dahloe NOR 1088.7 576.9
## 1407 57 66 Dyuzhev Dmitriy BLR 1102.1 536.2
## 1408 58 56 Hasilla Tomas SVK 1083.7 552.4
## 1409 59 89 Siemakov Volodymyr UKR 1088.5 557.7
## 1410 60 53 Eberhard Julian AUT 1126.6 538.3
## 1411 61 91 Joller Ivan SUI 1093.5 555.3
## 1412 62 32 Soukup Jaroslav CZE 1094.8 560.5
## 1413 63 80 Bailey Lowell USA 1106.4 580.6
## 1414 64 49 Lessing Roland EST 1103.7 556.6
## 1415 65 9 Puchianu Cornel ROU 1084.8 564.9
## 1416 65 82 Kubaliak Michal SVK 1090.4 550.0
## 1417 67 92 Gow Christian CAN 1096.7 543.6
## 1418 68 42 Burke Tim USA 1119.8 600.8
## 1419 69 81 Abasheu Dzmitry BLR 1106.5 557.1
## 1420 70 58 Armgren Ted SWE 1104.3 581.1
## 1421 71 46 Pryma Artem UKR 1135.2 594.6
## 1422 72 83 Gronman Tuomas FIN 1110.5 572.0
## 1423 73 55 Hiidensalo Olli FIN 1119.1 577.0
## 1424 74 61 Koiv Kauri EST 1117.1 579.1
## 1425 75 78 Dombrovski Karol LTU 1119.9 594.6
## 1426 76 72 Trsan Rok SLO 1132.9 575.8
## 1427 77 98 Sima Michal SVK 1119.1 569.9
## 1428 78 93 Kaukenas Tomas LTU 1129.8 560.7
## 1429 79 35 Femling Peppe SWE 1121.7 556.1
## 1430 80 65 Podkorytov Vassiliy KAZ 1125.5 596.7
## 1431 81 63 Danila Marian Marcel ROU 1139.4 582.1
## 1432 82 97 Szczurek Lukasz POL 1137.6 597.8
## 1433 83 87 Komatz David AUT 1152.1 591.7
## 1434 84 69 Zlatev Ivan BUL 1139.7 583.1
## 1435 85 85 De Lorenzi Christian ITA 1166.4 604.7
## 1436 86 86 Slotins Roberts LAT 1141.8 591.7
## 1437 87 10 Windisch Dominik ITA 1171.9 571.3
## 1438 88 64 Lobo Escolar Victor ESP 1172.6 571.4
## 1439 89 71 Guzik Grzegorz POL 1170.5 560.0
## 1440 90 57 Braun Maxim KAZ 1186.6 576.0
## 1441 91 59 Jackson Lee-Steve GBR 1178.5 598.8
## 1442 92 22 Kobonoki Tsukasa JPN 1170.8 615.2
## 1443 93 51 Kauppinen Jarkko FIN 1164.1 582.3
## 1444 94 74 Puzulis Rolands LAT 1189.5 592.8
## 1445 95 96 Kane Kevin GBR 1159.9 609.4
## 1446 96 79 Rastic Damir SRB 1223.3 626.2
## 1447 97 99 Krsmanovic Dejan SRB 1254.4 618.6
## 1448 1 1 Fourcade Martin FRA 2473.7 626.7
## 1449 2 4 Garanichev Evgeniy RUS 2477.7 625.5
## 1450 3 18 Semenov Sergii UKR 2501.7 635.5
## 1451 4 16 Fak Jakov SLO 2570.6 688.6
## 1452 5 3 Weger Benjamin SUI 2552.6 651.6
## 1453 6 32 Boe Johannes Thingnes NOR 2565.1 644.7
## 1454 7 15 Shipulin Anton RUS 2573.8 631.1
## 1455 8 22 Slesingr Michal CZE 2589.5 639.8
## 1456 9 48 Lesser Erik GER 2580.5 645.7
## 1457 10 67 Tsvetkov Maxim RUS 2584.8 653.9
## 1458 11 14 Birnbacher Andreas GER 2601.3 627.1
## 1459 12 10 Smith Nathan CAN 2608.3 707.1
## 1460 13 13 Lapshin Timofei RUS 2603.2 657.9
## 1461 14 8 Fillon Maillet Quentin FRA 2619.8 697.3
## 1462 15 17 Boehm Daniel GER 2615.0 693.1
## 1463 16 46 Fourcade Simon FRA 2622.4 638.1
## 1464 17 37 Iliev Vladimir BUL 2623.0 654.1
## 1465 18 21 Liadov Yuryi BLR 2620.1 658.6
## 1466 19 36 Chepelin Vladimir BLR 2619.2 764.8
## 1467 20 57 Nordgren Leif USA 2616.4 653.4
## 1468 21 61 Femling Peppe SWE 2625.5 661.6
## 1469 22 6 Rastorgujevs Andrejs LAT 2627.9 728.2
## 1470 23 9 Lindstroem Fredrik SWE 2649.3 710.9
## 1471 24 94 Guigonnat Antonin FRA 2642.7 654.8
## 1472 25 74 Peiffer Arnd GER 2660.7 655.2
## 1473 26 49 Krcmar Michal CZE 2654.4 664.1
## 1474 27 19 Schempp Simon GER 2668.0 700.0
## 1475 28 91 Doll Benedikt GER 2687.4 658.0
## 1476 29 93 Birkeland Lars Helge NOR 2670.8 708.0
## 1477 30 75 L'Abee-Lund Henrik NOR 2668.5 737.0
## 1478 31 29 Eder Simon AUT 2673.1 655.2
## 1479 32 98 Volkov Alexey RUS 2666.5 668.1
## 1480 33 65 Zhyrnyi Oleksandr UKR 2690.6 676.0
## 1481 34 30 Roesch Michael BEL 2681.7 774.8
## 1482 35 5 Beatrix Jean Guillaume FRA 2713.9 769.4
## 1483 36 11 Windisch Dominik ITA 2713.2 646.4
## 1484 37 34 Pryma Artem UKR 2713.0 640.5
## 1485 38 38 Malyshko Dmitry RUS 2701.5 664.3
## 1486 39 43 Bjoentegaard Erlend NOR 2700.2 685.9
## 1487 40 20 Ermits Kalev EST 2715.8 668.3
## 1488 41 44 Grossegger Sven AUT 2724.7 660.8
## 1489 42 35 Landertinger Dominik AUT 2715.5 680.8
## 1490 43 28 Anev Krasimir BUL 2738.2 775.3
## 1491 44 41 Green Brendan CAN 2747.8 785.0
## 1492 45 90 De Lorenzi Christian ITA 2728.2 663.7
## 1493 46 53 Eberhard Julian AUT 2758.8 634.3
## 1494 47 24 Burke Tim USA 2765.5 818.1
## 1495 48 27 Mesotitsch Daniel AUT 2742.9 724.5
## 1496 49 2 Soukup Jaroslav CZE 2747.7 839.6
## 1497 50 40 Hofer Lukas ITA 2774.2 643.3
## 1498 51 79 Szczurek Lukasz POL 2710.8 702.1
## 1499 52 12 Armgren Ted SWE 2786.2 692.9
## 1500 53 83 Joller Ivan SUI 2762.8 677.9
## 1501 54 71 Desthieux Simon FRA 2769.7 736.0
## 1502 55 42 Arwidson Tobias SWE 2761.9 679.8
## 1503 56 39 Tyshchenko Artem UKR 2776.8 747.4
## 1504 57 56 Kauppinen Jarkko FIN 2764.7 691.5
## 1505 58 31 Os Alexander NOR 2769.3 676.7
## 1506 59 85 Dombrovski Karol LTU 2776.2 689.2
## 1507 60 73 Gow Scott CAN 2810.0 677.7
## 1508 61 45 Dolder Mario SUI 2825.4 724.9
## 1509 62 50 Bailey Lowell USA 2819.1 795.3
## 1510 63 88 Komatz David AUT 2842.2 679.2
## 1511 64 51 Dyuzhev Dmitriy BLR 2845.7 721.9
## 1512 65 70 Hasilla Tomas SVK 2830.0 692.1
## 1513 66 64 Krupcik Tomas CZE 2848.6 698.3
## 1514 67 59 Bormolini Thomas ITA 2869.4 730.9
## 1515 68 89 Stegmayr Gabriel SWE 2834.2 707.2
## 1516 69 66 Koiv Kauri EST 2891.1 734.6
## 1517 70 23 Moravec Ondrej CZE 2905.9 839.1
## 1518 71 82 Kubaliak Michal SVK 2844.1 708.0
## 1519 72 63 Podkorytov Vassiliy KAZ 2881.1 694.2
## 1520 73 54 Buta George ROU 2897.4 702.1
## 1521 74 84 Sima Michal SVK 2890.9 764.0
## 1522 75 60 Sloof Joel NED 2868.2 773.5
## 1523 76 26 Kobonoki Tsukasa JPN 2917.9 751.3
## 1524 77 86 Abasheu Dzmitry BLR 2942.9 753.7
## 1525 78 47 Lessing Roland EST 2958.6 669.4
## 1526 79 62 Matiasko Miroslav SVK 2952.9 802.7
## 1527 80 92 Siemakov Volodymyr UKR 2955.5 740.6
## 1528 81 72 Gerdzhikov Dimitar BUL 2953.7 709.7
## 1529 82 58 Kaukenas Tomas LTU 2987.6 801.1
## 1530 83 52 Rastic Damir SRB 2962.9 860.4
## 1531 84 96 Faur Remus ROU 2973.8 716.9
## 1532 85 33 Bauer Klemen SLO 3045.9 767.5
## 1533 86 76 Finello Jeremy SUI 2982.0 831.1
## 1534 87 77 Puzulis Rolands LAT 3003.6 802.7
## 1535 88 95 Braun Maxim KAZ 3040.8 776.7
## 1536 89 69 Guzik Grzegorz POL 3063.8 813.4
## 1537 90 78 Trsan Rok SLO 3055.4 758.4
## 1538 91 81 Gronman Tuomas FIN 3058.6 770.1
## 1539 92 80 Krsmanovic Dejan SRB 3069.8 725.9
## 1540 93 55 Kane Kevin GBR 3051.4 810.8
## 1541 94 87 Praulitis Toms LAT 3244.4 793.9
## 1542 1 7 Shipulin Anton RUS 971.3 481.3
## 1543 2 16 Landertinger Dominik AUT 978.7 483.1
## 1544 3 12 Svendsen Emil Hegle NOR 986.4 493.1
## 1545 4 6 Fourcade Martin FRA 1000.4 508.9
## 1546 5 71 Garanichev Evgeniy RUS 987.7 494.0
## 1547 6 8 Schempp Simon GER 993.0 497.4
## 1548 7 34 Boe Tarjei NOR 995.9 496.1
## 1549 8 39 Fillon Maillet Quentin FRA 1000.6 497.5
## 1550 9 47 Tsvetkov Maxim RUS 1001.9 500.2
## 1551 10 14 Boe Johannes Thingnes NOR 1009.6 528.4
## 1552 11 23 Eder Simon AUT 1009.1 499.5
## 1553 12 5 Windisch Dominik ITA 1013.7 514.2
## 1554 13 43 Boehm Daniel GER 1002.2 496.9
## 1555 14 9 Beatrix Jean Guillaume FRA 1019.4 529.1
## 1556 15 44 Hofer Lukas ITA 1008.0 506.3
## 1557 16 42 Bailey Lowell USA 1007.1 498.9
## 1558 17 46 Iliev Vladimir BUL 1004.6 500.6
## 1559 18 20 Moravec Ondrej CZE 1018.1 493.7
## 1560 19 48 Soukup Jaroslav CZE 1012.1 508.2
## 1561 20 22 Slesingr Michal CZE 1025.1 525.8
## 1562 21 57 Otcenas Martin SVK 1014.4 514.0
## 1563 22 87 Bjoentegaard Erlend NOR 1027.7 521.7
## 1564 23 26 Lindstroem Fredrik SWE 1029.5 528.4
## 1565 24 28 Fak Jakov SLO 1020.7 529.0
## 1566 25 2 Smith Nathan CAN 1026.8 502.9
## 1567 26 24 Burke Tim USA 1033.6 537.1
## 1568 27 10 Weger Benjamin SUI 1034.4 498.8
## 1569 28 63 Desthieux Simon FRA 1036.7 532.5
## 1570 29 27 Malyshko Dmitry RUS 1029.7 529.6
## 1571 30 50 Christiansen Vetle Sjaastad NOR 1026.8 504.5
## 1572 31 19 Mesotitsch Daniel AUT 1040.9 509.3
## 1573 32 30 Anev Krasimir BUL 1015.3 513.0
## 1574 33 15 Lesser Erik GER 1032.5 527.5
## 1575 34 62 Green Brendan CAN 1054.7 527.4
## 1576 35 65 Krcmar Michal CZE 1037.4 522.0
## 1577 36 45 Dolder Mario SUI 1040.0 545.4
## 1578 37 85 Kuehn Johannes GER 1032.7 531.7
## 1579 38 25 Birnbacher Andreas GER 1042.1 540.9
## 1580 39 74 Chepelin Vladimir BLR 1034.1 528.9
## 1581 40 98 Joller Ivan SUI 1036.8 530.7
## 1582 41 33 Fourcade Simon FRA 1050.2 520.3
## 1583 42 31 Kazar Matej SVK 1046.8 509.6
## 1584 43 86 Grossegger Sven AUT 1045.4 523.6
## 1585 44 37 Os Alexander NOR 1041.3 521.6
## 1586 45 4 Lapshin Timofei RUS 1045.2 508.3
## 1587 46 58 Sloof Joel NED 1030.7 516.4
## 1588 46 64 Eberhard Julian AUT 1064.3 539.5
## 1589 48 49 Hiidensalo Olli FIN 1068.8 527.0
## 1590 49 1 Toivanen Ahti FIN 1044.1 537.6
## 1591 50 40 Pidruchnyi Dmytro UKR 1048.9 510.1
## 1592 51 3 Rastorgujevs Andrejs LAT 1070.3 520.6
## 1593 52 97 Claude Florent FRA 1053.3 539.0
## 1594 53 80 Nordgren Leif USA 1055.4 536.9
## 1595 54 61 Wiestner Serafin SUI 1063.7 520.7
## 1596 55 75 Armgren Ted SWE 1048.3 538.5
## 1597 56 29 Puchianu Cornel ROU 1064.3 557.2
## 1598 57 69 Koiv Kauri EST 1048.9 541.6
## 1599 58 94 Krupcik Tomas CZE 1052.0 538.9
## 1600 59 54 Guzik Grzegorz POL 1060.4 538.5
## 1601 60 18 Savitskiy Yan KAZ 1047.7 537.9
## 1602 61 13 Bauer Klemen SLO 1074.6 527.1
## 1603 62 41 Lessing Roland EST 1076.7 497.5
## 1604 63 32 Semenov Sergii UKR 1085.6 553.4
## 1605 64 79 Peiffer Arnd GER 1046.3 517.2
## 1606 65 17 Pryma Artem UKR 1092.3 563.7
## 1607 66 38 Arwidson Tobias SWE 1059.2 547.7
## 1608 67 35 Komatz David AUT 1095.0 516.2
## 1609 67 89 De Lorenzi Christian ITA 1061.1 539.0
## 1610 69 100 Tobreluts Indrek EST 1095.2 549.9
## 1611 70 81 Darozhka Aliaksandr BLR 1076.1 560.2
## 1612 71 70 Podkorytov Vassiliy KAZ 1067.3 538.7
## 1613 72 72 Perras Scott CAN 1109.9 580.8
## 1614 73 91 Budzilovich Dzmitry BLR 1075.1 547.5
## 1615 74 67 Zhyrnyi Oleksandr UKR 1087.9 572.4
## 1616 75 102 Matiasko Miroslav SVK 1097.2 547.9
## 1617 76 78 Eriksson Christofer SWE 1116.5 533.2
## 1618 77 90 Femling Peppe SWE 1091.6 532.2
## 1619 78 96 Hakala Matti FIN 1082.8 560.7
## 1620 79 93 Bedard Marc Andre CAN 1103.1 563.1
## 1621 80 36 Hasilla Tomas SVK 1110.1 547.9
## 1622 81 60 Buta George ROU 1103.6 580.4
## 1623 82 103 Szczurek Lukasz POL 1121.1 568.5
## 1624 83 51 Almoukov Alexei AUS 1109.0 528.6
## 1625 84 56 Kaukenas Tomas LTU 1111.8 571.3
## 1626 85 11 Liadov Yuryi BLR 1125.2 543.2
## 1627 86 95 Trsan Rok SLO 1139.1 592.0
## 1628 87 21 Kobonoki Tsukasa JPN 1114.0 596.0
## 1629 88 68 Maric Janez SLO 1133.6 567.2
## 1630 89 84 Tyshchenko Artem UKR 1125.7 582.3
## 1631 90 76 Partalov Dimitar BUL 1141.0 574.0
## 1632 91 77 Dutto Pietro ITA 1127.3 613.9
## 1633 92 59 Jackson Lee-Steve GBR 1110.6 564.1
## 1634 93 66 Patrijuks Aleksandrs LAT 1150.7 595.1
## 1635 94 82 Dombrovski Karol LTU 1147.7 552.6
## 1636 95 101 Currier Russell USA 1182.6 558.1
## 1637 96 55 Oblak Lenart SLO 1156.3 588.2
## 1638 97 88 Puzulis Rolands LAT 1152.9 561.1
## 1639 98 73 Lobo Escolar Victor ESP 1160.8 574.5
## 1640 99 92 Rastic Damir SRB 1190.4 633.5
## 1641 100 99 Braun Maxim KAZ 1155.6 619.2
## 1642 101 52 Hodzic Edin SRB 1157.0 604.2
## 1643 102 53 Crnkovic Kresimir CRO 1231.3 656.7
## 1644 1 3 Shipulin Anton RUS 1745.6 454.7
## 1645 2 2 Fourcade Martin FRA 1740.1 451.5
## 1646 3 21 Eder Simon AUT 1737.5 429.5
## 1647 4 14 Lindstroem Fredrik SWE 1744.7 437.8
## 1648 5 17 Beatrix Jean Guillaume FRA 1745.5 456.2
## 1649 6 9 Boe Tarjei NOR 1764.5 436.4
## 1650 7 7 Moravec Ondrej CZE 1757.2 435.4
## 1651 8 6 Fak Jakov SLO 1775.9 430.7
## 1652 9 30 Smith Nathan CAN 1774.8 454.4
## 1653 10 13 Birnbacher Andreas GER 1772.0 426.4
## 1654 11 25 Malyshko Dmitry RUS 1774.1 436.3
## 1655 12 23 Fillon Maillet Quentin FRA 1773.1 434.8
## 1656 13 4 Landertinger Dominik AUT 1798.4 465.5
## 1657 14 28 Bjoentegaard Erlend NOR 1798.7 438.1
## 1658 15 19 Tsvetkov Maxim RUS 1804.9 444.0
## 1659 16 12 Boehm Daniel GER 1780.5 443.0
## 1660 17 1 Svendsen Emil Hegle NOR 1798.1 446.9
## 1661 18 22 Anev Krasimir BUL 1785.5 471.4
## 1662 19 27 Windisch Dominik ITA 1815.0 437.7
## 1663 20 5 Schempp Simon GER 1820.2 447.1
## 1664 21 26 Hofer Lukas ITA 1813.6 485.2
## 1665 22 18 Bailey Lowell USA 1823.2 467.0
## 1666 23 8 Boe Johannes Thingnes NOR 1846.5 496.0
## 1667 24 20 Weger Benjamin SUI 1853.3 443.1
## 1668 25 10 Garanichev Evgeniy RUS 1868.4 489.1
## 1669 26 29 Lapshin Timofei RUS 1878.2 481.1
## 1670 27 15 Burke Tim USA 1887.3 507.5
## 1671 28 24 Iliev Vladimir BUL 1886.8 506.7
## 1672 29 16 Slesingr Michal CZE 1911.1 458.7
## 1673 30 11 Lesser Erik GER 2098.0 509.4
## 1674 1 3 Svendsen Emil Hegle NOR 1505.4 369.2
## 1675 2 1 Shipulin Anton RUS 1530.8 373.6
## 1676 3 4 Fourcade Martin FRA 1551.8 382.4
## 1677 4 2 Landertinger Dominik AUT 1605.1 412.7
## 1678 5 18 Moravec Ondrej CZE 1597.3 376.6
## 1679 6 45 Lapshin Timofei RUS 1597.7 374.9
## 1680 7 14 Beatrix Jean Guillaume FRA 1610.6 400.2
## 1681 8 10 Boe Johannes Thingnes NOR 1612.3 380.4
## 1682 9 27 Weger Benjamin SUI 1614.1 373.4
## 1683 10 15 Hofer Lukas ITA 1602.3 407.5
## 1684 11 24 Fak Jakov SLO 1618.1 396.1
## 1685 12 23 Lindstroem Fredrik SWE 1620.9 399.5
## 1686 13 37 Kuehn Johannes GER 1619.7 381.1
## 1687 14 22 Bjoentegaard Erlend NOR 1634.8 395.7
## 1688 15 35 Krcmar Michal CZE 1625.3 406.0
## 1689 16 5 Garanichev Evgeniy RUS 1624.7 381.7
## 1690 17 7 Boe Tarjei NOR 1632.0 377.9
## 1691 18 12 Windisch Dominik ITA 1633.1 425.6
## 1692 19 6 Schempp Simon GER 1625.6 408.5
## 1693 20 41 Fourcade Simon FRA 1625.2 381.1
## 1694 21 26 Burke Tim USA 1647.1 403.1
## 1695 22 25 Smith Nathan CAN 1642.0 424.7
## 1696 23 33 Lesser Erik GER 1647.8 379.8
## 1697 24 43 Grossegger Sven AUT 1643.0 381.8
## 1698 25 28 Desthieux Simon FRA 1648.0 407.5
## 1699 26 17 Iliev Vladimir BUL 1640.3 411.9
## 1700 27 44 Os Alexander NOR 1648.8 381.4
## 1701 28 13 Boehm Daniel GER 1636.5 405.8
## 1702 29 16 Bailey Lowell USA 1646.6 427.3
## 1703 30 31 Mesotitsch Daniel AUT 1645.4 405.8
## 1704 31 32 Anev Krasimir BUL 1653.2 387.7
## 1705 32 42 Kazar Matej SVK 1652.1 381.2
## 1706 33 34 Green Brendan CAN 1662.3 420.6
## 1707 34 29 Malyshko Dmitry RUS 1657.5 384.7
## 1708 35 9 Tsvetkov Maxim RUS 1671.5 420.5
## 1709 36 50 Pidruchnyi Dmytro UKR 1675.3 392.7
## 1710 37 20 Slesingr Michal CZE 1670.4 413.6
## 1711 38 8 Fillon Maillet Quentin FRA 1647.3 380.4
## 1712 39 30 Christiansen Vetle Sjaastad NOR 1666.9 417.0
## 1713 40 21 Otcenas Martin SVK 1679.4 399.4
## 1714 41 11 Eder Simon AUT 1688.2 435.2
## 1715 42 39 Chepelin Vladimir BLR 1707.7 416.0
## 1716 43 55 Armgren Ted SWE 1717.5 414.0
## 1717 44 40 Joller Ivan SUI 1717.7 414.4
## 1718 45 56 Puchianu Cornel ROU 1737.5 390.7
## 1719 46 47 Eberhard Julian AUT 1758.0 376.6
## 1720 47 52 Claude Florent FRA 1751.8 397.9
## 1721 48 19 Soukup Jaroslav CZE 1739.9 423.8
## 1722 49 36 Dolder Mario SUI 1747.9 422.1
## 1723 50 38 Birnbacher Andreas GER 1729.4 484.7
## 1724 51 53 Nordgren Leif USA 1743.1 398.1
## 1725 52 49 Toivanen Ahti FIN 1759.6 409.5
## 1726 53 58 Krupcik Tomas CZE 1758.7 425.4
## 1727 54 51 Rastorgujevs Andrejs LAT 1787.2 414.0
## 1728 55 60 Savitskiy Yan KAZ 1771.1 455.3
## 1729 56 48 Hiidensalo Olli FIN 1760.4 410.8
## 1730 57 59 Guzik Grzegorz POL 1844.4 464.9
## 1731 58 54 Wiestner Serafin SUI 1874.5 475.0
## 1732 59 46 Sloof Joel NED 1893.5 403.6
## 1733 1 25 Boe Johannes Thingnes NOR 985.8 501.4
## 1734 2 71 Schempp Simon GER 1004.5 504.6
## 1735 3 37 Peiffer Arnd GER 1037.2 534.5
## 1736 4 11 Shipulin Anton RUS 1032.3 536.6
## 1737 5 7 Rastorgujevs Andrejs LAT 1037.0 511.3
## 1738 6 14 Doll Benedikt GER 1037.9 542.1
## 1739 7 76 Weger Benjamin SUI 1038.7 515.6
## 1740 8 62 Anev Krasimir BUL 1036.4 523.3
## 1741 9 97 Boehm Daniel GER 1022.6 522.6
## 1742 10 57 Slesingr Michal CZE 1047.4 517.9
## 1743 11 54 Os Alexander NOR 1055.8 555.1
## 1744 12 24 Svendsen Emil Hegle NOR 1038.8 519.5
## 1745 13 69 Moravec Ondrej CZE 1059.8 516.7
## 1746 14 21 Fak Jakov SLO 1046.6 538.8
## 1747 15 23 Bjoerndalen Ole Einar NOR 1052.4 555.4
## 1748 16 79 Green Brendan CAN 1047.9 523.5
## 1749 17 43 Iliev Vladimir BUL 1054.4 525.2
## 1750 18 88 L'Abee-Lund Henrik NOR 1054.5 543.4
## 1751 19 16 Bjoentegaard Erlend NOR 1071.0 522.4
## 1752 20 27 Liadov Yuryi BLR 1049.2 533.8
## 1753 21 30 Lindstroem Fredrik SWE 1064.4 527.2
## 1754 22 52 Fourcade Simon FRA 1068.9 541.4
## 1755 23 12 Garanichev Evgeniy RUS 1055.4 524.2
## 1756 24 70 Beatrix Jean Guillaume FRA 1052.6 540.5
## 1757 25 68 Lesser Erik GER 1041.5 544.8
## 1758 26 72 Fourcade Martin FRA 1057.5 536.2
## 1759 27 18 Gow Scott CAN 1071.2 546.3
## 1760 28 53 Chepelin Vladimir BLR 1063.9 562.3
## 1761 29 48 Tyshchenko Artem UKR 1056.9 536.3
## 1762 30 56 Eder Simon AUT 1071.3 522.9
## 1763 31 49 Soukup Jaroslav CZE 1094.2 592.8
## 1764 32 8 Zhyrnyi Oleksandr UKR 1066.0 560.1
## 1765 32 92 Desthieux Simon FRA 1068.4 551.6
## 1766 34 63 Windisch Dominik ITA 1080.6 560.9
## 1767 35 33 Smith Nathan CAN 1094.6 546.4
## 1768 36 51 Roesch Michael BEL 1080.7 543.0
## 1769 37 80 Fillon Maillet Quentin FRA 1074.2 545.2
## 1770 38 101 Malyshko Dmitry RUS 1074.1 552.0
## 1771 39 20 Lapshin Timofei RUS 1072.3 537.5
## 1772 40 9 De Lorenzi Christian ITA 1072.3 555.5
## 1773 41 65 Bailey Lowell USA 1084.4 561.5
## 1774 42 31 Wiestner Serafin SUI 1108.2 571.6
## 1775 43 59 Kilchytskyy Vitaliy UKR 1097.7 545.0
## 1776 44 93 Krcmar Michal CZE 1094.1 577.5
## 1777 45 5 Pinter Friedrich AUT 1098.1 595.2
## 1778 46 50 Babikov Anton RUS 1093.3 561.8
## 1779 47 85 Bormolini Thomas ITA 1081.5 561.0
## 1780 48 3 Yaliotnau Raman BLR 1109.1 568.5
## 1781 49 61 Landertinger Dominik AUT 1114.6 600.8
## 1782 50 44 Burke Tim USA 1112.0 597.7
## 1783 51 6 Arwidson Tobias SWE 1090.7 569.6
## 1784 52 81 Volkov Alexey RUS 1093.4 545.8
## 1785 53 75 Eriksson Christofer SWE 1104.1 563.1
## 1786 54 47 Grossegger Sven AUT 1102.4 547.9
## 1787 55 77 Otcenas Martin SVK 1095.5 575.1
## 1788 56 1 Puchianu Cornel ROU 1113.5 569.3
## 1789 57 98 Eberhard Julian AUT 1119.3 544.6
## 1790 58 39 Bauer Klemen SLO 1117.2 603.6
## 1791 59 94 Abasheu Dzmitry BLR 1090.3 561.5
## 1792 60 78 Plywaczyk Krzysztof POL 1091.9 558.3
## 1793 61 60 Kauppinen Jarkko FIN 1101.0 564.4
## 1794 62 73 Mesotitsch Daniel AUT 1112.0 572.0
## 1795 63 17 Koiv Kauri EST 1111.2 566.1
## 1796 64 36 Kaukenas Tomas LTU 1132.9 564.4
## 1797 65 38 Siemakov Volodymyr UKR 1116.1 594.2
## 1798 66 83 Pantov Anton KAZ 1116.4 579.2
## 1799 66 84 Sloof Joel NED 1105.9 567.7
## 1800 68 64 Birnbacher Andreas GER 1152.0 593.4
## 1801 69 46 Buta George ROU 1138.5 581.8
## 1802 70 40 Braun Maxim KAZ 1129.5 595.7
## 1803 71 41 Remmelg Martin EST 1135.4 609.6
## 1804 72 4 Cuenot Gaspard SUI 1143.4 620.3
## 1805 73 89 Rusinov Dmytro UKR 1137.3 576.7
## 1806 74 15 Matiasko Miroslav SVK 1142.8 611.3
## 1807 75 91 Dolder Mario SUI 1154.0 588.4
## 1808 76 82 Maric Janez SLO 1138.5 592.8
## 1809 77 42 Lobo Escolar Victor ESP 1159.6 589.9
## 1810 77 95 Guzik Grzegorz POL 1135.7 573.6
## 1811 79 22 Zlatev Ivan BUL 1130.2 610.7
## 1812 80 102 Doherty Sean USA 1122.4 584.9
## 1813 81 96 Gow Christian CAN 1124.0 567.7
## 1814 82 13 Jouty Baptiste FRA 1146.9 606.6
## 1815 83 35 Toivanen Ahti FIN 1160.4 558.3
## 1816 84 10 Trsan Rok SLO 1158.1 600.7
## 1817 85 90 Armgren Ted SWE 1159.8 605.3
## 1818 86 26 Kazar Matej SVK 1183.6 600.3
## 1819 87 86 Podkorytov Vassiliy KAZ 1152.5 596.3
## 1820 88 74 Laponder Marcel GBR 1153.4 590.7
## 1821 89 28 Hofer Lukas ITA 1189.8 563.5
## 1822 90 67 Almoukov Alexei AUS 1167.4 611.3
## 1823 91 55 Ermits Kalev EST 1185.7 605.4
## 1824 92 100 Hakala Matti FIN 1176.4 634.9
## 1825 93 99 Hasilla Tomas SVK 1178.2 639.9
## 1826 94 45 Inomata Kazuya JPN 1187.1 638.4
## 1827 95 34 Krsmanovic Dejan SRB 1200.5 595.9
## 1828 96 87 Dokl Peter SLO 1190.4 614.8
## 1829 97 2 Strolia Vytautas LTU 1220.8 635.6
## 1830 98 32 Kane Kevin GBR 1238.3 599.9
## 1831 99 58 Rastic Damir SRB 1322.5 602.9
## 1832 1 4 Schempp Simon GER 1752.9 440.8
## 1833 2 22 Fillon Maillet Quentin FRA 1754.1 440.4
## 1834 3 9 Slesingr Michal CZE 1758.3 440.9
## 1835 4 3 Svendsen Emil Hegle NOR 1755.4 429.6
## 1836 5 17 Bjoerndalen Ole Einar NOR 1760.5 430.3
## 1837 6 2 Shipulin Anton RUS 1774.6 458.5
## 1838 7 21 Beatrix Jean Guillaume FRA 1775.2 460.6
## 1839 8 10 Eder Simon AUT 1771.8 459.4
## 1840 9 26 Peiffer Arnd GER 1779.0 435.9
## 1841 10 6 Boe Johannes Thingnes NOR 1767.7 438.2
## 1842 11 11 Garanichev Evgeniy RUS 1783.0 454.8
## 1843 12 7 Moravec Ondrej CZE 1781.6 455.4
## 1844 13 20 Lapshin Timofei RUS 1782.0 449.4
## 1845 14 12 Lindstroem Fredrik SWE 1790.9 446.9
## 1846 15 28 Os Alexander NOR 1809.8 463.6
## 1847 16 13 Birnbacher Andreas GER 1798.5 466.2
## 1848 17 24 Fourcade Simon FRA 1810.5 453.8
## 1849 18 29 Green Brendan CAN 1811.4 464.0
## 1850 19 30 L'Abee-Lund Henrik NOR 1819.4 482.3
## 1851 20 27 Doll Benedikt GER 1839.7 505.6
## 1852 21 1 Fourcade Martin FRA 1835.9 441.2
## 1853 22 16 Boehm Daniel GER 1819.1 502.1
## 1854 23 15 Lesser Erik GER 1836.6 493.8
## 1855 24 5 Fak Jakov SLO 1844.4 477.6
## 1856 25 18 Malyshko Dmitry RUS 1835.0 472.9
## 1857 26 14 Weger Benjamin SUI 1858.3 465.3
## 1858 27 8 Anev Krasimir BUL 1857.1 460.2
## 1859 28 25 Bailey Lowell USA 1875.8 479.5
## 1860 29 19 Rastorgujevs Andrejs LAT 1918.5 516.2
## 1861 30 23 Iliev Vladimir BUL 1918.9 502.1
## 1862 1 16 Schempp Simon GER 951.1 473.6
## 1863 2 45 Tsvetkov Maxim RUS 952.7 475.6
## 1864 3 28 Boe Tarjei NOR 963.6 485.4
## 1865 4 61 Beatrix Jean Guillaume FRA 957.0 478.7
## 1866 5 34 Shipulin Anton RUS 964.0 492.7
## 1867 6 13 Eder Simon AUT 956.7 485.8
## 1868 7 7 Anev Krasimir BUL 963.7 482.2
## 1869 8 48 Boe Johannes Thingnes NOR 981.2 490.6
## 1870 9 21 Peiffer Arnd GER 969.1 483.4
## 1871 10 38 Fourcade Simon FRA 963.0 484.1
## 1872 11 29 Doll Benedikt GER 985.5 486.2
## 1873 12 6 Hofer Lukas ITA 977.2 505.8
## 1874 13 3 Landertinger Dominik AUT 990.1 496.8
## 1875 14 20 Slepov Alexey RUS 988.8 499.4
## 1876 15 27 Fak Jakov SLO 986.3 507.8
## 1877 16 70 De Lorenzi Christian ITA 977.6 494.3
## 1878 17 39 Burke Tim USA 990.2 509.0
## 1879 18 43 Garanichev Evgeniy RUS 994.3 494.7
## 1880 19 46 Windisch Dominik ITA 994.8 500.1
## 1881 20 2 Semenov Sergii UKR 984.4 504.6
## 1882 21 42 Krcmar Michal CZE 999.8 510.9
## 1883 22 53 Eberhard Julian AUT 1015.4 492.8
## 1884 23 14 Bjoerndalen Ole Einar NOR 996.5 480.4
## 1885 24 47 Kazar Matej SVK 995.4 512.1
## 1886 25 31 Zhyrnyi Oleksandr UKR 1000.4 512.8
## 1887 26 51 Kilchytskyy Vitaliy UKR 1002.3 495.8
## 1888 27 22 Svendsen Emil Hegle NOR 1013.2 542.0
## 1889 28 24 Fourcade Martin FRA 1006.9 497.2
## 1890 29 37 Iliev Vladimir BUL 1008.2 524.2
## 1891 30 35 Soukup Jaroslav CZE 1004.7 498.9
## 1892 31 106 Babikov Anton RUS 995.0 510.5
## 1893 32 18 Bailey Lowell USA 1007.4 524.7
## 1894 32 85 Pryma Artem UKR 1007.8 507.7
## 1895 34 5 Weger Benjamin SUI 1023.6 503.6
## 1896 34 59 Lesser Erik GER 1027.8 505.1
## 1897 36 10 Rastorgujevs Andrejs LAT 1009.2 532.9
## 1898 37 12 Slesingr Michal CZE 1012.7 528.6
## 1899 38 60 Krupcik Tomas CZE 1011.5 527.6
## 1900 39 30 Chepelin Vladimir BLR 1026.5 513.1
## 1901 40 41 Wiestner Serafin SUI 1028.1 532.0
## 1902 41 23 Birnbacher Andreas GER 1013.5 486.4
## 1903 42 82 L'Abee-Lund Henrik NOR 1006.6 507.5
## 1904 43 80 Nordgren Leif USA 1008.7 519.7
## 1905 44 17 Pidruchnyi Dmytro UKR 1016.7 513.4
## 1906 45 11 Green Brendan CAN 1027.5 515.9
## 1907 46 83 Guigonnat Antonin FRA 1029.8 534.6
## 1908 47 15 Yaliotnau Raman BLR 1028.5 535.3
## 1909 48 50 Dyuzhev Dmitriy BLR 1033.0 515.0
## 1910 49 94 Doherty Sean USA 1010.4 505.3
## 1911 50 79 Dombrovski Karol LTU 1018.7 533.7
## 1912 51 8 Desthieux Simon FRA 1032.7 523.9
## 1913 52 25 Zahkna Rene EST 1023.1 527.0
## 1914 52 68 Podkorytov Vassiliy KAZ 1019.8 525.8
## 1915 54 9 Moravec Ondrej CZE 1052.8 492.8
## 1916 55 101 Vaclavik Adam CZE 1039.1 500.1
## 1917 56 1 Fillon Maillet Quentin FRA 1034.6 512.8
## 1918 57 77 Armgren Ted SWE 1018.7 524.2
## 1919 58 19 Smith Nathan CAN 1039.8 514.1
## 1920 58 49 Grossegger Sven AUT 1031.8 501.0
## 1921 60 95 Oblak Lenart SLO 1020.4 516.7
## 1922 61 87 Pantov Anton KAZ 1033.7 532.7
## 1923 62 26 Nelin Jesper SWE 1043.4 507.1
## 1924 63 64 Roesch Michael BEL 1030.8 539.6
## 1925 64 55 Hasilla Tomas SVK 1032.1 529.9
## 1926 65 86 Komatz David AUT 1044.5 518.6
## 1927 66 40 Savitskiy Yan KAZ 1035.5 542.2
## 1928 67 33 Bjoentegaard Erlend NOR 1066.2 541.5
## 1929 68 74 Szczurek Lukasz POL 1035.1 519.0
## 1930 69 36 Davies Macx CAN 1052.5 531.0
## 1931 70 100 Kuehn Johannes GER 1077.5 575.5
## 1932 71 91 Lessing Roland EST 1054.5 532.1
## 1933 72 67 Kletcherov Michail BUL 1062.1 534.4
## 1934 73 44 Buta George ROU 1040.5 540.3
## 1935 74 66 Trsan Rok SLO 1048.8 531.5
## 1936 75 4 Otcenas Martin SVK 1058.6 555.1
## 1937 76 93 Matiasko Miroslav SVK 1054.0 556.1
## 1938 77 71 Volkov Alexey RUS 1067.6 557.2
## 1939 78 69 Dolder Mario SUI 1063.3 548.2
## 1940 79 81 Strolia Vytautas LTU 1062.7 524.6
## 1941 80 89 Jaeger Martin SUI 1066.5 553.8
## 1942 81 76 Puchianu Cornel ROU 1060.9 552.2
## 1943 82 75 Dovzan Miha SLO 1050.8 517.7
## 1944 83 105 Hallstroem Simon SWE 1048.6 521.9
## 1945 84 88 Faur Remus ROU 1042.5 520.1
## 1946 85 72 Ermits Kalev EST 1064.7 514.9
## 1947 86 97 Gow Christian CAN 1054.5 539.6
## 1948 87 52 Finello Jeremy SUI 1057.4 517.9
## 1949 88 63 Gronman Tuomas FIN 1049.6 544.5
## 1950 89 32 Stenersen Torstein SWE 1093.1 561.7
## 1951 90 62 Guzik Grzegorz POL 1077.5 549.5
## 1952 91 102 Gerdzhikov Dimitar BUL 1066.2 514.6
## 1953 92 78 Koiv Kauri EST 1072.9 535.6
## 1954 93 99 Toivanen Ahti FIN 1073.0 557.8
## 1955 94 57 Gow Scott CAN 1102.7 553.8
## 1956 95 103 Plywaczyk Krzysztof POL 1076.4 545.3
## 1957 96 90 Montello Giuseppe ITA 1087.2 548.9
## 1958 97 104 Nagai Junji JPN 1073.7 554.4
## 1959 98 96 Kaukenas Tomas LTU 1106.5 591.0
## 1960 99 84 Bocharnikov Sergey BLR 1120.4 571.5
## 1961 100 73 Orpana Sami FIN 1094.9 575.9
## 1962 101 58 Deksnis Ingus LAT 1102.7 561.5
## 1963 102 54 Tachizaki Mikito JPN 1105.5 548.0
## 1964 103 92 Lusa Daumants LAT 1101.8 542.7
## 1965 104 98 Laponder Marcel GBR 1115.0 587.3
## 1966 105 56 Kim Jongmin KOR 1138.0 589.7
## 1967 106 65 Dixon Scott GBR 1164.4 574.6
## 1968 1 5 Shipulin Anton RUS 1569.6 403.6
## 1969 2 1 Schempp Simon GER 1576.3 415.3
## 1970 3 8 Boe Johannes Thingnes NOR 1588.0 388.3
## 1971 4 28 Fourcade Martin FRA 1589.1 380.1
## 1972 5 9 Peiffer Arnd GER 1607.6 392.5
## 1973 6 6 Eder Simon AUT 1597.9 419.6
## 1974 7 31 Babikov Anton RUS 1613.9 381.7
## 1975 8 3 Boe Tarjei NOR 1614.2 418.6
## 1976 9 13 Landertinger Dominik AUT 1630.1 387.4
## 1977 10 18 Garanichev Evgeniy RUS 1634.8 404.5
## 1978 11 2 Tsvetkov Maxim RUS 1631.2 382.5
## 1979 12 27 Svendsen Emil Hegle NOR 1633.6 396.7
## 1980 13 21 Krcmar Michal CZE 1635.9 392.3
## 1981 14 41 Birnbacher Andreas GER 1636.5 392.6
## 1982 15 15 Fak Jakov SLO 1651.2 416.3
## 1983 16 34 Weger Benjamin SUI 1650.8 407.8
## 1984 17 7 Anev Krasimir BUL 1650.4 436.4
## 1985 18 35 Lesser Erik GER 1665.0 412.9
## 1986 19 20 Semenov Sergii UKR 1665.4 415.8
## 1987 20 14 Slepov Alexey RUS 1680.0 382.2
## 1988 21 36 Rastorgujevs Andrejs LAT 1693.1 430.6
## 1989 22 17 Burke Tim USA 1686.0 412.9
## 1990 23 11 Doll Benedikt GER 1702.9 423.7
## 1991 24 25 Zhyrnyi Oleksandr UKR 1693.7 399.5
## 1992 25 38 Krupcik Tomas CZE 1694.0 431.1
## 1993 26 22 Eberhard Julian AUT 1698.3 402.5
## 1994 27 19 Windisch Dominik ITA 1692.9 454.8
## 1995 28 32 Bailey Lowell USA 1703.3 416.1
## 1996 29 24 Kazar Matej SVK 1700.6 415.7
## 1997 30 23 Bjoerndalen Ole Einar NOR 1696.4 409.6
## 1998 31 45 Green Brendan CAN 1683.7 417.3
## 1999 32 37 Slesingr Michal CZE 1702.2 396.9
## 2000 33 29 Iliev Vladimir BUL 1707.2 435.6
## 2001 34 12 Hofer Lukas ITA 1706.8 446.6
## 2002 35 39 Chepelin Vladimir BLR 1718.2 403.4
## 2003 36 33 Pryma Artem UKR 1713.6 414.9
## 2004 37 40 Wiestner Serafin SUI 1729.2 446.2
## 2005 38 30 Soukup Jaroslav CZE 1732.8 398.0
## 2006 39 26 Kilchytskyy Vitaliy UKR 1730.3 404.6
## 2007 40 52 Zahkna Rene EST 1737.7 421.8
## 2008 41 42 L'Abee-Lund Henrik NOR 1740.0 421.2
## 2009 42 48 Dyuzhev Dmitriy BLR 1747.8 397.7
## 2010 43 58 Smith Nathan CAN 1755.4 413.9
## 2011 44 16 De Lorenzi Christian ITA 1745.5 426.1
## 2012 45 46 Guigonnat Antonin FRA 1769.3 434.8
## 2013 46 54 Moravec Ondrej CZE 1772.6 412.4
## 2014 47 50 Dombrovski Karol LTU 1770.4 416.7
## 2015 48 43 Nordgren Leif USA 1754.9 414.2
## 2016 49 55 Vaclavik Adam CZE 1801.3 423.6
## 2017 50 53 Podkorytov Vassiliy KAZ 1892.1 450.9
## 2018 51 60 Oblak Lenart SLO 1918.4 454.0
## 2019 52 57 Armgren Ted SWE 1933.9 492.3
## 2020 1 6 Fourcade Martin FRA 993.9 487.0
## 2021 2 7 Shipulin Anton RUS 1000.2 497.5
## 2022 3 4 Schempp Simon GER 1004.9 497.1
## 2023 4 36 Eberhard Julian AUT 1041.0 519.0
## 2024 5 14 Landertinger Dominik AUT 1036.0 528.9
## 2025 6 1 Eder Simon AUT 1018.8 512.5
## 2026 7 27 Fourcade Simon FRA 1021.2 510.6
## 2027 8 29 Windisch Dominik ITA 1038.8 504.5
## 2028 9 28 Os Alexander NOR 1031.7 513.4
## 2029 10 2 Garanichev Evgeniy RUS 1034.5 522.2
## 2030 11 39 Peiffer Arnd GER 1028.7 519.1
## 2031 12 44 Lesser Erik GER 1043.7 530.7
## 2032 13 9 Semenov Sergii UKR 1049.0 512.6
## 2033 14 5 Slesingr Michal CZE 1049.0 530.0
## 2034 15 8 Kazar Matej SVK 1056.7 532.9
## 2035 16 15 Rastorgujevs Andrejs LAT 1044.2 535.4
## 2036 17 48 Pryma Artem UKR 1060.2 520.3
## 2037 18 17 Hofer Lukas ITA 1068.0 564.2
## 2038 19 60 Varabei Maksim BLR 1053.1 529.0
## 2039 20 13 Tsvetkov Maxim RUS 1053.6 521.6
## 2040 21 18 Darozhka Aliaksandr BLR 1070.2 549.3
## 2041 22 43 Volkov Alexey RUS 1058.6 522.2
## 2042 23 20 Burke Tim USA 1072.6 554.8
## 2043 24 38 Bailey Lowell USA 1072.9 556.3
## 2044 25 31 Davies Macx CAN 1068.9 537.2
## 2045 26 49 Nordgren Leif USA 1070.6 522.0
## 2046 27 41 Grossegger Sven AUT 1068.5 538.9
## 2047 28 10 Doll Benedikt GER 1078.1 524.0
## 2048 29 59 Abasheu Dzmitry BLR 1076.8 547.1
## 2049 30 30 Zhyrnyi Oleksandr UKR 1065.2 523.7
## 2050 31 22 Smith Nathan CAN 1061.7 521.8
## 2051 32 25 Kilchytskyy Vitaliy UKR 1070.2 524.8
## 2052 33 52 Dolder Mario SUI 1079.5 538.8
## 2053 34 66 Gow Scott CAN 1074.8 527.7
## 2054 35 74 Bormolini Thomas ITA 1064.9 539.5
## 2055 36 45 Christiansen Vetle Sjaastad NOR 1070.7 540.0
## 2056 37 50 Krcmar Michal CZE 1084.8 546.7
## 2057 38 79 Waeger Lorenz AUT 1077.3 545.4
## 2058 39 63 Beatrix Jean Guillaume FRA 1086.3 556.7
## 2059 40 16 Green Brendan CAN 1085.1 550.8
## 2060 41 34 Malyshko Dmitry RUS 1090.8 558.8
## 2061 42 73 Bogetveit Haavard Gutuboe NOR 1086.7 551.3
## 2062 43 23 Desthieux Simon FRA 1094.4 549.8
## 2063 44 24 Birkeland Lars Helge NOR 1076.3 541.9
## 2064 45 21 Fillon Maillet Quentin FRA 1108.9 552.2
## 2065 46 75 Slepov Alexey RUS 1113.7 571.7
## 2066 47 26 Wiestner Serafin SUI 1115.0 547.4
## 2067 48 89 Boehm Daniel GER 1094.3 550.5
## 2068 49 84 Krupcik Tomas CZE 1082.2 551.4
## 2069 50 3 L'Abee-Lund Henrik NOR 1100.7 569.1
## 2070 51 32 Moravec Ondrej CZE 1085.3 556.4
## 2071 52 42 Faur Remus ROU 1102.6 557.3
## 2072 53 70 Kryuko Viktar BLR 1110.9 562.9
## 2073 54 11 Weger Benjamin SUI 1089.8 558.2
## 2074 55 67 Guzik Grzegorz POL 1107.9 528.5
## 2075 56 12 Bauer Klemen SLO 1126.1 565.4
## 2076 57 64 De Lorenzi Christian ITA 1099.6 562.3
## 2077 58 62 Armgren Ted SWE 1119.6 589.2
## 2078 59 35 Stenersen Torstein SWE 1088.4 560.0
## 2079 60 88 Tachizaki Mikito JPN 1103.3 536.8
## 2080 61 68 Gow Christian CAN 1102.9 556.6
## 2081 62 54 Trsan Rok SLO 1132.8 548.6
## 2082 63 33 Matiasko Miroslav SVK 1126.4 590.6
## 2083 64 86 Pantov Anton KAZ 1135.3 541.0
## 2084 65 61 Ermits Kalev EST 1124.7 546.9
## 2085 66 47 Jaeger Martin SUI 1149.0 614.3
## 2086 67 37 Braun Maxim KAZ 1128.3 561.0
## 2087 68 83 Arwidson Tobias SWE 1125.9 561.1
## 2088 69 78 Dovzan Miha SLO 1140.4 554.1
## 2089 70 53 Gronman Tuomas FIN 1143.6 595.3
## 2090 71 69 Szczurek Lukasz POL 1131.4 578.9
## 2091 72 40 Podkorytov Vassiliy KAZ 1152.3 569.4
## 2092 73 65 Strolia Vytautas LTU 1162.6 573.3
## 2093 74 56 Nagai Junji JPN 1156.0 598.9
## 2094 75 55 Puchianu Cornel ROU 1193.2 580.6
## 2095 76 57 Sima Michal SVK 1160.6 572.9
## 2096 77 72 Kubaliak Michal SVK 1150.6 585.8
## 2097 78 76 Pop Gheorghe ROU 1159.2 606.8
## 2098 79 58 Toivanen Ahti FIN 1199.8 621.9
## 2099 80 77 Treier Jan EST 1172.0 594.2
## 2100 81 85 Suslavicius Rokas LTU 1187.2 598.4
## 2101 82 19 Zahkna Rene EST 1176.0 618.2
## 2102 83 81 Hakala Matti FIN 1177.6 582.4
## 2103 84 80 Durtschi Max USA 1243.2 643.4
## 2104 85 46 Laponder Marcel GBR 1207.7 584.8
## 2105 86 51 Kim Jongmin KOR 1237.4 644.4
## 2106 87 82 Dixon Scott GBR 1313.7 665.6
## 2107 1 26 Windisch Dominik ITA 2026.3 502.3
## 2108 2 8 Doll Benedikt GER 2032.7 509.3
## 2109 3 6 Fillon Maillet Quentin FRA 2012.0 508.0
## 2110 4 9 Landertinger Dominik AUT 2035.8 516.7
## 2111 5 25 Rastorgujevs Andrejs LAT 2025.9 510.7
## 2112 6 1 Fourcade Martin FRA 2038.3 496.1
## 2113 7 20 Burke Tim USA 2037.6 516.1
## 2114 8 10 Peiffer Arnd GER 2036.5 513.8
## 2115 9 11 Moravec Ondrej CZE 2037.4 503.2
## 2116 10 29 Kazar Matej SVK 2035.0 509.1
## 2117 11 18 Beatrix Jean Guillaume FRA 2059.2 495.3
## 2118 12 28 Semenov Sergii UKR 2057.3 531.5
## 2119 13 30 Pryma Artem UKR 2050.5 515.7
## 2120 14 5 Eder Simon AUT 2051.3 521.2
## 2121 15 4 Garanichev Evgeniy RUS 2069.1 527.2
## 2122 16 14 Smith Nathan CAN 2054.0 523.5
## 2123 17 2 Shipulin Anton RUS 2083.1 535.0
## 2124 18 12 Fourcade Simon FRA 2083.5 520.0
## 2125 19 13 Desthieux Simon FRA 2080.0 503.3
## 2126 20 16 Bailey Lowell USA 2109.7 532.0
## 2127 21 3 Schempp Simon GER 2128.1 544.2
## 2128 22 21 Slepov Alexey RUS 2135.7 494.6
## 2129 23 23 Grossegger Sven AUT 2113.8 536.7
## 2130 24 27 Os Alexander NOR 2125.4 536.0
## 2131 25 19 Krcmar Michal CZE 2147.4 551.2
## 2132 26 17 Eberhard Julian AUT 2147.0 535.0
## 2133 27 24 Malyshko Dmitry RUS 2148.3 514.0
## 2134 28 15 Lesser Erik GER 2180.2 573.7
## 2135 29 7 Tsvetkov Maxim RUS 2197.1 530.9
## 2136 30 22 Slesingr Michal CZE 2204.3 563.7
## 2137 1 4 Schempp Simon GER 997.6 508.1
## 2138 2 22 Fourcade Martin FRA 1003.5 494.9
## 2139 3 101 Boe Tarjei NOR 1003.2 505.5
## 2140 4 23 Shipulin Anton RUS 1001.7 498.7
## 2141 5 34 Malyshko Dmitry RUS 1009.7 512.0
## 2142 6 14 Garanichev Evgeniy RUS 1007.2 506.9
## 2143 7 65 Eberhard Julian AUT 1028.4 532.5
## 2144 8 46 Doll Benedikt GER 1026.7 532.8
## 2145 9 28 Desthieux Simon FRA 1015.8 522.9
## 2146 10 3 Svendsen Emil Hegle NOR 1027.1 505.5
## 2147 11 21 Eder Simon AUT 1019.4 517.4
## 2148 12 48 Bailey Lowell USA 1016.8 515.7
## 2149 13 39 Landertinger Dominik AUT 1023.8 534.1
## 2150 14 12 Boe Johannes Thingnes NOR 1029.0 530.3
## 2151 15 32 Lindstroem Fredrik SWE 1026.9 522.5
## 2152 16 10 Bjoerndalen Ole Einar NOR 1024.4 531.8
## 2153 17 36 Anev Krasimir BUL 1019.6 516.9
## 2154 18 15 Smith Nathan CAN 1024.9 530.6
## 2155 19 33 Fillon Maillet Quentin FRA 1037.1 512.7
## 2156 20 7 Semenov Sergii UKR 1031.0 512.9
## 2157 21 19 Birnbacher Andreas GER 1041.2 516.7
## 2158 22 52 Fak Jakov SLO 1047.0 530.5
## 2159 23 78 Hofer Lukas ITA 1041.3 541.6
## 2160 24 35 Moravec Ondrej CZE 1045.7 518.8
## 2161 25 74 Doherty Sean USA 1049.1 532.7
## 2162 26 9 Pidruchnyi Dmytro UKR 1059.3 558.2
## 2163 27 69 Beatrix Jean Guillaume FRA 1053.7 555.3
## 2164 28 38 De Lorenzi Christian ITA 1044.2 546.2
## 2165 29 55 Tsvetkov Maxim RUS 1054.8 523.5
## 2166 30 2 Burke Tim USA 1068.2 551.8
## 2167 31 44 Kazar Matej SVK 1048.3 534.9
## 2168 32 27 Bauer Klemen SLO 1063.9 564.8
## 2169 33 73 Gow Scott CAN 1053.1 537.6
## 2170 34 97 Lapshin Timofei RUS 1061.9 542.9
## 2171 35 31 Green Brendan CAN 1068.6 540.4
## 2172 36 11 Rastorgujevs Andrejs LAT 1054.1 559.2
## 2173 37 49 Otcenas Martin SVK 1072.7 571.1
## 2174 38 42 Slepov Alexey RUS 1075.5 523.8
## 2175 39 5 Grossegger Sven AUT 1060.3 547.0
## 2176 40 17 Weger Benjamin SUI 1076.4 557.8
## 2177 41 93 Jaeger Martin SUI 1072.0 568.0
## 2178 42 1 Windisch Dominik ITA 1081.1 537.4
## 2179 43 95 Lesser Erik GER 1063.0 571.2
## 2180 44 68 Puchianu Cornel ROU 1086.9 546.2
## 2181 45 92 Soukup Jaroslav CZE 1076.1 568.6
## 2182 46 41 Boehm Daniel GER 1066.8 558.1
## 2183 47 20 Dyuzhev Dmitriy BLR 1065.2 547.8
## 2184 48 96 Birkeland Lars Helge NOR 1063.2 534.8
## 2185 49 89 Faur Remus ROU 1079.3 559.6
## 2186 50 102 Mesotitsch Daniel AUT 1075.1 551.9
## 2187 51 106 Janik Mateusz POL 1070.9 530.1
## 2188 52 47 Buta George ROU 1073.9 558.7
## 2189 53 43 Braun Maxim KAZ 1070.9 540.1
## 2190 54 91 Ermits Kalev EST 1084.1 556.4
## 2191 55 105 Nordgren Leif USA 1069.0 570.3
## 2192 56 30 Pryma Artem UKR 1104.8 544.8
## 2193 57 79 Koiv Kauri EST 1074.7 537.8
## 2194 58 76 Bischl Matthias GER 1096.5 571.0
## 2195 59 90 Gow Christian CAN 1082.0 540.7
## 2196 60 61 Armgren Ted SWE 1077.6 561.2
## 2197 61 53 Krupcik Tomas CZE 1102.7 569.7
## 2198 62 70 Roesch Michael BEL 1092.5 562.0
## 2199 63 56 Zhyrnyi Oleksandr UKR 1106.0 550.4
## 2200 64 24 Kaukenas Tomas LTU 1100.8 575.1
## 2201 65 18 Nelin Jesper SWE 1100.8 568.9
## 2202 66 26 Fourcade Simon FRA 1100.7 546.9
## 2203 67 62 Guzik Grzegorz POL 1095.3 579.7
## 2204 68 54 Liadov Yuryi BLR 1104.3 562.4
## 2205 69 57 Finello Jeremy SUI 1105.0 558.9
## 2206 70 40 L'Abee-Lund Henrik NOR 1101.5 599.1
## 2207 71 88 Siemakov Volodymyr UKR 1101.1 567.1
## 2208 72 29 Slesingr Michal CZE 1116.5 593.5
## 2209 73 107 Gerdzhikov Dimitar BUL 1094.3 534.1
## 2210 74 71 Hiidensalo Olli FIN 1105.4 576.0
## 2211 75 108 Guigonnat Antonin FRA 1108.8 574.3
## 2212 76 6 Iliev Vladimir BUL 1133.7 586.1
## 2213 77 37 Yaliotnau Raman BLR 1129.1 595.9
## 2214 78 59 Tachizaki Mikito JPN 1118.9 585.9
## 2215 79 94 Chepelin Vladimir BLR 1124.4 589.0
## 2216 80 51 Lessing Roland EST 1108.6 573.4
## 2217 81 67 Gronman Tuomas FIN 1109.9 595.7
## 2218 82 98 Kobonoki Tsukasa JPN 1114.8 563.5
## 2219 83 80 Dombrovski Karol LTU 1128.8 600.0
## 2220 84 58 Sinapov Anton BUL 1131.7 588.4
## 2221 85 45 Wiestner Serafin SUI 1143.3 571.5
## 2222 86 104 Bormolini Thomas ITA 1133.7 584.6
## 2223 87 16 Savitskiy Yan KAZ 1126.4 548.0
## 2224 88 8 Hasilla Tomas SVK 1121.7 612.1
## 2225 89 13 Krcmar Michal CZE 1144.5 559.4
## 2226 90 66 Podkorytov Vassiliy KAZ 1143.0 553.7
## 2227 91 99 Joller Ivan SUI 1132.4 587.2
## 2228 92 85 Remmelg Martin EST 1125.4 605.5
## 2229 93 25 Davies Macx CAN 1150.1 609.6
## 2230 94 82 Dixon Scott GBR 1128.5 586.2
## 2231 95 50 Laponder Marcel GBR 1127.2 572.7
## 2232 96 86 Matiasko Miroslav SVK 1150.6 592.9
## 2233 97 87 Strolia Vytautas LTU 1160.7 605.0
## 2234 98 100 Oblak Lenart SLO 1135.8 577.8
## 2235 99 81 Dovzan Miha SLO 1163.1 610.7
## 2236 100 72 Szczurek Lukasz POL 1147.4 573.8
## 2237 101 84 Hakala Matti FIN 1147.9 586.8
## 2238 102 77 Slotins Roberts LAT 1144.7 595.9
## 2239 103 64 Trsan Rok SLO 1178.2 578.5
## 2240 104 83 Femling Peppe SWE 1148.3 607.2
## 2241 105 75 Rastic Damir SRB 1181.9 653.7
## 2242 106 103 Deksnis Ingus LAT 1189.6 636.3
## 2243 107 63 Kim Jongmin KOR 1219.1 581.6
## 2244 108 60 Morton Damon AUS 1344.2 686.6
## 2245 1 2 Fourcade Martin FRA 1557.1 379.0
## 2246 2 1 Schempp Simon GER 1561.0 388.4
## 2247 3 4 Shipulin Anton RUS 1569.8 382.1
## 2248 4 3 Boe Tarjei NOR 1582.2 403.4
## 2249 5 13 Landertinger Dominik AUT 1589.9 383.6
## 2250 6 16 Bjoerndalen Ole Einar NOR 1607.2 408.7
## 2251 7 10 Svendsen Emil Hegle NOR 1612.8 412.5
## 2252 8 19 Fillon Maillet Quentin FRA 1612.0 383.0
## 2253 9 21 Birnbacher Andreas GER 1612.9 397.6
## 2254 10 22 Fak Jakov SLO 1623.3 406.3
## 2255 11 29 Tsvetkov Maxim RUS 1628.8 391.2
## 2256 12 11 Eder Simon AUT 1628.3 431.1
## 2257 13 12 Bailey Lowell USA 1621.7 395.1
## 2258 14 6 Garanichev Evgeniy RUS 1638.7 413.1
## 2259 15 20 Semenov Sergii UKR 1632.3 391.5
## 2260 16 5 Malyshko Dmitry RUS 1636.9 409.5
## 2261 17 15 Lindstroem Fredrik SWE 1658.4 419.6
## 2262 18 18 Smith Nathan CAN 1656.6 427.2
## 2263 19 8 Doll Benedikt GER 1668.5 440.2
## 2264 20 24 Moravec Ondrej CZE 1667.9 394.1
## 2265 21 23 Hofer Lukas ITA 1649.9 400.0
## 2266 22 9 Desthieux Simon FRA 1665.4 401.3
## 2267 23 14 Boe Johannes Thingnes NOR 1675.9 431.8
## 2268 24 40 Weger Benjamin SUI 1680.1 392.1
## 2269 25 43 Lesser Erik GER 1678.7 400.0
## 2270 26 36 Rastorgujevs Andrejs LAT 1691.8 430.5
## 2271 27 30 Burke Tim USA 1701.0 437.6
## 2272 28 27 Beatrix Jean Guillaume FRA 1706.6 394.2
## 2273 29 38 Slepov Alexey RUS 1717.9 407.7
## 2274 30 7 Eberhard Julian AUT 1731.0 472.2
## 2275 31 39 Grossegger Sven AUT 1744.1 442.7
## 2276 32 32 Bauer Klemen SLO 1740.8 442.5
## 2277 33 28 De Lorenzi Christian ITA 1728.1 418.4
## 2278 34 35 Green Brendan CAN 1747.8 403.0
## 2279 35 25 Doherty Sean USA 1750.0 438.8
## 2280 36 37 Otcenas Martin SVK 1754.8 402.3
## 2281 37 17 Anev Krasimir BUL 1749.1 450.3
## 2282 38 56 Pryma Artem UKR 1768.0 418.2
## 2283 39 59 Gow Christian CAN 1767.5 407.7
## 2284 40 45 Soukup Jaroslav CZE 1766.3 417.4
## 2285 41 34 Lapshin Timofei RUS 1770.5 434.7
## 2286 42 49 Faur Remus ROU 1763.1 412.7
## 2287 43 42 Windisch Dominik ITA 1786.5 437.2
## 2288 44 26 Pidruchnyi Dmytro UKR 1776.0 457.8
## 2289 45 33 Gow Scott CAN 1805.0 404.9
## 2290 46 54 Ermits Kalev EST 1803.7 409.4
## 2291 47 50 Mesotitsch Daniel AUT 1795.4 427.1
## 2292 48 47 Dyuzhev Dmitriy BLR 1820.8 453.0
## 2293 49 58 Bischl Matthias GER 1812.1 452.7
## 2294 50 41 Jaeger Martin SUI 1812.5 431.5
## 2295 51 52 Buta George ROU 1834.4 433.8
## 2296 52 55 Nordgren Leif USA 1822.7 432.3
## 2297 53 31 Kazar Matej SVK 1858.2 432.7
## 2298 54 57 Koiv Kauri EST 1843.8 487.6
## 2299 55 46 Boehm Daniel GER 1890.2 449.6
## 2300 56 53 Braun Maxim KAZ 1895.3 475.1
## 2301 57 60 Armgren Ted SWE 1904.3 441.0
## 2302 58 51 Janik Mateusz POL 1918.6 454.2
## 2303 59 44 Puchianu Cornel ROU 2017.5 508.8
## 2304 1 40 Eberhard Julian AUT 1012.9 514.6
## 2305 2 21 Schempp Simon GER 1014.8 504.6
## 2306 3 13 Peiffer Arnd GER 1030.8 524.8
## 2307 4 3 Landertinger Dominik AUT 1042.5 524.4
## 2308 5 34 Lesser Erik GER 1043.4 528.1
## 2309 6 4 Burke Tim USA 1061.3 547.5
## 2310 7 25 Boe Johannes Thingnes NOR 1059.9 520.1
## 2311 8 7 Doll Benedikt GER 1061.2 546.2
## 2312 9 9 Rastorgujevs Andrejs LAT 1057.2 547.2
## 2313 10 35 Windisch Dominik ITA 1072.1 544.2
## 2314 11 44 Weger Benjamin SUI 1064.9 546.6
## 2315 12 43 Slesingr Michal CZE 1072.5 526.7
## 2316 13 45 Zhyrnyi Oleksandr UKR 1064.6 542.2
## 2317 14 8 Semenov Sergii UKR 1070.0 547.7
## 2318 14 22 Lindstroem Fredrik SWE 1082.7 561.8
## 2319 16 59 Sinapov Anton BUL 1071.1 538.6
## 2320 17 26 Hofer Lukas ITA 1074.0 537.2
## 2321 18 14 Kilchytskyy Vitaliy UKR 1074.6 537.6
## 2322 19 38 Desthieux Simon FRA 1082.8 565.1
## 2323 20 30 Fillon Maillet Quentin FRA 1072.6 535.4
## 2324 21 54 Doherty Sean USA 1095.6 519.6
## 2325 22 46 Chepelin Vladimir BLR 1098.0 554.8
## 2326 23 2 Slepov Alexey RUS 1111.6 564.5
## 2327 24 18 Volkov Alexey RUS 1094.4 565.6
## 2328 25 24 Moravec Ondrej CZE 1096.1 553.9
## 2329 26 75 Dyuzhev Dmitriy BLR 1095.8 573.6
## 2330 27 57 Soukup Jaroslav CZE 1095.9 560.0
## 2331 28 15 Savitskiy Yan KAZ 1095.7 565.7
## 2332 29 5 Garanichev Evgeniy RUS 1098.3 528.8
## 2333 30 87 Siemakov Volodymyr UKR 1102.4 547.5
## 2334 31 36 Bailey Lowell USA 1098.9 555.1
## 2335 32 58 Nelin Jesper SWE 1102.6 545.3
## 2336 33 66 Graf Florian GER 1081.0 547.0
## 2337 34 1 Darozhka Aliaksandr BLR 1103.2 579.8
## 2338 35 17 Boe Tarjei NOR 1111.2 574.9
## 2339 36 72 Yaliotnau Raman BLR 1116.8 580.6
## 2340 37 74 Bischl Matthias GER 1090.9 569.9
## 2341 38 11 Eder Simon AUT 1108.4 549.0
## 2342 39 27 Krcmar Michal CZE 1116.9 558.3
## 2343 40 42 Fourcade Martin FRA 1116.8 542.3
## 2344 41 19 Bjoerndalen Ole Einar NOR 1096.4 556.3
## 2345 42 23 Green Brendan CAN 1106.9 578.8
## 2346 43 28 Iliev Vladimir BUL 1128.5 557.2
## 2347 44 31 Tsvetkov Maxim RUS 1114.8 590.8
## 2348 45 29 Shipulin Anton RUS 1097.8 568.1
## 2349 46 16 Anev Krasimir BUL 1110.6 583.5
## 2350 47 76 Pinter Friedrich AUT 1115.5 586.5
## 2351 48 32 Stenersen Torstein SWE 1114.8 580.7
## 2352 49 63 Waeger Lorenz AUT 1119.6 561.0
## 2353 50 51 Hasilla Tomas SVK 1107.6 565.7
## 2354 51 48 Tkalenko Ruslan UKR 1132.3 593.1
## 2355 52 49 Dombrovski Karol LTU 1116.7 570.5
## 2356 53 6 Wiestner Serafin SUI 1137.7 567.3
## 2357 54 50 Hiidensalo Olli FIN 1131.4 598.1
## 2358 55 41 Malyshko Dmitry RUS 1151.3 568.3
## 2359 56 78 Pashchenko Petr RUS 1136.1 588.0
## 2360 57 61 Zahkna Rene EST 1129.8 552.6
## 2361 58 60 Eliseev Matvey RUS 1111.3 544.5
## 2362 59 82 Pantov Anton KAZ 1128.1 573.4
## 2363 60 62 Beatrix Jean Guillaume FRA 1138.0 585.1
## 2364 61 77 Nagai Junji JPN 1125.8 567.9
## 2365 62 68 Lee Inbok KOR 1134.2 588.5
## 2366 63 73 Gronman Tuomas FIN 1146.7 579.7
## 2367 64 79 Buta George ROU 1137.8 568.7
## 2368 65 52 Dolder Mario SUI 1153.7 625.1
## 2369 66 37 Otcenas Martin SVK 1149.4 591.1
## 2370 67 67 Puchianu Cornel ROU 1161.0 600.5
## 2371 68 53 Faur Remus ROU 1161.3 590.1
## 2372 69 10 Kazar Matej SVK 1183.4 571.7
## 2373 70 20 Fourcade Simon FRA 1188.5 596.4
## 2374 71 81 Slotins Roberts LAT 1156.4 602.9
## 2375 72 85 Vaclavik Adam CZE 1186.7 614.1
## 2376 73 33 Davies Macx CAN 1170.2 615.2
## 2377 74 12 Kaukenas Tomas LTU 1194.0 623.6
## 2378 75 47 Koiv Kauri EST 1188.4 612.7
## 2379 76 65 Gow Scott CAN 1183.0 613.3
## 2380 77 70 Patrijuks Aleksandrs LAT 1209.8 615.3
## 2381 78 83 Gerdzhikov Dimitar BUL 1196.2 587.2
## 2382 79 71 Dovzan Miha SLO 1195.3 595.5
## 2383 80 69 Tachizaki Mikito JPN 1222.5 627.6
## 2384 81 55 Braun Maxim KAZ 1204.4 597.4
## 2385 82 80 Treier Jan EST 1197.2 625.7
## 2386 83 84 Strolia Vytautas LTU 1250.3 652.7
## 2387 84 64 Laponder Marcel GBR 1272.9 625.7
## 2388 1 2 Schempp Simon GER 1674.9 434.8
## 2389 2 7 Boe Johannes Thingnes NOR 1671.5 431.7
## 2390 3 5 Lesser Erik GER 1682.2 435.5
## 2391 4 11 Weger Benjamin SUI 1682.7 418.0
## 2392 5 8 Doll Benedikt GER 1697.5 408.2
## 2393 6 6 Burke Tim USA 1698.6 436.8
## 2394 7 15 Lindstroem Fredrik SWE 1701.3 414.0
## 2395 8 4 Landertinger Dominik AUT 1708.1 461.9
## 2396 9 3 Peiffer Arnd GER 1719.4 453.6
## 2397 10 12 Slesingr Michal CZE 1717.0 420.2
## 2398 11 38 Eder Simon AUT 1726.5 403.9
## 2399 12 35 Boe Tarjei NOR 1748.2 429.6
## 2400 13 9 Rastorgujevs Andrejs LAT 1741.4 448.0
## 2401 14 29 Garanichev Evgeniy RUS 1746.8 406.3
## 2402 15 14 Semenov Sergii UKR 1746.1 424.4
## 2403 16 10 Windisch Dominik ITA 1771.4 438.8
## 2404 17 39 Krcmar Michal CZE 1773.7 417.3
## 2405 18 1 Eberhard Julian AUT 1770.9 444.2
## 2406 19 13 Zhyrnyi Oleksandr UKR 1757.1 446.5
## 2407 20 45 Shipulin Anton RUS 1783.5 434.2
## 2408 21 17 Hofer Lukas ITA 1780.7 417.4
## 2409 22 31 Bailey Lowell USA 1774.4 428.7
## 2410 23 19 Desthieux Simon FRA 1791.0 419.4
## 2411 24 34 Darozhka Aliaksandr BLR 1793.8 440.4
## 2412 25 25 Moravec Ondrej CZE 1804.9 437.5
## 2413 26 27 Soukup Jaroslav CZE 1804.5 447.4
## 2414 27 23 Slepov Alexey RUS 1825.3 416.8
## 2415 28 18 Kilchytskyy Vitaliy UKR 1805.9 429.1
## 2416 29 32 Nelin Jesper SWE 1819.1 463.1
## 2417 30 16 Sinapov Anton BUL 1811.6 459.3
## 2418 31 24 Volkov Alexey RUS 1817.4 446.3
## 2419 32 21 Doherty Sean USA 1836.7 437.4
## 2420 33 55 Malyshko Dmitry RUS 1839.5 412.2
## 2421 34 30 Siemakov Volodymyr UKR 1840.7 440.1
## 2422 35 58 Eliseev Matvey RUS 1814.1 419.3
## 2423 36 42 Green Brendan CAN 1837.2 452.6
## 2424 37 46 Anev Krasimir BUL 1849.6 472.4
## 2425 38 26 Dyuzhev Dmitriy BLR 1858.9 463.2
## 2426 39 48 Stenersen Torstein SWE 1843.6 454.0
## 2427 40 56 Pashchenko Petr RUS 1860.2 421.0
## 2428 41 37 Bischl Matthias GER 1852.7 449.2
## 2429 42 51 Tkalenko Ruslan UKR 1867.6 438.2
## 2430 43 43 Iliev Vladimir BUL 1877.7 439.0
## 2431 44 44 Tsvetkov Maxim RUS 1869.9 442.9
## 2432 45 36 Yaliotnau Raman BLR 1890.5 470.5
## 2433 46 33 Graf Florian GER 1880.9 442.8
## 2434 47 22 Chepelin Vladimir BLR 1914.3 494.7
## 2435 48 60 Beatrix Jean Guillaume FRA 1906.1 440.8
## 2436 49 54 Hiidensalo Olli FIN 1935.0 436.0
## 2437 50 49 Waeger Lorenz AUT 1947.5 442.7
## 2438 51 47 Pinter Friedrich AUT 1977.1 485.1
## 2439 52 52 Dombrovski Karol LTU 1995.3 480.5
## 2440 53 57 Zahkna Rene EST 2014.8 497.1
## 2441 1 6 Fourcade Martin FRA 1014.6 507.4
## 2442 2 66 Peiffer Arnd GER 1046.5 540.5
## 2443 3 40 Bjoerndalen Ole Einar NOR 1059.4 529.9
## 2444 4 45 Fillon Maillet Quentin FRA 1069.8 531.2
## 2445 5 47 Doll Benedikt GER 1074.9 577.5
## 2446 6 1 Boe Johannes Thingnes NOR 1065.4 545.0
## 2447 7 14 Svendsen Emil Hegle NOR 1076.5 576.4
## 2448 8 30 Pidruchnyi Dmytro UKR 1073.1 564.5
## 2449 9 17 Smith Nathan CAN 1078.7 556.8
## 2450 10 99 Davies Macx CAN 1083.8 545.0
## 2451 11 5 Grossegger Sven AUT 1084.3 576.5
## 2452 12 55 L'Abee-Lund Henrik NOR 1109.8 574.5
## 2453 13 82 Krcmar Michal CZE 1113.3 556.2
## 2454 14 105 Boehm Daniel GER 1111.6 576.0
## 2455 15 86 Yaliotnau Raman BLR 1112.0 587.2
## 2456 16 43 Weger Benjamin SUI 1127.5 574.4
## 2457 16 87 Nelin Jesper SWE 1095.7 560.4
## 2458 18 13 Slepov Alexey RUS 1126.5 593.2
## 2459 19 27 Eder Simon AUT 1117.2 589.2
## 2460 20 24 Anev Krasimir BUL 1122.5 583.3
## 2461 21 9 Iliev Vladimir BUL 1123.8 542.2
## 2462 21 22 Desthieux Simon FRA 1122.2 594.6
## 2463 23 8 Kazar Matej SVK 1115.4 563.3
## 2464 24 33 Slesingr Michal CZE 1129.5 548.3
## 2465 25 88 Doherty Sean USA 1118.0 581.2
## 2466 26 81 Siemakov Volodymyr UKR 1123.6 595.0
## 2467 27 49 Garanichev Evgeniy RUS 1135.7 624.5
## 2468 28 25 Otcenas Martin SVK 1134.6 598.3
## 2469 29 20 Boe Tarjei NOR 1145.2 630.2
## 2470 30 42 Lesser Erik GER 1136.4 573.6
## 2471 31 78 Beatrix Jean Guillaume FRA 1152.3 592.7
## 2472 32 46 Shipulin Anton RUS 1140.7 583.6
## 2473 33 106 Braun Maxim KAZ 1115.1 548.9
## 2474 34 74 Malyshko Dmitry RUS 1144.4 587.4
## 2475 35 103 Lapshin Timofei RUS 1119.5 598.1
## 2476 36 57 Mesotitsch Daniel AUT 1127.5 579.8
## 2477 37 62 Kaukenas Tomas LTU 1123.5 595.7
## 2478 38 97 Krupcik Tomas CZE 1141.6 617.5
## 2479 39 84 Hasilla Tomas SVK 1131.7 614.9
## 2480 40 52 Moravec Ondrej CZE 1153.2 636.5
## 2481 41 4 De Lorenzi Christian ITA 1127.7 579.0
## 2482 42 29 Bauer Klemen SLO 1149.6 583.8
## 2483 43 48 Fak Jakov SLO 1153.6 552.6
## 2484 44 36 Tsvetkov Maxim RUS 1150.9 613.0
## 2485 45 63 Burke Tim USA 1157.3 617.2
## 2486 46 61 Sinapov Anton BUL 1135.9 609.0
## 2487 47 3 Birnbacher Andreas GER 1155.5 570.8
## 2488 48 93 Eberhard Julian AUT 1173.2 610.1
## 2489 49 10 Fourcade Simon FRA 1169.1 616.9
## 2490 50 12 Pryma Artem UKR 1183.1 583.2
## 2491 51 28 Puchianu Cornel ROU 1153.7 594.5
## 2492 52 18 Semenov Sergii UKR 1172.7 612.1
## 2493 53 11 Rastorgujevs Andrejs LAT 1173.2 647.3
## 2494 54 35 Soukup Jaroslav CZE 1182.6 607.4
## 2495 55 2 Green Brendan CAN 1173.4 601.7
## 2496 56 38 Lindstroem Fredrik SWE 1173.1 619.8
## 2497 57 32 Landertinger Dominik AUT 1174.6 599.1
## 2498 58 83 Birkeland Lars Helge NOR 1181.2 595.9
## 2499 59 44 Savitskiy Yan KAZ 1166.4 595.4
## 2500 60 95 Tachizaki Mikito JPN 1172.5 558.7
## 2501 61 19 Chepelin Vladimir BLR 1189.9 624.8
## 2502 62 23 Liadov Yuryi BLR 1176.8 661.0
## 2503 63 80 Hiidensalo Olli FIN 1184.5 611.8
## 2504 64 15 Nordgren Leif USA 1186.7 614.3
## 2505 65 70 Dyuzhev Dmitriy BLR 1200.0 571.7
## 2506 66 39 Wiestner Serafin SUI 1194.1 617.6
## 2507 67 34 Gow Scott CAN 1212.6 602.6
## 2508 68 26 Bailey Lowell USA 1200.1 656.1
## 2509 69 60 Armgren Ted SWE 1207.7 600.6
## 2510 70 64 Gow Christian CAN 1211.6 626.7
## 2511 71 77 Hofer Lukas ITA 1212.6 687.7
## 2512 72 76 Matiasko Miroslav SVK 1225.3 644.8
## 2513 73 37 Windisch Dominik ITA 1230.9 669.2
## 2514 74 68 Trsan Rok SLO 1222.0 639.3
## 2515 75 104 Jaeger Martin SUI 1219.9 645.9
## 2516 76 96 Guigonnat Antonin FRA 1232.0 625.3
## 2517 77 31 Schempp Simon GER 1248.6 630.8
## 2518 78 79 Finello Jeremy SUI 1228.1 623.6
## 2519 79 65 Oblak Lenart SLO 1204.9 641.7
## 2520 80 21 Femling Peppe SWE 1204.4 654.8
## 2521 81 98 Gronman Tuomas FIN 1176.8 595.5
## 2522 82 73 Hakala Matti FIN 1211.0 610.8
## 2523 83 50 Buta George ROU 1241.0 685.0
## 2524 84 41 Koiv Kauri EST 1211.0 652.1
## 2525 85 16 Ermits Kalev EST 1234.8 660.8
## 2526 86 92 Faur Remus ROU 1244.9 682.1
## 2527 87 58 Guzik Grzegorz POL 1222.9 604.1
## 2528 88 94 Kilchytskyy Vitaliy UKR 1251.9 663.8
## 2529 89 100 Slotins Roberts LAT 1236.9 639.6
## 2530 90 89 Dovzan Miha SLO 1251.1 644.2
## 2531 91 69 Kim Jongmin KOR 1236.3 633.3
## 2532 92 102 Bormolini Thomas ITA 1254.3 668.9
## 2533 93 91 Janik Mateusz POL 1265.4 632.8
## 2534 94 51 Szczurek Lukasz POL 1262.7 681.9
## 2535 94 75 Dombrovski Karol LTU 1250.8 664.2
## 2536 96 72 Kobonoki Tsukasa JPN 1298.6 670.1
## 2537 97 90 Laponder Marcel GBR 1279.7 627.2
## 2538 98 53 Remmelg Martin EST 1295.0 630.3
## 2539 99 101 Kletcherov Michail BUL 1281.6 691.4
## 2540 100 59 Dixon Scott GBR 1286.7 677.8
## 2541 101 56 Lusa Daumants LAT 1276.9 676.1
## 2542 102 71 Pantov Anton KAZ 1354.9 696.9
## 2543 103 85 Strolia Vytautas LTU 1331.2 710.0
## 2544 1 81 Bjoerndalen Ole Einar NOR 2467.5 631.6
## 2545 2 30 Schempp Simon GER 2503.5 617.2
## 2546 3 58 Volkov Alexey RUS 2486.3 631.3
## 2547 4 22 Svendsen Emil Hegle NOR 2580.9 620.2
## 2548 4 23 Fillon Maillet Quentin FRA 2568.2 610.1
## 2549 6 64 Fourcade Simon FRA 2585.4 685.5
## 2550 7 24 Eder Simon AUT 2588.3 685.3
## 2551 8 39 Landertinger Dominik AUT 2603.6 737.1
## 2552 9 100 Birkeland Lars Helge NOR 2592.4 631.4
## 2553 10 3 Semenov Sergii UKR 2596.8 621.9
## 2554 11 15 L'Abee-Lund Henrik NOR 2609.1 697.8
## 2555 12 102 Birnbacher Andreas GER 2597.5 641.9
## 2556 13 94 Mesotitsch Daniel AUT 2620.1 715.2
## 2557 14 41 Lindstroem Fredrik SWE 2638.3 637.4
## 2558 15 87 Desthieux Simon FRA 2654.5 624.6
## 2559 16 21 Shipulin Anton RUS 2641.0 623.3
## 2560 17 88 Doherty Sean USA 2655.0 636.5
## 2561 18 98 Babikov Anton RUS 2641.0 644.0
## 2562 19 33 Boe Johannes Thingnes NOR 2660.9 688.0
## 2563 20 44 Pryma Artem UKR 2650.1 690.7
## 2564 21 67 Fourcade Martin FRA 2674.7 786.8
## 2565 22 35 Boe Tarjei NOR 2679.1 670.3
## 2566 23 18 Chepelin Vladimir BLR 2667.5 647.4
## 2567 24 26 Bailey Lowell USA 2661.1 764.3
## 2568 25 79 Dyuzhev Dmitriy BLR 2674.8 693.0
## 2569 26 32 Tsvetkov Maxim RUS 2695.3 683.8
## 2570 27 28 Smith Nathan CAN 2691.0 676.9
## 2571 28 31 Soukup Jaroslav CZE 2695.7 697.3
## 2572 29 29 Savitskiy Yan KAZ 2668.3 635.5
## 2573 30 76 Beatrix Jean Guillaume FRA 2689.2 752.6
## 2574 31 14 Garanichev Evgeniy RUS 2700.8 740.9
## 2575 32 38 Malyshko Dmitry RUS 2704.4 618.3
## 2576 33 55 Buta George ROU 2694.8 655.6
## 2577 34 42 Windisch Dominik ITA 2703.9 736.5
## 2578 35 8 Moravec Ondrej CZE 2719.8 702.4
## 2579 36 37 Bauer Klemen SLO 2738.6 622.1
## 2580 37 66 Burke Tim USA 2718.2 643.9
## 2581 38 34 Wiestner Serafin SUI 2736.1 703.0
## 2582 39 48 Lesser Erik GER 2737.9 753.3
## 2583 40 25 Weger Benjamin SUI 2737.3 653.2
## 2584 41 50 Kaukenas Tomas LTU 2733.5 718.4
## 2585 42 73 De Lorenzi Christian ITA 2725.7 715.1
## 2586 43 19 Grossegger Sven AUT 2717.8 666.8
## 2587 44 80 Dombrovski Karol LTU 2728.7 714.7
## 2588 45 9 Femling Peppe SWE 2757.7 718.1
## 2589 46 2 Doll Benedikt GER 2790.8 798.4
## 2590 47 101 Dovzan Miha SLO 2741.9 678.0
## 2591 48 46 Lessing Roland EST 2747.1 730.6
## 2592 49 56 Armgren Ted SWE 2773.2 646.8
## 2593 50 40 Zhyrnyi Oleksandr UKR 2742.6 734.8
## 2594 51 36 Peiffer Arnd GER 2766.3 705.4
## 2595 52 82 Finello Jeremy SUI 2776.6 755.7
## 2596 53 20 Slesingr Michal CZE 2795.4 625.0
## 2597 54 99 Arwidson Tobias SWE 2744.4 718.4
## 2598 55 70 Gerdzhikov Dimitar BUL 2768.0 650.7
## 2599 56 89 Remmelg Martin EST 2756.3 733.4
## 2600 57 52 Eberhard Julian AUT 2814.7 744.9
## 2601 58 57 Krupcik Tomas CZE 2774.1 726.4
## 2602 59 86 Matiasko Miroslav SVK 2772.5 782.3
## 2603 60 11 Otcenas Martin SVK 2826.1 756.1
## 2604 61 45 Kazar Matej SVK 2802.0 768.2
## 2605 62 47 Gow Christian CAN 2805.5 763.9
## 2606 63 6 Guigonnat Antonin FRA 2834.4 824.8
## 2607 64 91 Partalov Dimitar BUL 2819.5 678.7
## 2608 65 59 Guzik Grzegorz POL 2816.3 798.2
## 2609 66 10 Iliev Vladimir BUL 2885.6 741.4
## 2610 67 61 Trsan Rok SLO 2833.3 668.7
## 2611 68 27 Liadov Yuryi BLR 2857.1 674.5
## 2612 69 60 Szczurek Lukasz POL 2825.5 684.8
## 2613 70 1 Krcmar Michal CZE 2890.9 765.5
## 2614 71 104 Strolia Vytautas LTU 2850.6 748.5
## 2615 72 17 Joller Ivan SUI 2860.2 781.5
## 2616 73 63 Oblak Lenart SLO 2853.5 746.2
## 2617 74 16 Bormolini Thomas ITA 2908.0 718.3
## 2618 75 90 Siemakov Volodymyr UKR 2891.7 719.8
## 2619 76 51 Boehm Daniel GER 2908.2 770.7
## 2620 77 13 Green Brendan CAN 2900.6 775.1
## 2621 78 4 Fak Jakov SLO 2934.4 825.8
## 2622 79 53 Pantov Anton KAZ 2901.5 856.1
## 2623 80 84 Penar Rafal POL 2904.2 803.0
## 2624 81 12 Ermits Kalev EST 2952.3 713.1
## 2625 82 77 Rusinov Dmytro UKR 2910.6 735.3
## 2626 83 74 Lusa Daumants LAT 2899.5 776.3
## 2627 84 69 Hasilla Tomas SVK 2975.6 794.6
## 2628 85 85 Davies Macx CAN 2941.8 804.3
## 2629 86 7 Gow Scott CAN 3007.5 756.8
## 2630 87 96 Bocharnikov Sergey BLR 2976.0 790.3
## 2631 88 83 Hiidensalo Olli FIN 2989.1 692.7
## 2632 89 43 Puchianu Cornel ROU 3037.4 812.6
## 2633 90 54 Koiv Kauri EST 3019.9 857.8
## 2634 91 62 Rastic Damir SRB 3019.1 778.3
## 2635 92 93 Podkorytov Vassiliy KAZ 3066.2 710.2
## 2636 93 49 Hakala Matti FIN 3091.1 824.2
## 2637 94 103 Kobonoki Tsukasa JPN 3098.8 800.6
## 2638 95 71 Kletcherov Michail BUL 3088.6 897.8
## 2639 96 92 Serban Denis ROU 3157.5 799.5
## 2640 97 72 Dixon Scott GBR 3140.5 679.1
## 2641 98 106 Laponder Marcel GBR 3120.1 829.5
## 2642 99 65 Tachizaki Mikito JPN 3166.2 826.7
## 2643 100 68 Langer Thorsten BEL 3144.8 814.7
## 2644 101 75 Kim Yonggyu KOR 3221.4 837.5
## 2645 102 97 Slotins Roberts LAT 3234.3 948.1
## 2646 103 78 Puzulis Rolands LAT 3250.8 860.9
## 2647 104 5 Nordgren Leif USA 3429.8 720.1
## 2648 1 1 Fourcade Martin FRA 1542.4 391.7
## 2649 2 2 Peiffer Arnd GER 1608.6 381.3
## 2650 3 4 Fillon Maillet Quentin FRA 1628.7 399.1
## 2651 4 29 Boe Tarjei NOR 1652.0 364.6
## 2652 5 7 Svendsen Emil Hegle NOR 1641.6 397.4
## 2653 6 5 Doll Benedikt GER 1650.1 403.8
## 2654 7 34 Malyshko Dmitry RUS 1654.3 366.3
## 2655 8 27 Garanichev Evgeniy RUS 1643.6 381.5
## 2656 9 8 Pidruchnyi Dmytro UKR 1654.7 382.3
## 2657 10 9 Smith Nathan CAN 1653.1 396.2
## 2658 11 3 Bjoerndalen Ole Einar NOR 1664.6 367.9
## 2659 12 19 Eder Simon AUT 1664.1 401.5
## 2660 13 18 Slepov Alexey RUS 1681.9 389.7
## 2661 14 49 Fourcade Simon FRA 1682.7 371.5
## 2662 15 32 Shipulin Anton RUS 1672.4 403.3
## 2663 16 6 Boe Johannes Thingnes NOR 1699.7 364.8
## 2664 17 21 Iliev Vladimir BUL 1697.8 374.6
## 2665 18 47 Birnbacher Andreas GER 1702.6 370.5
## 2666 19 40 Moravec Ondrej CZE 1704.6 382.0
## 2667 20 24 Slesingr Michal CZE 1713.4 423.2
## 2668 21 22 Desthieux Simon FRA 1712.9 408.2
## 2669 22 39 Hasilla Tomas SVK 1706.1 380.8
## 2670 23 11 Grossegger Sven AUT 1705.2 404.0
## 2671 24 13 Krcmar Michal CZE 1719.7 408.0
## 2672 25 58 Birkeland Lars Helge NOR 1720.7 370.6
## 2673 26 20 Anev Krasimir BUL 1710.2 405.1
## 2674 27 30 Lesser Erik GER 1717.8 427.9
## 2675 28 31 Beatrix Jean Guillaume FRA 1729.7 421.9
## 2676 29 42 Bauer Klemen SLO 1728.5 405.5
## 2677 30 10 Davies Macx CAN 1734.3 417.3
## 2678 31 44 Tsvetkov Maxim RUS 1750.0 408.2
## 2679 32 14 Boehm Daniel GER 1745.0 431.5
## 2680 33 35 Lapshin Timofei RUS 1752.1 388.4
## 2681 34 41 De Lorenzi Christian ITA 1750.2 395.0
## 2682 35 23 Kazar Matej SVK 1754.6 418.9
## 2683 36 53 Rastorgujevs Andrejs LAT 1756.1 409.5
## 2684 37 56 Lindstroem Fredrik SWE 1779.8 439.2
## 2685 38 55 Green Brendan CAN 1780.9 387.1
## 2686 39 45 Burke Tim USA 1776.3 387.3
## 2687 40 26 Siemakov Volodymyr UKR 1781.7 391.7
## 2688 41 57 Landertinger Dominik AUT 1796.6 386.0
## 2689 42 38 Krupcik Tomas CZE 1785.9 407.9
## 2690 43 17 Nelin Jesper SWE 1790.9 453.0
## 2691 44 50 Pryma Artem UKR 1784.6 391.2
## 2692 45 48 Eberhard Julian AUT 1813.6 471.0
## 2693 46 25 Doherty Sean USA 1806.8 430.3
## 2694 47 12 L'Abee-Lund Henrik NOR 1804.5 441.2
## 2695 48 33 Braun Maxim KAZ 1800.7 401.1
## 2696 49 37 Kaukenas Tomas LTU 1837.3 460.3
## 2697 50 28 Otcenas Martin SVK 1845.4 494.9
## 2698 51 60 Tachizaki Mikito JPN 1839.3 392.3
## 2699 52 15 Yaliotnau Raman BLR 1854.8 416.9
## 2700 53 59 Savitskiy Yan KAZ 1850.4 386.1
## 2701 54 43 Fak Jakov SLO 1871.5 395.8
## 2702 55 51 Puchianu Cornel ROU 1868.9 399.7
## 2703 56 54 Soukup Jaroslav CZE 1865.3 415.9
## 2704 57 52 Semenov Sergii UKR 1873.9 386.6
## 2705 58 36 Mesotitsch Daniel AUT 1871.4 416.8
## 2706 59 16 Weger Benjamin SUI 1900.6 422.3
## 2707 60 46 Sinapov Anton BUL 1932.7 470.6
## 2708 1 8 Fourcade Martin FRA 1026.8 514.5
## 2709 2 53 Bjoerndalen Ole Einar NOR 1037.1 523.9
## 2710 3 69 Semenov Sergii UKR 1042.3 528.6
## 2711 4 58 Boe Johannes Thingnes NOR 1052.5 543.6
## 2712 5 34 Windisch Dominik ITA 1064.9 521.6
## 2713 6 9 Garanichev Evgeniy RUS 1051.5 542.1
## 2714 7 47 Peiffer Arnd GER 1050.0 531.1
## 2715 8 84 Schempp Simon GER 1054.3 522.7
## 2716 9 81 Landertinger Dominik AUT 1062.4 526.3
## 2717 10 45 Iliev Vladimir BUL 1073.5 548.1
## 2718 11 76 Wiestner Serafin SUI 1058.6 552.6
## 2719 12 82 Desthieux Simon FRA 1075.4 558.9
## 2720 13 33 Chepelin Vladimir BLR 1087.3 542.7
## 2721 14 35 Burke Tim USA 1080.0 553.8
## 2722 15 83 Slesingr Michal CZE 1078.6 538.2
## 2723 16 12 Fillon Maillet Quentin FRA 1081.8 528.5
## 2724 17 87 Svendsen Emil Hegle NOR 1063.1 549.8
## 2725 18 91 Nordgren Leif USA 1066.1 542.7
## 2726 19 80 Lesser Erik GER 1103.5 579.5
## 2727 20 24 Rastorgujevs Andrejs LAT 1081.6 575.2
## 2728 21 73 Kaukenas Tomas LTU 1086.0 556.9
## 2729 22 93 Pryma Artem UKR 1082.1 561.4
## 2730 23 30 Babikov Anton RUS 1062.6 544.5
## 2731 24 101 Krcmar Michal CZE 1091.5 541.9
## 2732 25 65 Otcenas Martin SVK 1088.9 568.8
## 2733 26 96 Puchianu Cornel ROU 1085.0 541.6
## 2734 27 62 Eder Simon AUT 1101.1 567.9
## 2735 28 3 Zhyrnyi Oleksandr UKR 1073.9 549.5
## 2736 29 79 Bailey Lowell USA 1091.3 536.2
## 2737 30 43 Lindstroem Fredrik SWE 1089.9 566.8
## 2738 31 75 Nelin Jesper SWE 1102.0 581.4
## 2739 32 71 Darozhka Aliaksandr BLR 1089.6 564.8
## 2740 33 46 Doll Benedikt GER 1122.6 579.7
## 2741 34 61 Anev Krasimir BUL 1105.4 583.8
## 2742 35 60 Green Brendan CAN 1109.7 569.7
## 2743 36 97 Eberhard Julian AUT 1124.8 563.9
## 2744 37 44 Lessing Roland EST 1102.0 569.9
## 2745 38 88 Koiv Kauri EST 1079.8 557.0
## 2746 39 36 Fak Jakov SLO 1101.3 561.6
## 2747 40 32 Savitskiy Yan KAZ 1101.0 546.6
## 2748 41 25 De Lorenzi Christian ITA 1117.2 570.3
## 2749 42 67 Tsvetkov Maxim RUS 1096.7 572.9
## 2750 43 20 Doherty Sean USA 1116.9 566.3
## 2751 44 27 Pidruchnyi Dmytro UKR 1117.2 543.2
## 2752 45 1 Shipulin Anton RUS 1106.6 566.8
## 2753 46 40 Smith Nathan CAN 1127.4 592.9
## 2754 47 99 Gow Scott CAN 1122.0 596.4
## 2755 48 100 Jaeger Martin SUI 1118.3 586.6
## 2756 49 90 Kletcherov Michail BUL 1096.8 545.4
## 2757 50 70 Bauer Klemen SLO 1112.1 579.6
## 2758 51 37 Grossegger Sven AUT 1112.8 557.9
## 2759 51 52 Weger Benjamin SUI 1122.8 564.0
## 2760 53 59 Fourcade Simon FRA 1127.9 529.9
## 2761 54 86 Boe Tarjei NOR 1130.1 592.9
## 2762 55 48 Hiidensalo Olli FIN 1119.1 579.1
## 2763 56 102 Bormolini Thomas ITA 1104.0 582.4
## 2764 57 26 Kazar Matej SVK 1146.0 563.3
## 2765 58 15 Davies Macx CAN 1122.2 586.5
## 2766 59 42 Moravec Ondrej CZE 1144.0 623.2
## 2767 60 11 Soukup Jaroslav CZE 1145.5 591.2
## 2768 61 14 Stenersen Torstein SWE 1116.3 582.6
## 2769 62 19 Hasilla Tomas SVK 1130.8 588.3
## 2770 63 10 Ermits Kalev EST 1142.7 543.7
## 2771 64 50 Janik Mateusz POL 1140.4 583.0
## 2772 65 7 Sinapov Anton BUL 1139.9 588.9
## 2773 66 18 Dolder Mario SUI 1156.7 577.2
## 2774 67 85 Kobonoki Tsukasa JPN 1140.5 579.8
## 2775 68 23 Tachizaki Mikito JPN 1139.9 580.3
## 2776 69 94 Bjoentegaard Erlend NOR 1147.9 599.3
## 2777 70 55 Buta George ROU 1140.1 587.5
## 2778 71 98 Dovzan Miha SLO 1146.4 603.5
## 2779 72 13 Podkorytov Vassiliy KAZ 1136.3 579.7
## 2780 73 28 Nagai Junji JPN 1148.6 595.0
## 2781 74 5 Yaliotnau Raman BLR 1170.6 601.7
## 2782 75 63 Hofer Lukas ITA 1152.7 580.8
## 2783 76 78 Szczurek Lukasz POL 1159.1 586.9
## 2784 77 72 Braun Maxim KAZ 1131.9 582.0
## 2785 78 22 Guzik Grzegorz POL 1177.6 584.4
## 2786 79 89 Varabei Maksim BLR 1178.4 616.0
## 2787 80 31 Roesch Michael BEL 1178.2 628.1
## 2788 81 64 Faur Remus ROU 1183.6 606.5
## 2789 82 17 Orpana Sami FIN 1185.7 637.5
## 2790 83 4 Crnkovic Kresimir CRO 1203.2 620.0
## 2791 84 74 Langer Thierry BEL 1196.7 585.2
## 2792 85 16 Trsan Rok SLO 1225.7 603.8
## 2793 86 6 Lee Inbok KOR 1228.1 607.4
## 2794 87 95 Strolia Vytautas LTU 1236.5 654.4
## 2795 88 92 Armgren Ted SWE 1231.7 616.9
## 2796 89 66 Gronman Tuomas FIN 1232.5 632.9
## 2797 90 77 Laponder Marcel GBR 1205.4 646.1
## 2798 91 51 Dixon Scott GBR 1210.4 644.2
## 2799 92 57 Kim Jongmin KOR 1229.8 601.8
## 2800 93 68 Slotins Roberts LAT 1237.2 655.5
## 2801 94 49 Angelis Apostolos GRE 1256.4 596.1
## 2802 95 39 Dombrovski Karol LTU 1217.8 654.9
## 2803 96 56 Gombos Karoly HUN 1280.2 677.6
## 2804 97 38 Ustuntas Mehmet TUR 1250.6 656.3
## 2805 98 29 Petrovic Filip CRO 1296.8 647.2
## 2806 99 2 Hrkalovic Emir SRB 1286.4 683.2
## 2807 100 41 Patrijuks Aleksandrs LAT 1313.5 668.2
## 2808 101 21 Ustuntas Ahmet TUR 1284.2 672.2
## 2809 102 54 Krsmanovic Dejan SRB 1357.7 643.5
## 2810 1 23 Fourcade Martin FRA 2375.2 585.6
## 2811 2 10 Landertinger Dominik AUT 2381.3 602.8
## 2812 3 18 Eder Simon AUT 2374.9 592.2
## 2813 4 27 Boe Johannes Thingnes NOR 2417.0 659.2
## 2814 5 17 Krcmar Michal CZE 2434.6 618.8
## 2815 6 31 Fak Jakov SLO 2460.6 607.3
## 2816 7 77 Lesser Erik GER 2472.3 615.0
## 2817 8 49 Garanichev Evgeniy RUS 2489.4 604.7
## 2818 9 36 Birnbacher Andreas GER 2472.4 614.3
## 2819 10 11 Fourcade Simon FRA 2498.5 656.9
## 2820 11 46 Savitskiy Yan KAZ 2488.2 693.0
## 2821 12 54 Anev Krasimir BUL 2493.4 621.4
## 2822 13 3 Doll Benedikt GER 2534.6 671.5
## 2823 14 59 Shipulin Anton RUS 2509.6 670.5
## 2824 15 73 Bailey Lowell USA 2506.0 626.9
## 2825 16 39 Schempp Simon GER 2501.6 603.9
## 2826 17 91 Bjoerndalen Ole Einar NOR 2522.7 671.5
## 2827 18 47 Gow Scott CAN 2547.6 748.7
## 2828 19 58 Fillon Maillet Quentin FRA 2520.9 675.9
## 2829 20 32 Slesingr Michal CZE 2565.1 666.5
## 2830 21 20 Iliev Vladimir BUL 2553.8 718.3
## 2831 22 1 Boe Tarjei NOR 2568.4 722.9
## 2832 23 95 Soukup Jaroslav CZE 2563.3 676.8
## 2833 24 74 Koiv Kauri EST 2551.7 650.1
## 2834 25 89 Kilchytskyy Vitaliy UKR 2531.0 648.0
## 2835 26 90 Kletcherov Michail BUL 2545.4 651.0
## 2836 27 4 Nordgren Leif USA 2557.3 675.4
## 2837 28 60 Desthieux Simon FRA 2564.4 694.1
## 2838 29 84 Lindstroem Fredrik SWE 2589.9 632.2
## 2839 30 75 Beatrix Jean Guillaume FRA 2581.0 689.8
## 2840 31 5 Hofer Lukas ITA 2593.6 614.5
## 2841 32 43 Svendsen Emil Hegle NOR 2570.5 689.9
## 2842 33 76 Trsan Rok SLO 2563.2 655.1
## 2843 34 94 Doherty Sean USA 2590.8 627.3
## 2844 35 85 Moravec Ondrej CZE 2612.2 616.3
## 2845 36 92 Liadov Yuryi BLR 2595.1 635.9
## 2846 37 2 Femling Peppe SWE 2579.0 664.2
## 2847 38 14 Tkalenko Ruslan UKR 2606.4 631.1
## 2848 39 96 Volkov Alexey RUS 2621.8 623.5
## 2849 40 53 Zhyrnyi Oleksandr UKR 2638.2 623.0
## 2850 41 71 Komatz David AUT 2650.8 695.2
## 2851 42 69 Smith Nathan CAN 2659.4 711.6
## 2852 43 87 Dovzan Miha SLO 2625.6 654.6
## 2853 44 57 Burke Tim USA 2647.3 794.2
## 2854 45 52 Roesch Michael BEL 2636.2 713.9
## 2855 46 28 Gow Christian CAN 2653.6 699.8
## 2856 47 97 Green Brendan CAN 2655.5 690.6
## 2857 48 8 Pantov Anton KAZ 2633.1 657.3
## 2858 49 56 Weger Benjamin SUI 2654.4 700.4
## 2859 50 35 Lessing Roland EST 2689.5 731.8
## 2860 51 67 Bormolini Thomas ITA 2689.8 706.2
## 2861 52 16 Dombrovski Karol LTU 2628.2 681.7
## 2862 53 72 Wiestner Serafin SUI 2693.0 754.6
## 2863 54 48 Nelin Jesper SWE 2704.8 639.2
## 2864 55 66 Semenov Sergii UKR 2712.2 679.9
## 2865 56 38 Chepelin Vladimir BLR 2735.4 653.4
## 2866 57 83 Buta George ROU 2682.2 679.6
## 2867 58 40 Eberhard Julian AUT 2762.5 793.2
## 2868 59 37 Rastorgujevs Andrejs LAT 2749.7 742.0
## 2869 60 55 Windisch Dominik ITA 2752.4 673.5
## 2870 61 62 Yaliotnau Raman BLR 2766.6 745.6
## 2871 62 63 Orpana Sami FIN 2703.0 686.5
## 2872 63 68 Otcenas Martin SVK 2765.6 839.3
## 2873 64 70 Malyshko Dmitry RUS 2766.6 633.0
## 2874 65 22 Dyuzhev Dmitriy BLR 2738.5 714.3
## 2875 66 88 Stenersen Torstein SWE 2761.4 656.8
## 2876 67 61 Podkorytov Vassiliy KAZ 2752.6 722.9
## 2877 68 34 Nagai Junji JPN 2758.9 657.1
## 2878 69 13 Oblak Lenart SLO 2772.3 711.4
## 2879 70 50 Kaukenas Tomas LTU 2786.4 706.6
## 2880 71 86 Penar Rafal POL 2757.7 737.2
## 2881 72 24 Tachizaki Mikito JPN 2800.6 655.1
## 2882 73 98 Kazar Matej SVK 2810.5 693.6
## 2883 74 25 Dolder Mario SUI 2817.8 820.0
## 2884 75 79 Kobonoki Tsukasa JPN 2806.4 720.9
## 2885 76 45 Matiasko Miroslav SVK 2797.7 724.1
## 2886 77 81 Gerdzhikov Dimitar BUL 2815.8 647.4
## 2887 78 33 Szczurek Lukasz POL 2788.2 740.2
## 2888 79 44 Angelis Apostolos GRE 2828.3 739.5
## 2889 80 78 Guzik Grzegorz POL 2852.5 715.2
## 2890 81 12 Zahkna Rene EST 2855.4 722.7
## 2891 82 99 De Lorenzi Christian ITA 2865.3 694.9
## 2892 83 93 Finello Jeremy SUI 2918.0 806.4
## 2893 84 64 Langer Thierry BEL 2897.3 731.2
## 2894 85 41 Hiidensalo Olli FIN 2907.4 775.7
## 2895 86 65 Lusa Daumants LAT 2844.8 772.1
## 2896 87 80 Strolia Vytautas LTU 2924.7 721.4
## 2897 88 7 Gronman Tuomas FIN 2933.1 762.3
## 2898 89 51 Dixon Scott GBR 2888.1 832.9
## 2899 90 6 Lee Inbok KOR 2988.3 664.3
## 2900 91 15 Ungureanu Marius ROU 3010.3 780.7
## 2901 92 19 Hrkalovic Emir SRB 2969.9 884.7
## 2902 93 29 Kim Jongmin KOR 2968.7 822.8
## 2903 94 30 Puchianu Cornel ROU 3073.4 701.8
## 2904 95 26 Slotins Roberts LAT 3038.5 764.7
## 2905 96 9 Ustuntas Mehmet TUR 3025.8 746.7
## 2906 97 21 Gombos Karoly HUN 3158.9 885.8
## 2907 98 82 Laponder Marcel GBR 3182.6 763.1
## 2908 99 42 Hodzic Edin SRB 3308.8 882.4
## 2909 1 8 Boe Johannes Thingnes NOR 1790.8 449.2
## 2910 2 1 Fourcade Martin FRA 1783.6 450.1
## 2911 3 2 Bjoerndalen Ole Einar NOR 1789.2 458.2
## 2912 4 21 Windisch Dominik ITA 1810.8 470.8
## 2913 5 14 Peiffer Arnd GER 1813.7 458.4
## 2914 6 9 Boe Tarjei NOR 1816.2 448.8
## 2915 7 16 Fak Jakov SLO 1814.2 456.3
## 2916 8 4 Semenov Sergii UKR 1795.9 456.3
## 2917 9 7 Shipulin Anton RUS 1814.7 463.5
## 2918 10 27 Bailey Lowell USA 1818.8 482.0
## 2919 11 6 Eder Simon AUT 1832.0 495.7
## 2920 12 24 Burke Tim USA 1839.4 473.1
## 2921 13 26 Chepelin Vladimir BLR 1841.2 460.1
## 2922 14 15 Lesser Erik GER 1839.1 504.3
## 2923 15 3 Landertinger Dominik AUT 1856.4 458.7
## 2924 16 28 Babikov Anton RUS 1835.5 484.2
## 2925 17 19 Slesingr Michal CZE 1862.4 479.9
## 2926 18 13 Doll Benedikt GER 1864.8 499.3
## 2927 19 10 Schempp Simon GER 1856.6 499.6
## 2928 20 12 Fillon Maillet Quentin FRA 1841.7 468.9
## 2929 21 20 Iliev Vladimir BUL 1863.3 501.5
## 2930 22 18 Krcmar Michal CZE 1859.6 493.7
## 2931 23 11 Garanichev Evgeniy RUS 1874.7 476.0
## 2932 24 17 Desthieux Simon FRA 1873.4 491.8
## 2933 25 25 Anev Krasimir BUL 1879.3 510.8
## 2934 26 30 Rastorgujevs Andrejs LAT 1888.0 481.6
## 2935 27 23 Wiestner Serafin SUI 1924.7 501.2
## 2936 28 5 Svendsen Emil Hegle NOR 1888.0 533.7
## 2937 29 22 Savitskiy Yan KAZ 1977.8 535.3
## 2938 1 1 Fourcade Martin FRA 1582.9 421.6
## 2939 2 2 Bjoerndalen Ole Einar NOR 1606.1 406.5
## 2940 3 17 Svendsen Emil Hegle NOR 1626.0 408.4
## 2941 4 4 Boe Johannes Thingnes NOR 1625.4 404.5
## 2942 5 39 Fak Jakov SLO 1637.0 391.0
## 2943 6 12 Desthieux Simon FRA 1646.3 397.7
## 2944 7 19 Lesser Erik GER 1646.0 432.5
## 2945 8 3 Semenov Sergii UKR 1637.2 413.4
## 2946 9 45 Shipulin Anton RUS 1656.7 413.3
## 2947 10 16 Fillon Maillet Quentin FRA 1656.4 388.6
## 2948 11 6 Garanichev Evgeniy RUS 1654.0 426.5
## 2949 12 15 Slesingr Michal CZE 1643.8 396.2
## 2950 13 7 Peiffer Arnd GER 1663.1 439.4
## 2951 14 9 Landertinger Dominik AUT 1678.8 439.7
## 2952 15 46 Smith Nathan CAN 1676.7 389.1
## 2953 16 27 Eder Simon AUT 1686.6 387.7
## 2954 17 14 Burke Tim USA 1679.2 434.1
## 2955 18 8 Schempp Simon GER 1680.8 419.9
## 2956 19 40 Savitskiy Yan KAZ 1682.5 399.6
## 2957 20 11 Wiestner Serafin SUI 1691.7 447.8
## 2958 21 23 Babikov Anton RUS 1698.3 424.1
## 2959 22 24 Krcmar Michal CZE 1709.4 427.0
## 2960 23 13 Chepelin Vladimir BLR 1712.6 467.7
## 2961 24 10 Iliev Vladimir BUL 1716.4 417.0
## 2962 25 28 Zhyrnyi Oleksandr UKR 1705.7 421.0
## 2963 26 36 Eberhard Julian AUT 1738.7 374.8
## 2964 27 20 Rastorgujevs Andrejs LAT 1729.3 443.7
## 2965 28 5 Windisch Dominik ITA 1723.2 433.5
## 2966 29 34 Anev Krasimir BUL 1726.8 447.4
## 2967 30 25 Otcenas Martin SVK 1726.1 425.1
## 2968 31 54 Boe Tarjei NOR 1739.5 417.7
## 2969 32 22 Pryma Artem UKR 1744.9 399.9
## 2970 33 35 Green Brendan CAN 1745.3 398.2
## 2971 34 30 Lindstroem Fredrik SWE 1748.1 437.1
## 2972 35 37 Lessing Roland EST 1738.3 410.8
## 2973 36 29 Bailey Lowell USA 1762.3 465.8
## 2974 37 56 Bormolini Thomas ITA 1760.0 400.7
## 2975 38 31 Nelin Jesper SWE 1768.9 482.0
## 2976 39 33 Doll Benedikt GER 1776.3 412.8
## 2977 40 53 Fourcade Simon FRA 1772.1 410.9
## 2978 41 60 Soukup Jaroslav CZE 1784.5 430.5
## 2979 42 49 Kletcherov Michail BUL 1779.9 412.5
## 2980 43 42 Tsvetkov Maxim RUS 1800.2 455.5
## 2981 44 57 Kazar Matej SVK 1804.4 416.8
## 2982 45 43 Doherty Sean USA 1799.2 440.6
## 2983 46 32 Darozhka Aliaksandr BLR 1801.4 475.5
## 2984 47 21 Kaukenas Tomas LTU 1832.6 429.3
## 2985 48 51 Grossegger Sven AUT 1811.5 450.4
## 2986 49 47 Gow Scott CAN 1837.9 448.9
## 2987 50 26 Puchianu Cornel ROU 1856.2 472.2
## 2988 51 55 Hiidensalo Olli FIN 1843.8 485.7
## 2989 52 18 Nordgren Leif USA 1855.7 455.5
## 2990 53 58 Davies Macx CAN 1863.7 467.3
## 2991 54 41 De Lorenzi Christian ITA 1899.7 424.1
## 2992 55 48 Jaeger Martin SUI 1925.4 454.7
## 2993 56 50 Bauer Klemen SLO 1917.8 480.6
## 2994 57 38 Koiv Kauri EST 1924.9 504.2
## 2995 1 52 Schempp Simon GER 962.4 479.3
## 2996 2 14 Bjoerndalen Ole Einar NOR 970.2 484.6
## 2997 3 17 Garanichev Evgeniy RUS 978.7 486.6
## 2998 4 96 Slepov Alexey RUS 974.4 478.3
## 2999 5 20 Fourcade Martin FRA 976.8 498.4
## 3000 6 28 Shipulin Anton RUS 985.3 499.5
## 3001 7 24 Fillon Maillet Quentin FRA 975.8 482.4
## 3002 8 60 Doll Benedikt GER 985.9 504.1
## 3003 9 8 Boe Tarjei NOR 989.6 497.7
## 3004 10 61 Volkov Alexey RUS 977.1 488.9
## 3005 11 21 Svendsen Emil Hegle NOR 987.4 495.9
## 3006 12 35 Tsvetkov Maxim RUS 989.4 490.6
## 3007 13 13 Desthieux Simon FRA 1003.4 504.0
## 3008 14 37 Burke Tim USA 1002.9 513.4
## 3009 15 7 Bailey Lowell USA 1003.5 500.9
## 3010 16 78 Windisch Dominik ITA 1001.6 507.5
## 3011 17 38 Hofer Lukas ITA 1006.4 493.2
## 3012 18 33 Bauer Klemen SLO 1000.0 503.1
## 3013 19 10 Moravec Ondrej CZE 1011.4 516.6
## 3014 20 36 Weger Benjamin SUI 1003.7 489.8
## 3015 21 69 Lesser Erik GER 1009.7 511.2
## 3016 22 32 Grossegger Sven AUT 1007.8 487.1
## 3017 23 73 Eberhard Julian AUT 1034.3 549.2
## 3018 24 9 Smith Nathan CAN 1015.5 497.8
## 3019 25 55 Soukup Jaroslav CZE 1018.9 523.2
## 3020 26 11 Birnbacher Andreas GER 1018.6 497.4
## 3021 27 64 Darozhka Aliaksandr BLR 1012.9 514.9
## 3022 28 15 Anev Krasimir BUL 1009.1 492.2
## 3023 29 1 Yaliotnau Raman BLR 1007.1 503.2
## 3024 30 26 Lindstroem Fredrik SWE 1034.1 538.2
## 3025 31 22 Rastorgujevs Andrejs LAT 1013.7 516.5
## 3026 32 51 Beatrix Jean Guillaume FRA 1021.3 526.2
## 3027 33 43 Fourcade Simon FRA 1019.4 497.8
## 3028 34 19 Davies Macx CAN 1030.9 507.8
## 3029 35 65 Gow Scott CAN 1031.3 528.0
## 3030 36 3 Fak Jakov SLO 1010.4 523.8
## 3031 37 102 Gow Christian CAN 1004.6 500.7
## 3032 38 12 Malyshko Dmitry RUS 1021.4 537.4
## 3033 39 44 Krcmar Michal CZE 1032.2 511.2
## 3034 40 97 Dyuzhev Dmitriy BLR 1020.9 520.3
## 3035 41 31 Chepelin Vladimir BLR 1035.4 529.6
## 3036 42 42 Peiffer Arnd GER 1028.3 511.7
## 3037 43 84 Pidruchnyi Dmytro UKR 1042.1 495.3
## 3038 44 87 Claude Florent FRA 1038.0 506.6
## 3039 45 27 L'Abee-Lund Henrik NOR 1032.1 531.8
## 3040 46 29 Green Brendan CAN 1043.9 536.0
## 3041 47 41 Kazar Matej SVK 1043.5 507.7
## 3042 48 76 Dovzan Miha SLO 1030.5 513.6
## 3043 49 4 Semenov Sergii UKR 1040.1 521.7
## 3044 50 18 Slesingr Michal CZE 1065.3 575.3
## 3045 51 30 Buta George ROU 1031.6 533.7
## 3046 52 90 Nordgren Leif USA 1032.1 525.2
## 3047 53 67 Armgren Ted SWE 1042.4 531.4
## 3048 54 39 Siemakov Volodymyr UKR 1030.6 529.7
## 3049 55 6 Wiestner Serafin SUI 1059.7 519.1
## 3050 56 46 Zhyrnyi Oleksandr UKR 1047.1 552.5
## 3051 57 50 Jaeger Martin SUI 1058.1 545.5
## 3052 58 45 Iliev Vladimir BUL 1061.4 542.2
## 3053 59 85 Gustafsson Daniel SWE 1029.1 519.0
## 3054 60 53 Otcenas Martin SVK 1072.0 532.9
## 3055 61 56 Guzik Grzegorz POL 1050.6 516.9
## 3056 62 93 Kletcherov Michail BUL 1049.0 522.6
## 3057 63 40 Savitskiy Yan KAZ 1053.4 549.3
## 3058 64 34 Boe Johannes Thingnes NOR 1082.5 553.1
## 3059 65 70 Koiv Kauri EST 1050.3 521.7
## 3060 66 106 Boehm Daniel GER 1046.3 520.3
## 3061 67 58 Ermits Kalev EST 1087.8 516.2
## 3062 68 101 Lessing Roland EST 1053.5 535.2
## 3063 69 62 Puchianu Cornel ROU 1062.6 535.7
## 3064 70 98 Trsan Rok SLO 1074.3 518.3
## 3065 71 63 Doherty Sean USA 1091.5 522.6
## 3066 72 68 Dombrovski Karol LTU 1068.6 561.1
## 3067 73 23 Hasilla Tomas SVK 1065.4 535.2
## 3068 74 105 Remmelg Martin EST 1059.3 530.0
## 3069 75 66 Janik Mateusz POL 1056.8 518.4
## 3070 76 104 Krupcik Tomas CZE 1073.4 550.4
## 3071 77 95 Pryma Artem UKR 1087.4 571.1
## 3072 78 81 Finello Jeremy SUI 1076.5 538.3
## 3073 79 79 Sinapov Anton BUL 1079.8 538.9
## 3074 80 5 De Lorenzi Christian ITA 1095.4 560.8
## 3075 81 57 Dixon Scott GBR 1090.0 528.8
## 3076 82 48 Femling Peppe SWE 1113.5 576.6
## 3077 83 88 Pinter Friedrich AUT 1115.6 566.0
## 3078 84 86 Deksnis Ingus LAT 1083.9 542.7
## 3079 85 92 Faur Remus ROU 1092.0 548.4
## 3080 86 82 Joller Ivan SUI 1105.6 585.9
## 3081 87 2 Kaukenas Tomas LTU 1102.1 570.8
## 3082 88 99 Kobonoki Tsukasa JPN 1103.0 530.8
## 3083 89 94 Podkorytov Vassiliy KAZ 1113.6 564.1
## 3084 90 80 Oblak Lenart SLO 1116.6 546.1
## 3085 91 83 Penar Rafal POL 1080.6 561.1
## 3086 92 54 Slotins Roberts LAT 1102.9 574.8
## 3087 93 59 Braun Maxim KAZ 1110.9 571.4
## 3088 94 72 Tachizaki Mikito JPN 1135.8 540.3
## 3089 95 77 Loukkaanhuhta Mikko FIN 1081.2 557.6
## 3090 96 47 Roesch Michael BEL 1127.1 587.1
## 3091 97 89 Sima Michal SVK 1125.5 578.2
## 3092 98 75 Kim Yonggyu KOR 1141.3 576.4
## 3093 99 71 Morton Damon AUS 1147.3 584.0
## 3094 100 91 Strolia Vytautas LTU 1162.3 598.8
## 3095 101 49 Rastic Damir SRB 1154.0 609.9
## 3096 102 100 Koivunen Mikael FIN 1225.7 629.6
## 3097 1 25 Beatrix Jean Guillaume FRA 1762.3 442.1
## 3098 2 5 Svendsen Emil Hegle NOR 1762.0 421.7
## 3099 3 2 Bjoerndalen Ole Einar NOR 1761.6 417.9
## 3100 4 3 Schempp Simon GER 1766.2 424.7
## 3101 5 11 Birnbacher Andreas GER 1763.0 423.7
## 3102 6 10 Desthieux Simon FRA 1770.9 441.6
## 3103 7 1 Fourcade Martin FRA 1786.7 421.8
## 3104 8 13 Boe Johannes Thingnes NOR 1783.7 427.1
## 3105 9 28 Windisch Dominik ITA 1788.2 433.5
## 3106 10 4 Fillon Maillet Quentin FRA 1780.1 464.6
## 3107 11 7 Shipulin Anton RUS 1783.3 441.3
## 3108 12 12 Smith Nathan CAN 1784.9 444.2
## 3109 13 16 Peiffer Arnd GER 1775.9 430.0
## 3110 14 8 Garanichev Evgeniy RUS 1802.6 479.3
## 3111 15 15 Slepov Alexey RUS 1805.2 444.7
## 3112 16 27 Lesser Erik GER 1800.0 445.7
## 3113 17 24 Landertinger Dominik AUT 1813.7 448.3
## 3114 18 6 Boe Tarjei NOR 1818.5 437.8
## 3115 19 18 Lindstroem Fredrik SWE 1817.3 490.1
## 3116 20 14 Malyshko Dmitry RUS 1812.6 441.0
## 3117 21 21 Fourcade Simon FRA 1814.7 468.1
## 3118 22 26 Burke Tim USA 1845.7 457.9
## 3119 23 19 Bailey Lowell USA 1838.1 473.5
## 3120 24 23 Pidruchnyi Dmytro UKR 1839.4 465.4
## 3121 25 9 Doll Benedikt GER 1860.0 466.8
## 3122 26 17 Tsvetkov Maxim RUS 1853.7 473.7
## 3123 27 30 Eberhard Julian AUT 1872.8 463.5
## 3124 28 20 Volkov Alexey RUS 1875.2 462.8
## 3125 29 22 Moravec Ondrej CZE 1921.7 483.3
## 3126 30 29 Bauer Klemen SLO 1909.1 523.6
## 3127 1 1 Schempp Simon GER 1513.0 377.8
## 3128 2 5 Fourcade Martin FRA 1531.4 395.8
## 3129 3 6 Shipulin Anton RUS 1557.2 378.9
## 3130 4 9 Boe Tarjei NOR 1554.5 397.8
## 3131 5 7 Fillon Maillet Quentin FRA 1558.5 381.0
## 3132 6 3 Garanichev Evgeniy RUS 1581.5 400.9
## 3133 7 11 Svendsen Emil Hegle NOR 1582.0 402.9
## 3134 8 2 Bjoerndalen Ole Einar NOR 1575.9 410.1
## 3135 9 14 Burke Tim USA 1599.9 388.6
## 3136 10 33 Fourcade Simon FRA 1606.7 392.3
## 3137 11 26 Birnbacher Andreas GER 1619.7 385.3
## 3138 12 21 Lesser Erik GER 1611.7 392.9
## 3139 13 8 Doll Benedikt GER 1631.5 427.1
## 3140 14 30 Lindstroem Fredrik SWE 1629.3 394.0
## 3141 15 32 Beatrix Jean Guillaume FRA 1630.0 410.9
## 3142 16 10 Volkov Alexey RUS 1621.0 388.4
## 3143 17 12 Tsvetkov Maxim RUS 1623.1 410.4
## 3144 18 16 Windisch Dominik ITA 1640.5 404.0
## 3145 19 43 Pidruchnyi Dmytro UKR 1652.4 405.0
## 3146 20 18 Bauer Klemen SLO 1633.3 416.0
## 3147 21 31 Rastorgujevs Andrejs LAT 1650.1 407.8
## 3148 22 28 Anev Krasimir BUL 1652.9 409.4
## 3149 23 23 Eberhard Julian AUT 1666.8 406.7
## 3150 24 13 Desthieux Simon FRA 1663.8 421.8
## 3151 25 4 Slepov Alexey RUS 1682.3 404.8
## 3152 26 19 Moravec Ondrej CZE 1675.6 387.0
## 3153 27 42 Peiffer Arnd GER 1664.5 393.7
## 3154 28 27 Darozhka Aliaksandr BLR 1673.5 390.6
## 3155 29 15 Bailey Lowell USA 1676.6 419.7
## 3156 30 46 Green Brendan CAN 1691.9 431.5
## 3157 31 36 Fak Jakov SLO 1687.2 408.9
## 3158 32 17 Hofer Lukas ITA 1693.8 435.1
## 3159 33 38 Malyshko Dmitry RUS 1694.8 411.5
## 3160 34 25 Soukup Jaroslav CZE 1700.9 401.9
## 3161 35 24 Smith Nathan CAN 1713.8 405.9
## 3162 36 50 Slesingr Michal CZE 1714.6 413.4
## 3163 37 58 Iliev Vladimir BUL 1714.1 428.3
## 3164 38 20 Weger Benjamin SUI 1725.1 440.0
## 3165 39 49 Semenov Sergii UKR 1728.6 389.3
## 3166 40 56 Zhyrnyi Oleksandr UKR 1734.9 395.2
## 3167 41 47 Kazar Matej SVK 1731.0 449.3
## 3168 42 51 Buta George ROU 1743.5 410.5
## 3169 43 39 Krcmar Michal CZE 1762.9 466.6
## 3170 44 41 Chepelin Vladimir BLR 1756.3 435.4
## 3171 45 35 Gow Scott CAN 1762.4 411.9
## 3172 46 22 Grossegger Sven AUT 1763.5 423.5
## 3173 47 45 L'Abee-Lund Henrik NOR 1752.9 422.1
## 3174 48 55 Wiestner Serafin SUI 1778.8 452.3
## 3175 49 52 Nordgren Leif USA 1781.5 437.0
## 3176 50 44 Claude Florent FRA 1794.6 408.9
## 3177 51 60 Otcenas Martin SVK 1783.4 446.2
## 3178 52 40 Dyuzhev Dmitriy BLR 1815.1 433.4
## 3179 53 57 Jaeger Martin SUI 1811.0 407.8
## 3180 54 54 Siemakov Volodymyr UKR 1837.5 404.2
## 3181 55 53 Armgren Ted SWE 1840.2 482.1
## 3182 56 29 Yaliotnau Raman BLR 1868.2 436.4
## 3183 57 34 Davies Macx CAN 1863.2 424.1
## 3184 58 59 Gustafsson Daniel SWE 1907.1 441.1
## 3185 59 48 Dovzan Miha SLO 1945.6 551.9
## 3186 1 25 Boe Johannes Thingnes NOR 1015.9 511.2
## 3187 2 16 Shipulin Anton RUS 1043.6 527.5
## 3188 3 3 Fourcade Martin FRA 1051.4 539.3
## 3189 4 54 Lesser Erik GER 1060.2 534.7
## 3190 5 13 Wiestner Serafin SUI 1065.1 552.0
## 3191 6 30 Weger Benjamin SUI 1062.6 547.5
## 3192 7 31 Rastorgujevs Andrejs LAT 1044.1 535.8
## 3193 8 32 Boe Tarjei NOR 1069.4 552.4
## 3194 9 8 Peiffer Arnd GER 1071.6 554.4
## 3195 10 2 Bjoentegaard Erlend NOR 1079.4 553.8
## 3196 11 5 Eder Simon AUT 1067.8 530.5
## 3197 12 12 Doll Benedikt GER 1085.3 571.0
## 3198 13 42 Doherty Sean USA 1073.2 552.3
## 3199 14 10 Slesingr Michal CZE 1083.7 534.0
## 3200 15 36 Bailey Lowell USA 1085.8 562.6
## 3201 16 17 Pryma Artem UKR 1084.5 540.4
## 3202 17 55 Os Alexander NOR 1082.7 552.5
## 3203 18 23 Kazar Matej SVK 1088.8 539.5
## 3204 19 68 Ermits Kalev EST 1084.1 559.8
## 3205 20 6 Burke Tim USA 1098.4 554.9
## 3206 21 1 Iliev Vladimir BUL 1104.8 544.0
## 3207 22 33 Hofer Lukas ITA 1095.7 563.4
## 3208 23 26 Birnbacher Andreas GER 1086.1 536.2
## 3209 24 59 Dolder Mario SUI 1083.5 567.3
## 3210 25 14 Savitskiy Yan KAZ 1083.5 536.7
## 3211 26 89 Liadov Yuryi BLR 1099.8 565.3
## 3212 27 7 Eberhard Julian AUT 1133.0 591.1
## 3213 28 53 Povarnitsyn Alexander RUS 1108.5 557.3
## 3214 29 35 Krcmar Michal CZE 1118.0 564.5
## 3215 30 81 Waeger Lorenz AUT 1093.2 554.2
## 3216 31 39 Zhyrnyi Oleksandr UKR 1115.4 588.0
## 3217 32 22 Bauer Klemen SLO 1117.0 558.8
## 3218 33 18 Fillon Maillet Quentin FRA 1105.9 576.7
## 3219 34 4 Windisch Dominik ITA 1131.6 572.6
## 3220 35 21 Semenov Sergii UKR 1121.9 530.1
## 3221 36 24 Chepelin Vladimir BLR 1118.6 599.4
## 3222 37 29 Birkeland Lars Helge NOR 1112.0 586.6
## 3223 38 19 Fourcade Simon FRA 1120.6 583.1
## 3224 39 34 Grossegger Sven AUT 1122.6 591.1
## 3225 40 64 Jaeger Martin SUI 1137.1 566.7
## 3226 41 40 Trsan Rok SLO 1117.0 540.3
## 3227 42 77 De Lorenzi Christian ITA 1114.2 561.4
## 3228 43 11 Tsvetkov Maxim RUS 1115.5 555.8
## 3229 44 43 Beatrix Jean Guillaume FRA 1113.9 560.8
## 3230 45 70 Malyshko Dmitry RUS 1127.9 582.0
## 3231 46 37 Lindstroem Fredrik SWE 1113.9 563.0
## 3232 47 69 Sima Michal SVK 1110.2 564.3
## 3233 48 52 Perras Scott CAN 1139.9 578.3
## 3234 49 73 Rusinov Dmytro UKR 1126.8 599.5
## 3235 50 80 Podkorytov Vassiliy KAZ 1126.0 563.1
## 3236 51 47 Armgren Ted SWE 1133.5 573.7
## 3237 52 27 Desthieux Simon FRA 1147.1 558.0
## 3238 53 78 Sinapov Anton BUL 1138.1 602.1
## 3239 54 82 Boehm Daniel GER 1139.8 576.4
## 3240 55 15 Yaliotnau Raman BLR 1165.8 614.4
## 3241 56 44 Gronman Tuomas FIN 1139.4 584.8
## 3242 56 72 Dovzan Miha SLO 1136.2 588.5
## 3243 58 48 Bormolini Thomas ITA 1139.0 561.3
## 3244 59 61 Toivanen Ahti FIN 1149.7 546.1
## 3245 60 86 Nagai Junji JPN 1138.8 576.2
## 3246 61 92 Faur Remus ROU 1140.6 583.0
## 3247 62 41 Guzik Grzegorz POL 1153.9 575.9
## 3248 63 58 Puchianu Cornel ROU 1145.1 552.5
## 3249 64 57 Strolia Vytautas LTU 1155.7 578.6
## 3250 65 76 Nordgren Leif USA 1154.9 577.7
## 3251 66 28 Volkov Alexey RUS 1109.6 575.0
## 3252 67 83 Zahkna Rene EST 1159.5 611.7
## 3253 68 56 Pantov Anton KAZ 1165.6 572.3
## 3254 69 49 Krupcik Tomas CZE 1164.0 603.6
## 3255 70 85 Szczurek Lukasz POL 1160.9 613.1
## 3256 71 45 Komatz David AUT 1164.5 580.6
## 3257 72 67 Dyuzhev Dmitriy BLR 1197.2 591.4
## 3258 73 88 Arwidson Tobias SWE 1158.5 571.9
## 3259 74 63 Treier Jan EST 1170.6 617.5
## 3260 75 51 Gerdzhikov Dimitar BUL 1194.5 603.6
## 3261 76 38 Buta George ROU 1182.7 614.4
## 3262 77 46 Matiasko Miroslav SVK 1192.1 602.9
## 3263 78 50 Campbell Carsen CAN 1186.6 589.1
## 3264 79 91 Kornev Alexey RUS 1187.0 620.7
## 3265 80 65 Tachizaki Mikito JPN 1191.7 606.0
## 3266 81 66 Kletcherov Michail BUL 1216.6 575.8
## 3267 82 90 Neumann Matthew CAN 1223.1 633.8
## 3268 83 62 Kilchytskyy Vitaliy UKR 1234.0 630.1
## 3269 84 60 Lee Inbok KOR 1239.5 629.0
## 3270 85 79 Hakala Matti FIN 1225.7 613.4
## 3271 86 75 Suslavicius Rokas LTU 1200.4 621.9
## 3272 87 87 Kubaliak Michal SVK 1235.9 618.5
## 3273 88 74 Hudec Matthew CAN 1230.5 628.6
## 3274 1 3 Fourcade Martin FRA 1544.2 371.7
## 3275 2 1 Boe Johannes Thingnes NOR 1552.1 423.7
## 3276 3 2 Shipulin Anton RUS 1591.5 406.2
## 3277 4 11 Eder Simon AUT 1636.7 409.4
## 3278 5 10 Bjoentegaard Erlend NOR 1649.8 420.6
## 3279 6 14 Slesingr Michal CZE 1666.8 412.5
## 3280 7 20 Burke Tim USA 1670.9 442.5
## 3281 8 21 Iliev Vladimir BUL 1678.8 374.9
## 3282 9 16 Pryma Artem UKR 1672.5 413.1
## 3283 10 28 Povarnitsyn Alexander RUS 1688.6 407.4
## 3284 11 19 Ermits Kalev EST 1685.0 438.6
## 3285 12 12 Doll Benedikt GER 1707.1 405.1
## 3286 13 4 Lesser Erik GER 1699.6 475.3
## 3287 14 15 Bailey Lowell USA 1707.4 403.9
## 3288 15 23 Birnbacher Andreas GER 1707.8 403.5
## 3289 16 31 Zhyrnyi Oleksandr UKR 1712.6 409.7
## 3290 17 6 Weger Benjamin SUI 1727.6 439.5
## 3291 18 18 Kazar Matej SVK 1723.4 415.6
## 3292 19 8 Boe Tarjei NOR 1728.2 431.8
## 3293 20 13 Doherty Sean USA 1724.8 403.9
## 3294 21 7 Rastorgujevs Andrejs LAT 1736.0 484.4
## 3295 22 27 Eberhard Julian AUT 1757.0 444.6
## 3296 23 39 Grossegger Sven AUT 1741.9 435.0
## 3297 24 24 Dolder Mario SUI 1753.6 428.5
## 3298 25 35 Semenov Sergii UKR 1755.3 388.9
## 3299 26 32 Bauer Klemen SLO 1765.4 426.8
## 3300 27 5 Wiestner Serafin SUI 1779.3 413.6
## 3301 28 29 Krcmar Michal CZE 1767.1 391.9
## 3302 29 36 Chepelin Vladimir BLR 1774.3 415.3
## 3303 30 37 Birkeland Lars Helge NOR 1762.7 398.9
## 3304 31 17 Os Alexander NOR 1775.5 445.0
## 3305 32 44 Beatrix Jean Guillaume FRA 1801.3 389.6
## 3306 33 49 Rusinov Dmytro UKR 1792.9 417.1
## 3307 34 26 Liadov Yuryi BLR 1802.7 439.4
## 3308 35 38 Fourcade Simon FRA 1826.1 414.7
## 3309 36 25 Savitskiy Yan KAZ 1815.4 472.0
## 3310 37 54 Boehm Daniel GER 1820.7 429.8
## 3311 38 22 Hofer Lukas ITA 1838.3 450.2
## 3312 39 52 Desthieux Simon FRA 1862.2 488.9
## 3313 40 58 Bormolini Thomas ITA 1856.8 469.1
## 3314 41 41 Trsan Rok SLO 1866.3 413.8
## 3315 42 42 De Lorenzi Christian ITA 1865.7 416.9
## 3316 43 60 Nagai Junji JPN 1854.0 429.5
## 3317 44 34 Windisch Dominik ITA 1891.4 431.2
## 3318 45 30 Waeger Lorenz AUT 1868.8 501.7
## 3319 46 59 Toivanen Ahti FIN 1875.5 479.8
## 3320 47 48 Perras Scott CAN 1892.0 442.7
## 3321 48 47 Sima Michal SVK 1896.2 447.9
## 3322 49 50 Podkorytov Vassiliy KAZ 1914.8 479.5
## 3323 50 57 Dovzan Miha SLO 1906.1 431.5
## 3324 51 55 Yaliotnau Raman BLR 1929.8 495.2
## 3325 52 56 Gronman Tuomas FIN 1934.0 463.8
## 3326 53 40 Jaeger Martin SUI 1946.5 481.4
## 3327 1 8 Boe Johannes Thingnes NOR 912.6 457.8
## 3328 2 5 Boe Tarjei NOR 919.5 461.1
## 3329 3 26 Svendsen Emil Hegle NOR 923.9 460.7
## 3330 4 39 Fourcade Martin FRA 930.1 453.5
## 3331 5 49 Grossegger Sven AUT 926.6 466.3
## 3332 6 3 Eder Simon AUT 930.5 469.2
## 3333 7 21 Landertinger Dominik AUT 952.3 479.8
## 3334 8 14 Slesingr Michal CZE 948.1 474.3
## 3335 9 18 Birnbacher Andreas GER 946.5 482.8
## 3336 10 25 Pidruchnyi Dmytro UKR 962.3 491.5
## 3337 11 30 Peiffer Arnd GER 953.9 487.6
## 3338 12 44 Krcmar Michal CZE 955.4 474.8
## 3339 13 13 Moravec Ondrej CZE 960.1 470.1
## 3340 14 24 Rastorgujevs Andrejs LAT 957.0 468.5
## 3341 15 7 Smith Nathan CAN 963.3 506.1
## 3342 16 33 Eberhard Julian AUT 975.3 498.3
## 3343 17 73 Bjoentegaard Erlend NOR 958.2 482.6
## 3344 18 11 Burke Tim USA 963.5 492.7
## 3345 19 42 Lindstroem Fredrik SWE 964.5 492.4
## 3346 20 37 Iliev Vladimir BUL 961.2 479.4
## 3347 21 35 Desthieux Simon FRA 965.5 484.2
## 3348 22 36 Zhyrnyi Oleksandr UKR 954.7 478.5
## 3349 23 20 Anev Krasimir BUL 957.1 481.7
## 3350 24 15 Wiestner Serafin SUI 974.8 498.8
## 3351 25 1 Semenov Sergii UKR 965.9 483.2
## 3352 26 48 Birkeland Lars Helge NOR 980.4 475.7
## 3353 26 57 Kilchytskyy Vitaliy UKR 970.8 499.9
## 3354 28 16 Shipulin Anton RUS 983.7 496.7
## 3355 29 58 Fourcade Simon FRA 981.3 484.6
## 3356 30 67 Tsvetkov Maxim RUS 977.9 486.0
## 3357 31 29 Fillon Maillet Quentin FRA 984.8 512.2
## 3358 32 10 Beatrix Jean Guillaume FRA 982.1 512.2
## 3359 33 40 Bailey Lowell USA 975.5 495.3
## 3360 34 52 Gow Christian CAN 967.7 487.8
## 3361 35 31 Chepelin Vladimir BLR 989.1 496.7
## 3362 36 98 Bocharnikov Sergey BLR 964.8 485.8
## 3363 37 2 Malyshko Dmitry RUS 986.3 470.1
## 3364 38 22 Yaliotnau Raman BLR 981.8 480.3
## 3365 39 34 Weger Benjamin SUI 990.9 474.1
## 3366 40 19 Garanichev Evgeniy RUS 991.4 521.0
## 3367 41 63 Lesser Erik GER 982.2 505.7
## 3368 42 87 Bormolini Thomas ITA 980.5 503.1
## 3369 43 43 Otcenas Martin SVK 1002.4 531.0
## 3370 44 81 Eliseev Matvey RUS 993.9 490.7
## 3371 45 88 Os Alexander NOR 989.6 495.7
## 3372 46 69 Podkorytov Vassiliy KAZ 974.7 498.4
## 3373 47 28 Gow Scott CAN 995.5 495.6
## 3374 48 93 Boehm Daniel GER 978.6 484.2
## 3375 48 102 Komatz David AUT 990.7 489.7
## 3376 50 53 Janik Mateusz POL 976.2 489.1
## 3377 51 89 Guigonnat Antonin FRA 1003.2 481.6
## 3378 52 62 Koiv Kauri EST 990.3 508.5
## 3379 53 41 Hofer Lukas ITA 1000.2 480.2
## 3380 54 60 Krupcik Tomas CZE 985.0 506.0
## 3381 55 45 Davies Macx CAN 999.8 504.0
## 3382 56 46 Slepov Alexey RUS 1008.5 501.6
## 3383 57 55 Dombrovski Karol LTU 1002.0 528.3
## 3384 58 83 Finello Jeremy SUI 981.9 492.7
## 3385 59 65 Stenersen Torstein SWE 995.5 500.6
## 3386 60 95 Matiasko Miroslav SVK 989.3 498.7
## 3387 61 17 Doll Benedikt GER 1027.2 546.7
## 3388 62 50 Dolder Mario SUI 992.8 490.3
## 3389 63 54 De Lorenzi Christian ITA 1006.4 533.4
## 3390 64 76 Faur Remus ROU 997.8 502.9
## 3391 65 6 Windisch Dominik ITA 1030.0 503.2
## 3392 66 32 Bauer Klemen SLO 1006.3 501.4
## 3393 67 72 Dyuzhev Dmitriy BLR 1014.4 525.5
## 3394 68 103 Puchianu Cornel ROU 1015.1 529.9
## 3395 69 23 Kazar Matej SVK 1018.3 514.5
## 3396 70 4 Buta George ROU 1005.2 516.7
## 3397 71 82 Siemakov Volodymyr UKR 1025.8 497.8
## 3398 72 78 Ermits Kalev EST 1022.5 504.1
## 3399 72 86 Perras Scott CAN 1018.2 488.1
## 3400 74 59 Strolia Vytautas LTU 1026.2 525.1
## 3401 75 96 Vaclavik Adam CZE 1027.8 530.2
## 3402 76 79 Orpana Sami FIN 1014.2 519.7
## 3403 77 74 Gerdzhikov Dimitar BUL 1013.5 517.7
## 3404 78 61 Hasilla Tomas SVK 1027.6 541.3
## 3405 79 100 Tachizaki Mikito JPN 1017.3 523.8
## 3406 80 104 Dovzan Miha SLO 1015.2 519.4
## 3407 81 47 Braun Maxim KAZ 1027.6 518.1
## 3408 82 27 Nelin Jesper SWE 1052.3 509.2
## 3409 83 56 Gronman Tuomas FIN 1034.2 494.3
## 3410 84 9 Savitskiy Yan KAZ 1034.1 528.4
## 3411 85 66 Kim Jongmin KOR 1027.9 530.5
## 3412 86 68 Oblak Lenart SLO 1052.8 538.0
## 3413 87 77 Trsan Rok SLO 1052.2 552.7
## 3414 88 71 Guzik Grzegorz POL 1051.4 512.8
## 3415 89 75 Deksnis Ingus LAT 1039.6 521.8
## 3416 90 80 Nagai Junji JPN 1054.2 538.2
## 3417 91 90 Szczurek Lukasz POL 1047.2 550.0
## 3418 92 85 Zahkna Rene EST 1063.9 504.5
## 3419 93 97 Partalov Dimitar BUL 1055.5 518.2
## 3420 94 64 Crnkovic Kresimir CRO 1092.3 560.0
## 3421 95 101 Femling Peppe SWE 1052.2 511.3
## 3422 96 38 Soukup Jaroslav CZE 1101.0 546.1
## 3423 97 99 Slotins Roberts LAT 1085.7 533.0
## 3424 98 51 Jaeger Martin SUI 1117.4 588.9
## 3425 99 91 Treier Jan EST 1090.3 566.1
## 3426 100 92 Suslavicius Rokas LTU 1097.3 584.6
## 3427 101 84 Laponder Marcel GBR 1105.0 543.5
## 3428 102 70 Dixon Scott GBR 1143.1 563.7
## 3429 1 46 Fourcade Martin FRA 2604.9 500.9
## 3430 2 76 Eder Simon AUT 2612.7 580.3
## 3431 3 21 Shipulin Anton RUS 2622.8 512.3
## 3432 4 37 Moravec Ondrej CZE 2626.3 522.4
## 3433 5 44 Tsvetkov Maxim RUS 2644.6 525.8
## 3434 6 23 Garanichev Evgeniy RUS 2658.9 566.2
## 3435 7 66 Stenersen Torstein SWE 2692.6 589.5
## 3436 8 47 Doll Benedikt GER 2720.5 513.2
## 3437 9 64 Bjoentegaard Erlend NOR 2721.2 582.8
## 3438 10 71 Krcmar Michal CZE 2725.0 534.2
## 3439 11 36 Boe Tarjei NOR 2748.8 588.5
## 3440 12 40 Anev Krasimir BUL 2731.7 586.8
## 3441 13 53 Hofer Lukas ITA 2725.9 544.4
## 3442 14 25 Bailey Lowell USA 2750.0 533.8
## 3443 15 19 Birnbacher Andreas GER 2766.2 515.0
## 3444 16 57 Boe Johannes Thingnes NOR 2772.3 690.7
## 3445 17 58 Lesser Erik GER 2784.6 517.1
## 3446 18 59 Green Brendan CAN 2772.8 541.4
## 3447 19 69 Kilchytskyy Vitaliy UKR 2768.0 611.1
## 3448 20 48 Kazar Matej SVK 2772.6 530.2
## 3449 21 82 Kuehn Johannes GER 2805.1 583.9
## 3450 22 104 Komatz David AUT 2776.6 642.4
## 3451 23 27 Lindstroem Fredrik SWE 2806.0 603.1
## 3452 24 29 Landertinger Dominik AUT 2806.3 642.4
## 3453 25 17 Birkeland Lars Helge NOR 2790.3 596.8
## 3454 26 4 Zhyrnyi Oleksandr UKR 2780.7 547.7
## 3455 27 99 Nordgren Leif USA 2787.0 649.8
## 3456 28 22 Fillon Maillet Quentin FRA 2781.0 655.8
## 3457 29 26 Svendsen Emil Hegle NOR 2811.7 579.6
## 3458 30 54 Burke Tim USA 2809.6 593.1
## 3459 31 34 Windisch Dominik ITA 2814.9 520.1
## 3460 32 2 Volkov Alexey RUS 2813.7 541.3
## 3461 33 41 Slesingr Michal CZE 2825.1 592.7
## 3462 34 93 Zahkna Rene EST 2816.4 538.3
## 3463 35 95 Matiasko Miroslav SVK 2829.6 598.0
## 3464 36 32 Fak Jakov SLO 2841.0 577.6
## 3465 37 5 Savitskiy Yan KAZ 2812.3 624.3
## 3466 38 50 Dyuzhev Dmitriy BLR 2839.5 583.9
## 3467 39 9 De Lorenzi Christian ITA 2833.6 596.0
## 3468 40 65 Finello Jeremy SUI 2832.5 600.9
## 3469 41 86 Vaclavik Adam CZE 2845.9 720.3
## 3470 42 94 Bormolini Thomas ITA 2830.2 602.5
## 3471 43 20 Pidruchnyi Dmytro UKR 2795.8 617.3
## 3472 44 30 Bjoerndalen Ole Einar NOR 2864.8 571.5
## 3473 45 91 Gerdzhikov Dimitar BUL 2825.5 564.4
## 3474 46 96 Gow Christian CAN 2815.0 559.9
## 3475 47 105 Szczurek Lukasz POL 2836.3 558.4
## 3476 48 18 Fourcade Simon FRA 2850.1 538.8
## 3477 49 42 Rastorgujevs Andrejs LAT 2875.4 587.5
## 3478 50 77 Trsan Rok SLO 2849.0 604.6
## 3479 51 45 Smith Nathan CAN 2844.6 527.7
## 3480 52 38 Davies Macx CAN 2864.4 557.8
## 3481 53 55 Krupcik Tomas CZE 2848.8 609.0
## 3482 54 16 Nelin Jesper SWE 2868.7 533.7
## 3483 55 13 Eberhard Julian AUT 2906.0 654.9
## 3484 56 39 Grossegger Sven AUT 2866.9 523.7
## 3485 57 84 Tcherezov Ivan RUS 2879.8 535.8
## 3486 58 70 Guzik Grzegorz POL 2879.6 604.2
## 3487 59 35 Semenov Sergii UKR 2887.6 648.3
## 3488 60 33 Chepelin Vladimir BLR 2906.0 588.7
## 3489 61 63 Beatrix Jean Guillaume FRA 2887.4 602.7
## 3490 62 6 Peiffer Arnd GER 2917.5 607.1
## 3491 63 97 Nagai Junji JPN 2926.4 575.6
## 3492 64 100 Strolia Vytautas LTU 2928.6 670.5
## 3493 65 90 Abasheu Dzmitry BLR 2938.3 660.2
## 3494 66 79 Plywaczyk Krzysztof POL 2926.9 689.5
## 3495 67 1 Iliev Vladimir BUL 2951.9 615.3
## 3496 68 75 Kletcherov Michail BUL 2945.0 676.3
## 3497 69 61 Otcenas Martin SVK 2975.6 599.2
## 3498 70 56 Faur Remus ROU 2951.9 689.0
## 3499 71 7 Guigonnat Antonin FRA 2983.6 729.2
## 3500 72 74 Malyshko Dmitry RUS 2996.5 514.1
## 3501 73 81 Dixon Scott GBR 2987.8 591.9
## 3502 74 60 Koiv Kauri EST 2983.6 548.5
## 3503 75 11 Doherty Sean USA 2982.8 556.3
## 3504 76 80 Podkorytov Vassiliy KAZ 2981.8 557.7
## 3505 77 51 Ermits Kalev EST 3018.4 645.5
## 3506 78 67 Tachizaki Mikito JPN 3000.6 632.4
## 3507 79 88 Pantov Anton KAZ 3015.9 730.4
## 3508 80 78 Dombrovski Karol LTU 3004.4 628.3
## 3509 81 52 Gronman Tuomas FIN 3013.4 633.1
## 3510 82 28 Buta George ROU 3029.2 686.0
## 3511 83 83 Armgren Ted SWE 3032.6 606.9
## 3512 84 8 Wiestner Serafin SUI 3045.7 628.2
## 3513 85 31 Weger Benjamin SUI 3048.8 536.1
## 3514 86 72 Dolder Mario SUI 3059.2 613.2
## 3515 87 68 Lusa Daumants LAT 3049.0 747.1
## 3516 88 103 Treier Jan EST 3076.8 584.3
## 3517 89 73 Dovzan Miha SLO 3083.5 605.5
## 3518 90 49 Orpana Sami FIN 3079.3 619.5
## 3519 91 62 Kim Jongmin KOR 3088.5 683.5
## 3520 92 3 Darozhka Aliaksandr BLR 3108.6 689.3
## 3521 93 15 Soukup Jaroslav CZE 3148.3 661.2
## 3522 94 89 Puchianu Cornel ROU 3131.0 663.2
## 3523 95 43 Kaukenas Tomas LTU 3183.8 610.9
## 3524 96 101 Claude Fabien FRA 3215.8 758.6
## 3525 97 87 Jaeger Martin SUI 3206.4 590.7
## 3526 98 92 Koivunen Mikael FIN 3138.5 663.9
## 3527 99 106 Laponder Marcel GBR 3178.0 668.9
## 3528 100 10 Gow Scott CAN 3251.3 670.8
## 3529 101 98 Slotins Roberts LAT 3315.2 708.6
## 3530 102 14 Hasilla Tomas SVK 3334.0 826.1
## 3531 103 85 Oblak Lenart SLO 3338.0 709.6
## 3532 1 30 Lesser Erik GER 1980.4 499.2
## 3533 2 1 Fourcade Martin FRA 1992.7 513.2
## 3534 3 7 Garanichev Evgeniy RUS 1993.3 512.8
## 3535 4 5 Shipulin Anton RUS 2015.5 507.4
## 3536 5 28 Krcmar Michal CZE 2040.1 518.2
## 3537 6 8 Schempp Simon GER 2040.7 501.6
## 3538 7 13 Moravec Ondrej CZE 2030.8 537.1
## 3539 8 14 Desthieux Simon FRA 2039.2 516.9
## 3540 9 9 Eder Simon AUT 2039.0 513.9
## 3541 10 3 Svendsen Emil Hegle NOR 2038.7 517.0
## 3542 11 2 Boe Tarjei NOR 2061.2 504.7
## 3543 12 10 Boe Johannes Thingnes NOR 2060.1 531.2
## 3544 13 4 Fillon Maillet Quentin FRA 2062.8 496.7
## 3545 14 17 Tsvetkov Maxim RUS 2049.2 542.2
## 3546 15 15 Smith Nathan CAN 2060.1 520.7
## 3547 16 22 Fourcade Simon FRA 2058.8 536.8
## 3548 17 21 Lindstroem Fredrik SWE 2067.3 548.4
## 3549 18 25 Grossegger Sven AUT 2073.5 513.0
## 3550 19 12 Doll Benedikt GER 2096.0 551.8
## 3551 20 26 Stenersen Torstein SWE 2070.4 533.4
## 3552 21 20 Bailey Lowell USA 2087.7 527.5
## 3553 22 11 Birnbacher Andreas GER 2104.3 524.1
## 3554 23 18 Landertinger Dominik AUT 2156.1 511.9
## 3555 24 29 Hofer Lukas ITA 2135.4 538.4
## 3556 25 23 Malyshko Dmitry RUS 2137.0 564.8
## 3557 26 19 Pidruchnyi Dmytro UKR 2136.0 562.8
## 3558 27 24 Anev Krasimir BUL 2155.7 528.3
## 3559 28 27 Bjoentegaard Erlend NOR 2166.9 540.7
## 3560 29 16 Peiffer Arnd GER 2186.6 568.4
## 3561 30 6 Bjoerndalen Ole Einar NOR 2293.2 613.2
## 3562 1 1 Fourcade Martin FRA 1676.2 408.9
## 3563 2 19 Moravec Ondrej CZE 1682.0 419.0
## 3564 3 3 Boe Tarjei NOR 1721.3 413.6
## 3565 4 17 Pidruchnyi Dmytro UKR 1719.5 413.5
## 3566 5 14 Peiffer Arnd GER 1715.2 426.0
## 3567 6 21 Fourcade Simon FRA 1703.5 421.3
## 3568 7 7 Garanichev Evgeniy RUS 1724.5 441.0
## 3569 8 5 Fillon Maillet Quentin FRA 1718.7 416.2
## 3570 9 27 Rastorgujevs Andrejs LAT 1735.0 420.9
## 3571 10 8 Boe Johannes Thingnes NOR 1732.4 443.6
## 3572 11 13 Doll Benedikt GER 1742.4 440.0
## 3573 12 4 Bjoerndalen Ole Einar NOR 1731.9 443.2
## 3574 13 2 Svendsen Emil Hegle NOR 1743.9 477.8
## 3575 14 9 Birnbacher Andreas GER 1743.9 425.2
## 3576 15 6 Shipulin Anton RUS 1763.3 423.3
## 3577 16 23 Bailey Lowell USA 1757.2 467.1
## 3578 17 26 Slesingr Michal CZE 1757.6 431.2
## 3579 18 22 Malyshko Dmitry RUS 1763.1 444.7
## 3580 19 20 Tsvetkov Maxim RUS 1757.8 460.5
## 3581 20 12 Desthieux Simon FRA 1770.2 445.3
## 3582 21 10 Eder Simon AUT 1768.8 422.7
## 3583 22 29 Eberhard Julian AUT 1787.5 420.0
## 3584 23 15 Landertinger Dominik AUT 1795.6 440.0
## 3585 24 25 Grossegger Sven AUT 1773.5 470.6
## 3586 25 11 Smith Nathan CAN 1814.7 427.6
## 3587 26 18 Beatrix Jean Guillaume FRA 1806.5 498.5
## 3588 27 28 Krcmar Michal CZE 1819.6 441.8
## 3589 28 16 Lindstroem Fredrik SWE 1841.1 481.2
## 3590 29 30 Anev Krasimir BUL 1841.6 463.3
## 3591 30 24 Slepov Alexey RUS 1892.5 481.0
## 3592 1 6 Eder Simon AUT 1647.1 402.5
## 3593 2 4 Fourcade Martin FRA 1664.0 421.8
## 3594 3 8 Slesingr Michal CZE 1667.2 408.8
## 3595 4 2 Boe Tarjei NOR 1670.6 421.5
## 3596 5 3 Svendsen Emil Hegle NOR 1671.0 425.2
## 3597 6 15 Smith Nathan CAN 1689.9 399.8
## 3598 7 1 Boe Johannes Thingnes NOR 1693.8 451.0
## 3599 8 13 Moravec Ondrej CZE 1705.2 429.0
## 3600 9 40 Garanichev Evgeniy RUS 1706.5 424.1
## 3601 10 10 Pidruchnyi Dmytro UKR 1705.8 437.5
## 3602 11 7 Landertinger Dominik AUT 1713.3 428.9
## 3603 12 14 Rastorgujevs Andrejs LAT 1716.7 429.8
## 3604 13 29 Fourcade Simon FRA 1720.4 404.0
## 3605 14 5 Grossegger Sven AUT 1714.5 426.2
## 3606 15 9 Birnbacher Andreas GER 1715.7 433.3
## 3607 16 23 Anev Krasimir BUL 1714.9 419.1
## 3608 17 30 Tsvetkov Maxim RUS 1731.7 405.8
## 3609 18 16 Eberhard Julian AUT 1747.6 411.9
## 3610 19 31 Fillon Maillet Quentin FRA 1730.5 404.9
## 3611 20 26 Birkeland Lars Helge NOR 1743.0 427.3
## 3612 21 12 Krcmar Michal CZE 1753.2 437.0
## 3613 22 33 Bailey Lowell USA 1755.1 413.3
## 3614 23 19 Lindstroem Fredrik SWE 1763.1 456.5
## 3615 24 28 Shipulin Anton RUS 1768.0 408.5
## 3616 25 21 Desthieux Simon FRA 1756.1 440.5
## 3617 26 18 Burke Tim USA 1778.2 448.2
## 3618 27 17 Bjoentegaard Erlend NOR 1779.7 435.6
## 3619 28 11 Peiffer Arnd GER 1764.1 446.1
## 3620 29 27 Kilchytskyy Vitaliy UKR 1781.1 428.3
## 3621 30 32 Beatrix Jean Guillaume FRA 1774.9 459.4
## 3622 31 51 Guigonnat Antonin FRA 1800.9 404.1
## 3623 32 45 Os Alexander NOR 1797.9 429.2
## 3624 33 24 Wiestner Serafin SUI 1807.7 450.7
## 3625 34 41 Lesser Erik GER 1808.0 429.2
## 3626 35 25 Semenov Sergii UKR 1810.5 415.0
## 3627 36 37 Malyshko Dmitry RUS 1809.6 437.2
## 3628 37 48 Boehm Daniel GER 1812.5 443.3
## 3629 38 44 Eliseev Matvey RUS 1821.4 437.1
## 3630 39 35 Chepelin Vladimir BLR 1839.4 443.3
## 3631 40 22 Zhyrnyi Oleksandr UKR 1836.8 425.7
## 3632 41 58 Finello Jeremy SUI 1830.8 419.2
## 3633 42 59 Stenersen Torstein SWE 1851.7 444.0
## 3634 43 49 Komatz David AUT 1845.8 440.6
## 3635 44 43 Otcenas Martin SVK 1862.6 463.1
## 3636 45 39 Weger Benjamin SUI 1851.1 431.0
## 3637 46 42 Bormolini Thomas ITA 1874.1 455.5
## 3638 47 57 Dombrovski Karol LTU 1867.7 440.0
## 3639 48 36 Bocharnikov Sergey BLR 1862.9 432.5
## 3640 49 54 Krupcik Tomas CZE 1866.9 453.7
## 3641 50 55 Davies Macx CAN 1880.5 475.1
## 3642 51 56 Slepov Alexey RUS 1921.8 408.0
## 3643 52 53 Hofer Lukas ITA 1885.3 436.2
## 3644 53 34 Gow Christian CAN 1900.3 448.7
## 3645 54 47 Gow Scott CAN 1919.2 439.3
## 3646 55 60 Matiasko Miroslav SVK 1930.4 463.4
## 3647 56 38 Yaliotnau Raman BLR 2004.0 525.9
## 3648 57 46 Podkorytov Vassiliy KAZ 1994.2 498.0
## 3649 58 50 Janik Mateusz POL 2005.8 444.5
## 3650 1 33 Shipulin Anton RUS 2465.3 608.4
## 3651 2 28 Fourcade Martin FRA 2509.7 606.9
## 3652 3 16 Semenov Sergii UKR 2512.5 684.1
## 3653 4 32 Bjoerndalen Ole Einar NOR 2519.1 624.7
## 3654 5 30 Schempp Simon GER 2543.7 677.6
## 3655 6 11 Anev Krasimir BUL 2525.9 626.2
## 3656 7 40 Tsvetkov Maxim RUS 2533.8 690.2
## 3657 8 24 Krcmar Michal CZE 2549.4 694.9
## 3658 9 1 Peiffer Arnd GER 2558.0 683.2
## 3659 10 25 Bailey Lowell USA 2543.5 696.7
## 3660 11 4 Doll Benedikt GER 2572.2 683.9
## 3661 12 20 Garanichev Evgeniy RUS 2561.7 677.6
## 3662 13 2 Birkeland Lars Helge NOR 2547.6 629.6
## 3663 14 15 Boe Johannes Thingnes NOR 2592.1 631.1
## 3664 15 3 Fillon Maillet Quentin FRA 2608.6 737.4
## 3665 16 74 Siemakov Volodymyr UKR 2593.9 641.5
## 3666 17 19 Gow Scott CAN 2589.4 646.7
## 3667 18 51 Desthieux Simon FRA 2630.6 698.4
## 3668 19 31 Weger Benjamin SUI 2623.2 704.7
## 3669 20 70 Waeger Lorenz AUT 2622.3 697.0
## 3670 21 42 Lesser Erik GER 2640.6 695.8
## 3671 22 26 Lindstroem Fredrik SWE 2660.5 772.8
## 3672 23 13 Beatrix Jean Guillaume FRA 2656.3 700.2
## 3673 24 10 Windisch Dominik ITA 2667.6 681.8
## 3674 25 35 Samuelsson Sebastian SWE 2645.3 703.5
## 3675 26 57 Fourcade Simon FRA 2668.1 630.7
## 3676 27 99 Femling Peppe SWE 2644.0 663.9
## 3677 28 103 Gjermundshaug Vegard NOR 2672.8 641.9
## 3678 29 81 Nordgren Leif USA 2666.6 652.7
## 3679 30 8 Landertinger Dominik AUT 2712.0 796.4
## 3680 31 22 Gronman Tuomas FIN 2692.9 651.7
## 3681 32 58 L'Abee-Lund Henrik NOR 2704.8 816.1
## 3682 33 90 Schommer Paul USA 2682.2 650.1
## 3683 34 50 Burke Tim USA 2717.8 764.1
## 3684 35 67 Oblak Lenart SLO 2671.6 686.5
## 3685 36 68 Doherty Sean USA 2722.5 713.5
## 3686 37 100 Claude Fabien FRA 2733.8 632.5
## 3687 38 49 Chepelin Vladimir BLR 2730.7 695.5
## 3688 39 47 Babikov Anton RUS 2723.6 755.0
## 3689 40 86 Soukup Jaroslav CZE 2720.2 717.6
## 3690 41 93 Grossegger Sven AUT 2724.2 699.6
## 3691 42 75 Willeitner Michael GER 2748.2 701.9
## 3692 43 69 Kazar Matej SVK 2723.3 706.6
## 3693 44 17 Savitskiy Yan KAZ 2732.9 712.9
## 3694 45 34 Pryma Artem UKR 2750.8 636.2
## 3695 46 61 Gerdzhikov Dimitar BUL 2728.9 721.5
## 3696 47 5 Roesch Michael BEL 2736.7 658.0
## 3697 48 98 Abasheu Dzmitry BLR 2746.2 709.2
## 3698 49 88 Zhyrnyi Oleksandr UKR 2738.9 719.3
## 3699 50 39 Komatz David AUT 2741.7 656.1
## 3700 51 54 Dolder Mario SUI 2753.6 789.1
## 3701 52 83 Kobonoki Tsukasa JPN 2743.7 725.5
## 3702 53 38 Iliev Vladimir BUL 2772.5 695.0
## 3703 54 84 Podkorytov Vassiliy KAZ 2752.5 657.5
## 3704 55 89 Kletcherov Michail BUL 2759.5 742.8
## 3705 56 59 Hoerl Fabian AUT 2758.3 720.6
## 3706 57 9 Moravec Ondrej CZE 2783.1 698.2
## 3707 58 12 Bauer Klemen SLO 2807.2 751.4
## 3708 59 64 Nelin Jesper SWE 2809.4 629.4
## 3709 60 77 Zahkna Rene EST 2775.6 672.3
## 3710 61 52 Bjoentegaard Erlend NOR 2807.5 703.6
## 3711 62 63 Bricis Ilmars LAT 2790.4 732.6
## 3712 63 7 Rastorgujevs Andrejs LAT 2825.3 817.0
## 3713 64 95 Malyshko Dmitry RUS 2802.5 835.0
## 3714 65 104 Dombrovski Karol LTU 2786.5 805.2
## 3715 66 14 Guzik Grzegorz POL 2795.8 739.3
## 3716 67 27 Mesotitsch Daniel AUT 2818.9 753.7
## 3717 68 80 Bormolini Thomas ITA 2806.0 721.3
## 3718 69 37 Koiv Kauri EST 2808.7 718.6
## 3719 70 72 Vaclavik Adam CZE 2817.1 759.6
## 3720 71 106 Finello Jeremy SUI 2810.8 635.2
## 3721 72 18 Kaukenas Tomas LTU 2844.4 709.0
## 3722 73 71 Pantov Anton KAZ 2854.8 668.5
## 3723 74 43 Puchianu Cornel ROU 2853.4 716.1
## 3724 75 41 Green Brendan CAN 2849.9 698.4
## 3725 75 60 Gow Christian CAN 2848.1 805.7
## 3726 77 92 Szczurek Lukasz POL 2829.0 684.7
## 3727 78 56 Dixon Scott GBR 2825.4 707.6
## 3728 79 66 Dovzan Miha SLO 2860.5 722.2
## 3729 80 55 Faur Remus ROU 2854.1 731.2
## 3730 81 44 Bischl Matthias GER 2889.0 772.9
## 3731 82 101 Lessing Roland EST 2897.6 712.2
## 3732 83 29 Pidruchnyi Dmytro UKR 2903.6 766.2
## 3733 84 23 Otcenas Martin SVK 2914.0 769.2
## 3734 85 48 Slesingr Michal CZE 2896.0 750.8
## 3735 86 45 Wiestner Serafin SUI 2934.1 763.2
## 3736 87 53 Eliseev Matvey RUS 2903.6 725.7
## 3737 88 102 Sima Michal SVK 2903.5 703.0
## 3738 89 46 Hasilla Tomas SVK 2940.5 790.5
## 3739 90 105 Lusa Daumants LAT 2906.4 690.2
## 3740 91 36 Hiidensalo Olli FIN 2965.0 655.1
## 3741 92 62 Seppala Tero FIN 2958.1 795.7
## 3742 93 97 Ozaki Kosuke JPN 2938.2 751.0
## 3743 94 87 Zini Rudy ITA 2945.4 745.1
## 3744 95 96 Buta George ROU 2970.2 728.8
## 3745 96 21 Bocharnikov Sergey BLR 3004.3 774.4
## 3746 97 73 Kim Yonggyu KOR 2990.1 680.2
## 3747 98 107 Braun Maxim KAZ 3002.6 857.5
## 3748 99 79 Strolia Vytautas LTU 3005.2 742.5
## 3749 100 76 Montello Giuseppe ITA 3021.2 794.6
## 3750 101 94 Heo Seonhoe KOR 2967.3 777.9
## 3751 102 78 Janik Mateusz POL 3018.1 779.9
## 3752 103 82 Varabei Maksim BLR 3114.3 837.5
## 3753 104 85 Hodzic Edin SRB 3055.6 834.8
## 3754 105 65 Angelis Apostolos GRE 3121.8 801.1
## 3755 1 9 Boe Johannes Thingnes NOR 1819.8 451.2
## 3756 2 17 Fillon Maillet Quentin FRA 1818.3 441.3
## 3757 3 2 Shipulin Anton RUS 1832.0 446.4
## 3758 4 5 Svendsen Emil Hegle NOR 1846.0 466.1
## 3759 5 1 Fourcade Martin FRA 1857.3 470.6
## 3760 6 13 Beatrix Jean Guillaume FRA 1844.1 462.7
## 3761 7 3 Schempp Simon GER 1839.7 453.6
## 3762 8 6 Lesser Erik GER 1854.7 487.8
## 3763 9 10 Eberhard Julian AUT 1877.3 459.6
## 3764 10 7 Bjoerndalen Ole Einar NOR 1862.0 481.9
## 3765 11 23 Birkeland Lars Helge NOR 1861.6 486.8
## 3766 12 15 Windisch Dominik ITA 1904.8 462.6
## 3767 13 8 Tsvetkov Maxim RUS 1896.2 488.4
## 3768 14 12 Babikov Anton RUS 1886.1 499.1
## 3769 15 26 Garanichev Evgeniy RUS 1903.4 474.4
## 3770 16 16 Bailey Lowell USA 1895.1 496.0
## 3771 17 30 Lindstroem Fredrik SWE 1911.6 498.4
## 3772 18 22 Semenov Sergii UKR 1917.7 473.5
## 3773 19 14 Doll Benedikt GER 1932.6 504.3
## 3774 20 25 Desthieux Simon FRA 1950.5 515.0
## 3775 21 4 Peiffer Arnd GER 1945.2 474.8
## 3776 22 21 Pidruchnyi Dmytro UKR 1963.8 509.3
## 3777 23 19 Moravec Ondrej CZE 1962.0 468.0
## 3778 24 20 Slesingr Michal CZE 1966.9 474.1
## 3779 25 27 Siemakov Volodymyr UKR 1959.1 512.4
## 3780 26 24 Rastorgujevs Andrejs LAT 1986.8 534.5
## 3781 27 18 Weger Benjamin SUI 1987.6 494.2
## 3782 28 11 Krcmar Michal CZE 1981.5 526.1
## 3783 29 29 Waeger Lorenz AUT 1987.2 509.5
## 3784 30 28 Gow Scott CAN 2016.1 517.6
## 3785 1 82 Doll Benedikt GER 973.9 496.0
## 3786 2 96 Boe Johannes Thingnes NOR 964.6 490.4
## 3787 3 4 Fourcade Martin FRA 1000.2 509.7
## 3788 4 77 Bailey Lowell USA 989.5 503.9
## 3789 5 81 Moravec Ondrej CZE 1003.2 518.7
## 3790 6 40 Anev Krasimir BUL 989.0 504.7
## 3791 7 10 Eberhard Julian AUT 1013.8 517.0
## 3792 8 55 Bjoerndalen Ole Einar NOR 998.2 517.1
## 3793 9 34 Schempp Simon GER 1003.4 500.6
## 3794 10 9 Garanichev Evgeniy RUS 1004.2 501.2
## 3795 11 62 Sinapov Anton BUL 1010.2 516.2
## 3796 12 32 Peiffer Arnd GER 1006.7 533.8
## 3797 13 1 Iliev Vladimir BUL 1013.4 508.7
## 3798 14 84 Boe Tarjei NOR 1013.2 522.8
## 3799 15 64 Dolder Mario SUI 1002.0 513.4
## 3800 16 65 Hasilla Tomas SVK 1005.7 516.4
## 3801 17 18 Landertinger Dominik AUT 1045.0 540.9
## 3802 18 2 Windisch Dominik ITA 1031.3 524.1
## 3803 18 48 Wiestner Serafin SUI 1030.4 552.2
## 3804 20 30 Puchianu Cornel ROU 1023.8 511.2
## 3805 21 52 Shipulin Anton RUS 1037.4 540.9
## 3806 22 57 Eder Simon AUT 1033.0 536.5
## 3807 23 74 Faur Remus ROU 1021.2 532.3
## 3808 24 5 Savitskiy Yan KAZ 1037.8 550.8
## 3809 25 16 Gow Scott CAN 1041.3 529.7
## 3810 26 14 Nordgren Leif USA 1039.8 538.0
## 3811 27 7 Beatrix Jean Guillaume FRA 1039.5 503.9
## 3812 28 49 Pidruchnyi Dmytro UKR 1041.1 530.7
## 3813 29 33 Koiv Kauri EST 1026.1 533.4
## 3814 30 80 Lindstroem Fredrik SWE 1043.6 547.8
## 3815 31 15 Kaukenas Tomas LTU 1029.7 546.1
## 3816 32 24 Gow Christian CAN 1028.1 522.5
## 3817 33 88 Bauer Klemen SLO 1043.2 541.7
## 3818 34 42 Vaclavik Adam CZE 1056.2 541.0
## 3819 34 46 Desthieux Simon FRA 1060.3 525.6
## 3820 36 101 Svendsen Emil Hegle NOR 1032.5 526.7
## 3821 37 22 Lesser Erik GER 1052.2 564.4
## 3822 38 58 Green Brendan CAN 1055.2 521.9
## 3823 39 97 Doherty Sean USA 1042.5 508.5
## 3824 40 43 Burke Tim USA 1043.7 553.7
## 3825 41 11 Semenov Sergii UKR 1056.5 569.5
## 3826 42 86 Slesingr Michal CZE 1056.4 527.6
## 3827 43 20 Fillon Maillet Quentin FRA 1065.7 555.7
## 3828 44 47 Montello Giuseppe ITA 1053.7 539.0
## 3829 45 100 Bocharnikov Sergey BLR 1046.8 555.2
## 3830 46 79 Bormolini Thomas ITA 1031.9 542.0
## 3831 47 51 Otcenas Martin SVK 1057.8 570.7
## 3832 48 38 Hiidensalo Olli FIN 1053.8 551.0
## 3833 49 29 Babikov Anton RUS 1064.5 551.9
## 3834 50 36 Mesotitsch Daniel AUT 1057.0 539.7
## 3835 51 19 Roesch Michael BEL 1059.8 533.7
## 3836 52 66 Lessing Roland EST 1064.6 528.4
## 3837 53 92 Guzik Grzegorz POL 1062.2 551.4
## 3838 54 71 Strolia Vytautas LTU 1050.8 526.2
## 3839 55 6 Weger Benjamin SUI 1062.6 567.5
## 3840 56 3 Hofer Lukas ITA 1050.5 539.0
## 3841 57 93 Rastorgujevs Andrejs LAT 1081.4 529.6
## 3842 58 87 Zhyrnyi Oleksandr UKR 1063.9 523.9
## 3843 59 12 Nelin Jesper SWE 1075.4 552.4
## 3844 60 26 Stenersen Torstein SWE 1072.1 530.2
## 3845 61 67 Krcmar Michal CZE 1098.1 539.7
## 3846 62 90 Sima Michal SVK 1072.0 535.9
## 3847 63 78 Braun Maxim KAZ 1070.8 549.4
## 3848 64 56 Dovzan Miha SLO 1083.2 545.7
## 3849 65 45 Chepelin Vladimir BLR 1107.7 586.2
## 3850 66 13 Gronman Tuomas FIN 1081.9 544.9
## 3851 67 39 Tachizaki Mikito JPN 1079.6 574.5
## 3852 68 23 Pantov Anton KAZ 1079.3 575.6
## 3853 69 53 Tsvetkov Maxim RUS 1073.3 544.0
## 3854 70 91 Gerdzhikov Dimitar BUL 1087.7 548.2
## 3855 71 69 Seppala Tero FIN 1092.2 563.6
## 3856 72 70 Szczurek Lukasz POL 1083.2 540.8
## 3857 73 73 Siemakov Volodymyr UKR 1092.0 589.5
## 3858 74 99 Buta George ROU 1094.2 553.5
## 3859 75 72 Kobonoki Tsukasa JPN 1096.9 590.8
## 3860 76 102 Samuelsson Sebastian SWE 1107.4 544.6
## 3861 77 17 Kazar Matej SVK 1125.4 525.7
## 3862 78 98 Ermits Kalev EST 1093.0 573.4
## 3863 79 103 Davies Macx CAN 1111.2 553.0
## 3864 80 83 Kim Yonggyu KOR 1094.4 535.3
## 3865 81 94 Finello Jeremy SUI 1099.1 564.7
## 3866 82 68 Varabei Maksim BLR 1124.7 584.3
## 3867 83 50 Crnkovic Kresimir CRO 1133.7 588.1
## 3868 84 54 Bricis Ilmars LAT 1118.0 584.2
## 3869 85 75 Fourcade Simon FRA 1125.2 546.1
## 3870 86 85 Ozaki Kosuke JPN 1106.9 574.1
## 3871 87 59 Morton Damon AUS 1113.7 573.7
## 3872 88 61 Patrijuks Aleksandrs LAT 1117.4 608.3
## 3873 89 31 Lee Inbok KOR 1118.2 576.9
## 3874 90 25 Langer Thierry BEL 1137.6 591.5
## 3875 91 27 Gombos Karoly HUN 1147.9 602.5
## 3876 92 8 Yaliotnau Raman BLR 1181.2 641.6
## 3877 93 37 Trsan Rok SLO 1177.7 657.8
## 3878 94 35 Penar Rafal POL 1149.3 606.7
## 3879 95 41 Dombrovski Karol LTU 1142.6 619.6
## 3880 96 89 Kim Jongmin KOR 1166.2 589.8
## 3881 97 21 Krsmanovic Dejan SRB 1188.5 582.4
## 3882 98 28 Dixon Scott GBR 1193.5 582.7
## 3883 99 60 Hodzic Edin SRB 1196.1 602.8
## 3884 100 76 Petrovic Filip CRO 1190.1 612.8
## 3885 101 95 Angelis Apostolos GRE 1216.7 653.4
## 3886 102 63 Fountain Vinny GBR 1244.9 683.6
## 3887 1 100 Bailey Lowell USA 2346.4 602.1
## 3888 2 51 Moravec Ondrej CZE 2352.8 596.5
## 3889 3 4 Fourcade Martin FRA 2386.2 579.3
## 3890 4 27 Lesser Erik GER 2395.5 600.7
## 3891 5 15 Semenov Sergii UKR 2391.9 597.5
## 3892 6 67 Krcmar Michal CZE 2398.7 611.3
## 3893 7 1 Shipulin Anton RUS 2414.0 584.6
## 3894 8 96 Boe Johannes Thingnes NOR 2429.5 649.2
## 3895 9 3 Birkeland Lars Helge NOR 2425.6 602.3
## 3896 10 11 Weger Benjamin SUI 2426.5 661.2
## 3897 11 99 Volkov Alexey RUS 2432.5 613.1
## 3898 12 80 Eder Simon AUT 2444.9 667.7
## 3899 13 46 Schempp Simon GER 2458.3 593.5
## 3900 14 101 Eberhard Julian AUT 2492.4 584.5
## 3901 15 59 Mesotitsch Daniel AUT 2463.4 614.9
## 3902 16 78 Anev Krasimir BUL 2469.0 668.4
## 3903 17 6 Fillon Maillet Quentin FRA 2500.2 644.2
## 3904 18 94 Slesingr Michal CZE 2507.6 654.0
## 3905 19 58 Doll Benedikt GER 2510.7 599.4
## 3906 20 73 Garanichev Evgeniy RUS 2502.1 655.0
## 3907 21 90 Windisch Dominik ITA 2516.2 651.0
## 3908 22 13 Beatrix Jean Guillaume FRA 2509.4 612.9
## 3909 23 49 Nordgren Leif USA 2511.1 668.2
## 3910 24 63 Iliev Vladimir BUL 2532.6 602.9
## 3911 25 70 Claude Fabien FRA 2543.4 675.6
## 3912 26 5 Landertinger Dominik AUT 2537.5 657.8
## 3913 27 81 Svendsen Emil Hegle NOR 2529.4 608.8
## 3914 28 61 Abasheu Dzmitry BLR 2543.9 643.4
## 3915 29 75 Kazar Matej SVK 2542.9 635.5
## 3916 30 21 Koiv Kauri EST 2540.8 634.7
## 3917 31 8 Chepelin Vladimir BLR 2585.7 673.4
## 3918 32 37 Krupcik Tomas CZE 2597.3 630.5
## 3919 33 93 Savitskiy Yan KAZ 2577.6 679.4
## 3920 34 77 Peiffer Arnd GER 2602.6 605.8
## 3921 34 88 Hofer Lukas ITA 2593.4 604.3
## 3922 36 74 Burke Tim USA 2596.2 724.8
## 3923 37 44 Stenersen Torstein SWE 2591.2 608.2
## 3924 38 68 Lindstroem Fredrik SWE 2597.7 674.6
## 3925 39 16 Sinapov Anton BUL 2598.0 620.1
## 3926 40 41 Bocharnikov Sergey BLR 2592.8 685.2
## 3927 41 32 Pidruchnyi Dmytro UKR 2605.7 659.7
## 3928 42 50 Davies Macx CAN 2581.4 715.4
## 3929 43 24 Gow Scott CAN 2580.0 698.3
## 3930 44 33 Wiestner Serafin SUI 2603.0 685.7
## 3931 45 89 Zahkna Rene EST 2590.6 690.3
## 3932 46 12 Kaukenas Tomas LTU 2600.9 616.7
## 3933 47 95 Bjoerndalen Ole Einar NOR 2616.5 680.3
## 3934 48 66 Lessing Roland EST 2621.7 681.9
## 3935 49 48 Hiidensalo Olli FIN 2631.9 685.4
## 3936 50 22 Dovzan Miha SLO 2636.7 693.3
## 3937 51 40 Desthieux Simon FRA 2637.7 614.0
## 3938 52 83 Samuelsson Sebastian SWE 2655.1 674.3
## 3939 53 91 Nedza-Kubiniec Andrzej POL 2632.0 642.8
## 3940 54 7 Nelin Jesper SWE 2691.4 664.2
## 3941 55 9 Roesch Michael BEL 2661.6 664.5
## 3942 56 14 Rastorgujevs Andrejs LAT 2687.0 770.8
## 3943 57 55 Szczurek Lukasz POL 2669.2 694.3
## 3944 58 23 Doherty Sean USA 2679.1 627.0
## 3945 59 19 Bormolini Thomas ITA 2684.3 629.0
## 3946 60 60 Hasilla Tomas SVK 2684.1 710.5
## 3947 61 92 Yaliotnau Raman BLR 2709.2 764.5
## 3948 62 86 Nagai Junji JPN 2671.2 759.2
## 3949 63 62 Finello Jeremy SUI 2692.6 702.1
## 3950 64 102 Dolder Mario SUI 2676.0 763.2
## 3951 65 10 Otcenas Martin SVK 2695.6 639.2
## 3952 66 57 Dombrovski Karol LTU 2681.2 726.3
## 3953 67 56 Podkorytov Vassiliy KAZ 2742.8 676.0
## 3954 68 47 Kobonoki Tsukasa JPN 2719.9 636.5
## 3955 69 29 Dixon Scott GBR 2721.6 676.4
## 3956 70 98 Tkalenko Ruslan UKR 2751.2 817.7
## 3957 71 38 Pop Gheorghe ROU 2723.4 722.0
## 3958 72 31 Loginov Alexander RUS 2780.7 663.1
## 3959 73 42 Strolia Vytautas LTU 2783.7 701.5
## 3960 74 20 Tachizaki Mikito JPN 2798.9 635.6
## 3961 75 34 Lusa Daumants LAT 2757.0 726.3
## 3962 76 87 Puchianu Cornel ROU 2791.3 765.2
## 3963 77 28 Langer Thierry BEL 2788.8 716.4
## 3964 78 54 Faur Remus ROU 2793.1 718.0
## 3965 79 76 Seppala Tero FIN 2836.4 743.0
## 3966 80 72 Zhyrnyi Oleksandr UKR 2832.9 681.2
## 3967 81 26 Gerdzhikov Dimitar BUL 2834.2 814.9
## 3968 82 64 Oblak Lenart SLO 2828.1 736.5
## 3969 83 45 Kim Jongmin KOR 2842.8 794.0
## 3970 84 36 Vitenko Vladislav KAZ 2871.3 814.9
## 3971 85 18 Loukkaanhuhta Mikko FIN 2873.0 765.0
## 3972 86 85 Green Brendan CAN 2851.1 785.8
## 3973 87 71 Montello Giuseppe ITA 2878.3 708.6
## 3974 88 2 Bauer Klemen SLO 2871.4 774.7
## 3975 89 69 Heo Seonhoe KOR 2898.6 717.2
## 3976 90 25 Guzik Grzegorz POL 2907.4 713.4
## 3977 91 39 Sima Michal SVK 2895.2 744.2
## 3978 92 43 Angelis Apostolos GRE 2919.1 730.6
## 3979 93 79 Patrijuks Aleksandrs LAT 2955.7 799.1
## 3980 94 82 Hodzic Edin SRB 2937.7 744.9
## 3981 95 35 Gombos Karoly HUN 2972.1 746.6
## 3982 96 84 Crnkovic Kresimir CRO 3080.6 878.0
## 3983 97 30 Petrovic Filip CRO 3087.6 864.9
## 3984 98 97 Starodubets Aleksandr KOR 3125.7 862.3
## 3985 99 52 Gleave Alex GBR 3221.1 774.9
## 3986 100 65 Krsmanovic Dejan SRB 3315.5 837.8
## 3987 1 8 Schempp Simon GER 1756.4 439.4
## 3988 2 4 Boe Johannes Thingnes NOR 1779.1 460.1
## 3989 3 17 Eder Simon AUT 1753.9 440.9
## 3990 4 7 Shipulin Anton RUS 1788.0 443.7
## 3991 5 2 Fourcade Martin FRA 1802.2 485.5
## 3992 6 3 Bailey Lowell USA 1770.7 454.6
## 3993 7 22 Landertinger Dominik AUT 1796.5 478.8
## 3994 8 27 Lindstroem Fredrik SWE 1794.6 447.5
## 3995 9 1 Doll Benedikt GER 1806.4 444.8
## 3996 10 9 Peiffer Arnd GER 1803.1 484.4
## 3997 11 18 Garanichev Evgeniy RUS 1804.6 444.4
## 3998 12 16 Anev Krasimir BUL 1794.2 468.6
## 3999 13 29 Slesingr Michal CZE 1817.9 471.9
## 4000 14 21 Boe Tarjei NOR 1816.6 471.9
## 4001 15 24 Fillon Maillet Quentin FRA 1811.4 441.0
## 4002 16 5 Moravec Ondrej CZE 1814.7 471.6
## 4003 17 30 Bauer Klemen SLO 1818.9 453.4
## 4004 18 14 Beatrix Jean Guillaume FRA 1820.0 453.9
## 4005 19 11 Eberhard Julian AUT 1847.9 457.9
## 4006 20 19 Iliev Vladimir BUL 1838.3 493.2
## 4007 21 10 Lesser Erik GER 1836.7 448.7
## 4008 22 15 Krcmar Michal CZE 1831.2 460.2
## 4009 23 6 Bjoerndalen Ole Einar NOR 1846.6 465.2
## 4010 24 23 Windisch Dominik ITA 1861.4 452.6
## 4011 25 25 Pidruchnyi Dmytro UKR 1863.5 476.0
## 4012 26 13 Tsvetkov Maxim RUS 1863.9 474.2
## 4013 27 20 Semenov Sergii UKR 1856.3 493.3
## 4014 28 12 Svendsen Emil Hegle NOR 1879.5 461.7
## 4015 29 28 Wiestner Serafin SUI 1907.0 469.8
## 4016 30 26 Dolder Mario SUI 1915.6 498.4
## 4017 1 3 Fourcade Martin FRA 1494.1 383.8
## 4018 2 2 Boe Johannes Thingnes NOR 1544.8 368.9
## 4019 3 8 Bjoerndalen Ole Einar NOR 1533.5 396.3
## 4020 4 21 Shipulin Anton RUS 1547.8 366.6
## 4021 5 5 Moravec Ondrej CZE 1546.6 392.2
## 4022 6 4 Bailey Lowell USA 1532.0 378.1
## 4023 7 6 Anev Krasimir BUL 1539.1 401.1
## 4024 8 7 Eberhard Julian AUT 1564.5 391.3
## 4025 9 14 Boe Tarjei NOR 1570.2 391.9
## 4026 10 9 Schempp Simon GER 1565.8 391.6
## 4027 11 1 Doll Benedikt GER 1567.5 375.3
## 4028 12 22 Eder Simon AUT 1591.1 392.7
## 4029 13 27 Beatrix Jean Guillaume FRA 1596.8 381.5
## 4030 14 28 Pidruchnyi Dmytro UKR 1603.4 374.3
## 4031 15 41 Semenov Sergii UKR 1603.7 374.3
## 4032 16 33 Bauer Klemen SLO 1609.5 420.6
## 4033 17 30 Lindstroem Fredrik SWE 1616.4 379.0
## 4034 18 13 Iliev Vladimir BUL 1611.1 375.2
## 4035 19 12 Peiffer Arnd GER 1614.4 414.9
## 4036 20 10 Garanichev Evgeniy RUS 1613.2 398.3
## 4037 21 17 Landertinger Dominik AUT 1621.3 390.6
## 4038 22 43 Fillon Maillet Quentin FRA 1625.9 371.9
## 4039 23 32 Gow Christian CAN 1611.5 379.3
## 4040 24 47 Otcenas Martin SVK 1620.8 404.0
## 4041 25 18 Windisch Dominik ITA 1626.1 369.6
## 4042 26 19 Wiestner Serafin SUI 1646.7 387.4
## 4043 27 35 Desthieux Simon FRA 1644.4 432.1
## 4044 28 37 Lesser Erik GER 1645.6 411.4
## 4045 29 15 Dolder Mario SUI 1639.5 401.0
## 4046 30 42 Slesingr Michal CZE 1654.9 437.1
## 4047 31 51 Roesch Michael BEL 1659.7 378.4
## 4048 32 40 Burke Tim USA 1668.8 407.1
## 4049 33 24 Savitskiy Yan KAZ 1667.4 403.3
## 4050 34 44 Montello Giuseppe ITA 1666.5 397.2
## 4051 35 29 Koiv Kauri EST 1661.8 418.1
## 4052 36 48 Hiidensalo Olli FIN 1691.3 428.4
## 4053 37 57 Rastorgujevs Andrejs LAT 1691.9 415.9
## 4054 38 20 Puchianu Cornel ROU 1681.3 399.6
## 4055 39 49 Babikov Anton RUS 1692.3 384.5
## 4056 40 45 Bocharnikov Sergey BLR 1678.4 401.6
## 4057 41 31 Kaukenas Tomas LTU 1688.0 425.5
## 4058 42 23 Faur Remus ROU 1693.7 419.3
## 4059 43 16 Hasilla Tomas SVK 1696.6 417.1
## 4060 44 59 Nelin Jesper SWE 1722.2 399.7
## 4061 45 58 Zhyrnyi Oleksandr UKR 1713.6 416.7
## 4062 46 60 Stenersen Torstein SWE 1736.8 383.7
## 4063 47 25 Gow Scott CAN 1734.0 409.5
## 4064 48 46 Bormolini Thomas ITA 1718.8 399.4
## 4065 49 26 Nordgren Leif USA 1718.2 414.9
## 4066 50 50 Mesotitsch Daniel AUT 1739.8 407.8
## 4067 51 52 Lessing Roland EST 1728.6 416.2
## 4068 52 38 Green Brendan CAN 1742.1 408.1
## 4069 53 55 Weger Benjamin SUI 1764.7 395.2
## 4070 54 34 Vaclavik Adam CZE 1778.6 426.2
## 4071 55 39 Doherty Sean USA 1795.1 406.4
## 4072 56 54 Strolia Vytautas LTU 1804.2 418.5
## 4073 57 53 Guzik Grzegorz POL 1815.0 420.4
## 4074 1 38 Fourcade Martin FRA 934.8 480.3
## 4075 2 24 Moravec Ondrej CZE 929.0 470.8
## 4076 3 20 Svendsen Emil Hegle NOR 943.7 478.2
## 4077 4 3 Boe Johannes Thingnes NOR 939.5 478.2
## 4078 5 22 Peiffer Arnd GER 943.8 477.3
## 4079 6 45 Eder Simon AUT 950.0 494.6
## 4080 7 42 Rastorgujevs Andrejs LAT 940.9 492.5
## 4081 8 23 Bjoerndalen Ole Einar NOR 956.8 470.6
## 4082 9 40 Eberhard Julian AUT 972.8 474.6
## 4083 10 48 Roesch Michael BEL 949.1 491.3
## 4084 11 10 Landertinger Dominik AUT 968.1 476.5
## 4085 12 37 Rees Roman GER 955.1 483.9
## 4086 13 61 Christiansen Vetle Sjaastad NOR 950.0 490.7
## 4087 14 2 Krcmar Michal CZE 975.8 497.7
## 4088 15 44 Hofer Lukas ITA 980.6 481.0
## 4089 16 28 Bailey Lowell USA 961.6 492.6
## 4090 17 29 Windisch Dominik ITA 978.7 506.3
## 4091 18 80 Lapshin Timofei KOR 973.3 509.4
## 4092 19 1 Graf Florian GER 970.2 486.7
## 4093 20 50 Bauer Klemen SLO 980.0 513.1
## 4094 21 25 Birkeland Lars Helge NOR 979.6 485.9
## 4095 21 57 Anev Krasimir BUL 975.3 505.7
## 4096 23 30 Garanichev Evgeniy RUS 983.2 524.1
## 4097 24 18 Desthieux Simon FRA 994.6 487.6
## 4098 25 6 Samuelsson Sebastian SWE 971.2 502.0
## 4099 26 8 Pidruchnyi Dmytro UKR 987.9 509.8
## 4100 27 4 Eliseev Matvey RUS 974.0 486.3
## 4101 28 5 Kaukenas Tomas LTU 964.9 495.7
## 4102 29 27 Shipulin Anton RUS 997.5 521.6
## 4103 30 41 Doll Benedikt GER 992.3 514.2
## 4104 31 13 Mesotitsch Daniel AUT 979.3 502.1
## 4105 32 15 Boe Tarjei NOR 994.1 525.6
## 4106 33 47 Iliev Vladimir BUL 993.9 529.3
## 4107 34 75 Nawrath Philipp GER 986.3 491.9
## 4108 35 31 Slesingr Michal CZE 984.6 488.5
## 4109 36 17 Dolder Mario SUI 991.6 527.2
## 4110 37 34 Savitskiy Yan KAZ 989.8 491.1
## 4111 38 74 Babikov Anton RUS 974.2 503.3
## 4112 39 67 Hiidensalo Olli FIN 1005.6 525.7
## 4113 40 26 Weger Benjamin SUI 980.0 502.9
## 4114 41 93 Claude Fabien FRA 990.4 498.4
## 4115 42 46 Pryma Artem UKR 1002.6 527.6
## 4116 43 14 Nordgren Leif USA 1004.1 505.4
## 4117 44 71 Doherty Sean USA 998.5 521.4
## 4118 45 21 Green Brendan CAN 997.3 505.4
## 4119 46 62 Trsan Rok SLO 1005.1 515.6
## 4120 47 12 Semenov Sergii UKR 1019.9 534.0
## 4121 48 43 Fillon Maillet Quentin FRA 1019.7 525.5
## 4122 49 84 Abasheu Dzmitry BLR 1013.6 528.5
## 4123 50 77 Gow Christian CAN 993.4 515.3
## 4124 51 92 Kobonoki Tsukasa JPN 1014.4 518.7
## 4125 52 76 Faur Remus ROU 1006.4 511.6
## 4126 53 66 Zahkna Rene EST 1007.6 508.6
## 4127 54 96 Gerdzhikov Dimitar BUL 1026.2 534.7
## 4128 55 7 Bocharnikov Sergey BLR 1038.7 556.0
## 4129 56 78 Lessing Roland EST 1028.0 524.7
## 4130 57 87 Zhyrnyi Oleksandr UKR 1024.1 548.8
## 4131 58 32 Lindstroem Fredrik SWE 1018.6 545.6
## 4132 59 58 Siemakov Volodymyr UKR 1033.3 553.6
## 4133 60 33 Tsvetkov Maxim RUS 1006.0 540.4
## 4134 61 36 Beatrix Jean Guillaume FRA 1024.4 555.0
## 4135 62 99 Finello Jeremy SUI 1021.3 539.9
## 4136 63 70 Varabei Maksim BLR 1034.3 528.1
## 4137 64 63 Vaclavik Adam CZE 1040.1 539.8
## 4138 65 60 Waeger Lorenz AUT 1023.8 523.3
## 4139 66 54 Montello Giuseppe ITA 1040.5 556.5
## 4140 67 39 Gow Scott CAN 1030.5 528.4
## 4141 68 49 Chepelin Vladimir BLR 1052.7 556.6
## 4142 69 65 Podkorytov Vassiliy KAZ 1024.8 507.4
## 4143 70 64 Kazar Matej SVK 1044.0 533.9
## 4144 71 88 Soukup Jaroslav CZE 1040.8 553.4
## 4145 72 19 Sinapov Anton BUL 1063.9 511.3
## 4146 73 73 Yeremin Roman KAZ 1057.2 516.2
## 4147 74 86 Oblak Lenart SLO 1023.3 518.8
## 4148 75 90 Buta George ROU 1034.7 521.2
## 4149 76 68 Wiestner Serafin SUI 1058.4 517.8
## 4150 77 72 Tachizaki Mikito JPN 1058.7 570.9
## 4151 78 55 Dovzan Miha SLO 1052.4 502.4
## 4152 79 101 Soederhielm Tiio SWE 1040.3 561.8
## 4153 80 51 Otcenas Martin SVK 1048.9 545.3
## 4154 81 16 Gronman Tuomas FIN 1057.9 538.0
## 4155 82 69 Szczurek Lukasz POL 1041.7 532.8
## 4156 83 9 Hasilla Tomas SVK 1058.5 577.5
## 4157 84 100 Schommer Paul USA 1067.9 539.0
## 4158 85 85 Strolia Vytautas LTU 1088.5 557.9
## 4159 86 52 Fourcade Simon FRA 1087.4 522.9
## 4160 87 89 Remmelg Martin EST 1068.2 523.2
## 4161 88 35 Puchianu Cornel ROU 1086.2 563.6
## 4162 89 56 Angelis Apostolos GRE 1071.6 546.8
## 4163 90 81 Braun Maxim KAZ 1080.6 560.2
## 4164 91 94 Bormolini Thomas ITA 1075.6 556.8
## 4165 92 53 Dombrovski Karol LTU 1072.4 546.1
## 4166 93 83 Hoerl Fabian AUT 1074.7 543.0
## 4167 94 97 Malyshko Dmitry RUS 1082.5 559.5
## 4168 95 91 Seppala Tero FIN 1087.9 594.3
## 4169 96 59 Stenersen Torstein SWE 1098.7 537.9
## 4170 97 11 Guzik Grzegorz POL 1088.5 533.9
## 4171 98 79 Bricis Ilmars LAT 1090.6 542.8
## 4172 99 98 Nedza-Kubiniec Andrzej POL 1098.3 533.2
## 4173 100 82 Lusa Daumants LAT 1149.6 581.7
## 4174 101 95 Kim Jongmin KOR 1156.0 592.1
## 4175 1 5 Peiffer Arnd GER 1521.3 398.3
## 4176 2 6 Eder Simon AUT 1528.3 396.7
## 4177 3 3 Svendsen Emil Hegle NOR 1534.4 396.7
## 4178 4 2 Moravec Ondrej CZE 1534.2 401.0
## 4179 5 1 Fourcade Martin FRA 1548.3 413.9
## 4180 6 15 Hofer Lukas ITA 1557.7 376.9
## 4181 7 4 Boe Johannes Thingnes NOR 1560.6 401.3
## 4182 8 13 Christiansen Vetle Sjaastad NOR 1555.9 400.3
## 4183 9 7 Rastorgujevs Andrejs LAT 1570.5 434.1
## 4184 10 29 Shipulin Anton RUS 1574.0 418.9
## 4185 11 32 Boe Tarjei NOR 1592.2 380.9
## 4186 12 23 Garanichev Evgeniy RUS 1580.4 374.3
## 4187 12 24 Desthieux Simon FRA 1592.9 382.2
## 4188 14 12 Rees Roman GER 1583.1 390.5
## 4189 15 18 Lapshin Timofei KOR 1594.0 411.5
## 4190 16 22 Anev Krasimir BUL 1598.5 385.2
## 4191 17 21 Birkeland Lars Helge NOR 1592.5 386.9
## 4192 18 44 Doherty Sean USA 1598.8 382.8
## 4193 19 27 Eliseev Matvey RUS 1593.5 414.6
## 4194 20 30 Doll Benedikt GER 1618.2 379.3
## 4195 21 26 Pidruchnyi Dmytro UKR 1616.3 415.9
## 4196 22 10 Roesch Michael BEL 1607.9 381.3
## 4197 23 11 Landertinger Dominik AUT 1637.7 407.4
## 4198 24 17 Windisch Dominik ITA 1637.7 381.2
## 4199 25 19 Graf Florian GER 1638.5 402.5
## 4200 26 25 Samuelsson Sebastian SWE 1639.2 389.3
## 4201 27 16 Bailey Lowell USA 1628.5 434.5
## 4202 28 31 Mesotitsch Daniel AUT 1638.9 419.9
## 4203 29 8 Bjoerndalen Ole Einar NOR 1646.9 392.9
## 4204 30 33 Iliev Vladimir BUL 1644.1 410.0
## 4205 31 40 Weger Benjamin SUI 1653.5 385.5
## 4206 32 14 Krcmar Michal CZE 1672.3 402.3
## 4207 33 35 Slesingr Michal CZE 1671.8 402.9
## 4208 34 36 Dolder Mario SUI 1660.2 424.9
## 4209 35 41 Claude Fabien FRA 1670.7 401.4
## 4210 36 42 Pryma Artem UKR 1665.2 391.6
## 4211 37 50 Gow Christian CAN 1669.5 395.4
## 4212 38 49 Abasheu Dzmitry BLR 1678.2 416.8
## 4213 39 46 Trsan Rok SLO 1680.1 421.4
## 4214 40 20 Bauer Klemen SLO 1684.6 409.2
## 4215 41 47 Semenov Sergii UKR 1696.1 389.6
## 4216 42 34 Nawrath Philipp GER 1703.7 442.1
## 4217 43 43 Nordgren Leif USA 1698.3 391.4
## 4218 44 28 Kaukenas Tomas LTU 1710.2 408.5
## 4219 45 56 Lessing Roland EST 1738.4 399.2
## 4220 46 54 Gerdzhikov Dimitar BUL 1739.2 400.6
## 4221 47 51 Kobonoki Tsukasa JPN 1736.8 398.6
## 4222 48 55 Bocharnikov Sergey BLR 1756.7 443.6
## 4223 49 58 Lindstroem Fredrik SWE 1757.5 425.9
## 4224 50 45 Green Brendan CAN 1762.7 456.8
## 4225 51 57 Zhyrnyi Oleksandr UKR 1793.2 409.1
## 4226 52 53 Zahkna Rene EST 1787.7 406.6
## 4227 53 39 Hiidensalo Olli FIN 1861.2 471.8
## 4228 54 59 Siemakov Volodymyr UKR 1865.6 437.9
## 4229 1 31 Fourcade Martin FRA 1014.4 520.2
## 4230 2 16 Shipulin Anton RUS 1001.8 503.4
## 4231 3 25 Svendsen Emil Hegle NOR 1017.3 520.8
## 4232 4 22 Boe Johannes Thingnes NOR 1013.6 499.2
## 4233 5 38 Iliev Vladimir BUL 1016.6 526.1
## 4234 6 7 Rastorgujevs Andrejs LAT 1019.2 518.4
## 4235 7 42 Semenov Sergii UKR 1010.9 509.9
## 4236 8 43 Moravec Ondrej CZE 1019.3 510.4
## 4237 9 20 Eberhard Julian AUT 1044.2 508.5
## 4238 10 73 Bjoentegaard Erlend NOR 1033.6 527.9
## 4239 11 11 Peiffer Arnd GER 1027.2 515.3
## 4240 12 6 Tsvetkov Maxim RUS 1025.2 511.6
## 4241 13 44 Samuelsson Sebastian SWE 1038.7 527.3
## 4242 14 2 Bjoerndalen Ole Einar NOR 1029.5 508.7
## 4243 15 45 Lesser Erik GER 1035.1 529.8
## 4244 16 34 Fillon Maillet Quentin FRA 1034.9 504.9
## 4245 17 27 Schempp Simon GER 1040.8 534.9
## 4246 18 15 Gow Scott CAN 1034.8 519.9
## 4247 19 66 Soukup Jaroslav CZE 1030.9 520.2
## 4248 20 3 Bailey Lowell USA 1048.4 536.3
## 4249 21 33 Windisch Dominik ITA 1043.1 513.8
## 4250 22 29 Pidruchnyi Dmytro UKR 1048.7 513.9
## 4251 23 1 Pryma Artem UKR 1048.5 514.3
## 4252 24 36 Wiestner Serafin SUI 1062.3 565.5
## 4253 25 30 Doll Benedikt GER 1068.4 526.3
## 4254 26 5 Mesotitsch Daniel AUT 1056.4 545.9
## 4255 27 57 Kilchytskyy Vitaliy UKR 1042.3 521.1
## 4256 28 9 Krcmar Michal CZE 1061.1 554.2
## 4257 29 50 Komatz David AUT 1042.4 523.2
## 4258 30 23 Roesch Michael BEL 1049.1 545.6
## 4259 31 67 Beatrix Jean Guillaume FRA 1058.9 548.4
## 4260 32 48 Hofer Lukas ITA 1058.1 520.7
## 4261 33 8 Chepelin Vladimir BLR 1068.7 536.9
## 4262 34 81 Yaliotnau Raman BLR 1061.5 519.6
## 4263 35 13 Desthieux Simon FRA 1059.9 542.4
## 4264 36 35 Birkeland Lars Helge NOR 1064.2 533.4
## 4265 37 24 Bauer Klemen SLO 1067.2 530.9
## 4266 38 21 Anev Krasimir BUL 1055.4 539.2
## 4267 39 71 Hiidensalo Olli FIN 1074.0 551.7
## 4268 40 80 Dolder Mario SUI 1070.5 559.9
## 4269 41 47 Garanichev Evgeniy RUS 1071.3 540.8
## 4270 42 40 Otcenas Martin SVK 1074.6 555.9
## 4271 43 32 Hasilla Tomas SVK 1071.7 530.0
## 4272 44 26 Slesingr Michal CZE 1085.6 509.7
## 4273 45 77 Savitskiy Yan KAZ 1072.7 540.9
## 4274 46 72 Bischl Matthias GER 1065.5 550.6
## 4275 47 12 Lindstroem Fredrik SWE 1088.3 558.7
## 4276 48 46 Eliseev Matvey RUS 1090.6 563.2
## 4277 49 19 Eder Simon AUT 1078.7 577.6
## 4278 50 10 Babikov Anton RUS 1085.3 528.8
## 4279 51 51 Dovzan Miha SLO 1077.6 550.8
## 4280 52 39 Varabei Maksim BLR 1080.9 567.5
## 4281 53 63 Kazar Matej SVK 1098.1 549.6
## 4282 54 37 Green Brendan CAN 1085.8 540.7
## 4283 55 78 Currier Russell USA 1095.0 545.7
## 4284 56 83 Femling Peppe SWE 1090.9 549.2
## 4285 57 84 Gerdzhikov Dimitar BUL 1081.5 539.5
## 4286 58 90 Oblak Lenart SLO 1077.7 539.7
## 4287 59 60 Sinapov Anton BUL 1101.5 554.2
## 4288 60 61 Malyshko Dmitry RUS 1096.7 558.7
## 4289 61 82 Begue Aristide FRA 1099.6 536.3
## 4290 62 102 Finello Jeremy SUI 1097.2 575.8
## 4291 63 98 Sima Michal SVK 1102.2 577.6
## 4292 64 65 Braun Maxim KAZ 1090.6 542.0
## 4293 65 18 Fourcade Simon FRA 1121.7 556.5
## 4294 66 28 Weger Benjamin SUI 1104.1 540.2
## 4295 67 56 Kaukenas Tomas LTU 1106.1 570.7
## 4296 68 58 Tachizaki Mikito JPN 1113.0 558.7
## 4297 69 95 Waeger Lorenz AUT 1102.3 560.5
## 4298 70 17 Puchianu Cornel ROU 1115.4 598.6
## 4299 71 69 Guzik Grzegorz POL 1117.6 567.8
## 4300 72 101 Zhyrnyi Oleksandr UKR 1107.6 558.3
## 4301 73 88 Podkorytov Vassiliy KAZ 1118.5 557.5
## 4302 74 75 Davies Macx CAN 1118.4 564.5
## 4303 75 97 Remmelg Martin EST 1109.3 567.5
## 4304 76 96 Kristejn Lukas CZE 1120.2 566.2
## 4305 77 92 Darozhka Aliaksandr BLR 1116.0 590.7
## 4306 78 41 Dorfer Matthias GER 1102.8 564.5
## 4307 79 100 Buta George ROU 1114.9 577.0
## 4308 80 79 Lessing Roland EST 1109.8 579.0
## 4309 81 104 Pantov Anton KAZ 1120.7 573.1
## 4310 82 52 Bormolini Thomas ITA 1119.2 565.8
## 4311 83 54 Trsan Rok SLO 1154.0 605.7
## 4312 84 74 Dombrovski Karol LTU 1117.8 575.9
## 4313 85 4 Koiv Kauri EST 1150.8 555.7
## 4314 86 62 Faur Remus ROU 1137.3 583.5
## 4315 87 55 Bricis Ilmars LAT 1142.7 589.1
## 4316 88 87 Strolia Vytautas LTU 1144.5 570.6
## 4317 89 99 Montello Giuseppe ITA 1127.2 598.1
## 4318 90 86 Nedza-Kubiniec Andrzej POL 1129.7 575.1
## 4319 91 85 Ozaki Kosuke JPN 1136.0 603.8
## 4320 92 89 Gjesbakk Fredrik NOR 1168.6 594.6
## 4321 93 49 Leitner Felix AUT 1175.9 614.8
## 4322 94 76 Crnkovic Kresimir CRO 1168.4 610.1
## 4323 95 53 Orpana Sami FIN 1160.4 629.0
## 4324 96 68 Penar Rafal POL 1168.1 607.0
## 4325 97 94 Starodubets Aleksandr KOR 1142.1 568.6
## 4326 98 64 Kim Jongmin KOR 1187.5 639.4
## 4327 99 70 Dixon Scott GBR 1195.6 608.9
## 4328 100 93 Huhtala Teemu FIN 1224.1 609.7
## 4329 101 91 Slotins Roberts LAT 1230.2 638.4
## 4330 1 1 Fourcade Martin FRA 1799.0 437.4
## 4331 2 6 Schempp Simon GER 1831.4 451.3
## 4332 3 16 Babikov Anton RUS 1826.9 466.5
## 4333 4 20 Moravec Ondrej CZE 1827.5 465.5
## 4334 5 24 Pidruchnyi Dmytro UKR 1828.2 469.1
## 4335 6 19 Eliseev Matvey RUS 1828.5 439.5
## 4336 7 5 Bjoerndalen Ole Einar NOR 1832.2 446.6
## 4337 8 11 Fillon Maillet Quentin FRA 1830.8 440.7
## 4338 9 3 Boe Johannes Thingnes NOR 1829.9 444.8
## 4339 10 15 Desthieux Simon FRA 1845.1 446.5
## 4340 11 8 Lesser Erik GER 1844.5 459.0
## 4341 12 2 Shipulin Anton RUS 1844.1 452.2
## 4342 13 23 Beatrix Jean Guillaume FRA 1835.8 473.2
## 4343 14 7 Peiffer Arnd GER 1839.9 462.6
## 4344 15 21 Birkeland Lars Helge NOR 1854.7 452.1
## 4345 16 30 Windisch Dominik ITA 1868.8 465.9
## 4346 17 27 Semenov Sergii UKR 1864.5 469.8
## 4347 18 10 Eberhard Julian AUT 1881.8 466.7
## 4348 19 12 Krcmar Michal CZE 1868.1 469.0
## 4349 20 28 Bjoentegaard Erlend NOR 1888.4 484.7
## 4350 21 9 Bailey Lowell USA 1877.2 496.1
## 4351 22 4 Tsvetkov Maxim RUS 1867.7 481.1
## 4352 23 17 Eder Simon AUT 1889.0 466.7
## 4353 24 14 Doll Benedikt GER 1905.3 490.6
## 4354 25 13 Rastorgujevs Andrejs LAT 1909.9 460.3
## 4355 26 22 Roesch Michael BEL 1892.4 476.1
## 4356 27 29 Soukup Jaroslav CZE 1904.3 524.5
## 4357 28 26 Iliev Vladimir BUL 1923.2 490.6
## 4358 29 25 Samuelsson Sebastian SWE 1940.9 473.6
## 4359 30 18 Slesingr Michal CZE 1948.1 500.5
## 4360 1 1 Fourcade Martin FRA 1620.3 404.2
## 4361 2 2 Shipulin Anton RUS 1661.1 434.1
## 4362 3 16 Fillon Maillet Quentin FRA 1669.8 414.2
## 4363 4 17 Schempp Simon GER 1674.0 415.0
## 4364 5 4 Boe Johannes Thingnes NOR 1697.5 459.1
## 4365 6 30 Roesch Michael BEL 1702.3 416.4
## 4366 7 6 Rastorgujevs Andrejs LAT 1710.3 421.5
## 4367 8 31 Beatrix Jean Guillaume FRA 1722.9 437.9
## 4368 9 20 Bailey Lowell USA 1726.8 420.4
## 4369 10 28 Krcmar Michal CZE 1727.9 420.9
## 4370 11 41 Garanichev Evgeniy RUS 1724.2 416.8
## 4371 12 14 Bjoerndalen Ole Einar NOR 1715.2 418.8
## 4372 13 9 Eberhard Julian AUT 1754.8 410.9
## 4373 14 12 Tsvetkov Maxim RUS 1738.0 422.5
## 4374 15 25 Doll Benedikt GER 1748.2 416.6
## 4375 16 10 Bjoentegaard Erlend NOR 1744.3 456.1
## 4376 17 22 Pidruchnyi Dmytro UKR 1741.0 447.8
## 4377 18 13 Samuelsson Sebastian SWE 1750.2 467.6
## 4378 19 44 Slesingr Michal CZE 1756.8 415.0
## 4379 20 19 Soukup Jaroslav CZE 1738.5 455.1
## 4380 21 7 Semenov Sergii UKR 1749.0 444.0
## 4381 22 5 Iliev Vladimir BUL 1749.8 474.7
## 4382 23 35 Desthieux Simon FRA 1767.7 437.5
## 4383 24 15 Lesser Erik GER 1764.1 452.1
## 4384 25 21 Windisch Dominik ITA 1763.6 436.2
## 4385 26 11 Peiffer Arnd GER 1758.9 427.7
## 4386 27 23 Pryma Artem UKR 1769.4 413.3
## 4387 28 26 Mesotitsch Daniel AUT 1771.7 420.6
## 4388 29 24 Wiestner Serafin SUI 1786.6 446.7
## 4389 30 32 Hofer Lukas ITA 1791.1 426.0
## 4390 31 49 Eder Simon AUT 1786.1 424.4
## 4391 32 48 Eliseev Matvey RUS 1787.1 437.7
## 4392 33 33 Chepelin Vladimir BLR 1794.3 436.2
## 4393 34 50 Babikov Anton RUS 1812.5 443.1
## 4394 35 36 Birkeland Lars Helge NOR 1801.9 463.5
## 4395 36 46 Bischl Matthias GER 1818.7 449.5
## 4396 37 38 Anev Krasimir BUL 1817.2 448.5
## 4397 38 39 Hiidensalo Olli FIN 1822.2 451.9
## 4398 39 47 Lindstroem Fredrik SWE 1853.7 455.7
## 4399 40 18 Gow Scott CAN 1829.1 442.9
## 4400 41 45 Savitskiy Yan KAZ 1834.6 496.7
## 4401 42 40 Dolder Mario SUI 1844.8 455.3
## 4402 43 42 Otcenas Martin SVK 1852.9 452.2
## 4403 44 53 Kazar Matej SVK 1864.3 466.0
## 4404 45 27 Kilchytskyy Vitaliy UKR 1866.5 477.7
## 4405 46 37 Bauer Klemen SLO 1869.1 455.1
## 4406 47 60 Malyshko Dmitry RUS 1873.7 470.5
## 4407 48 34 Yaliotnau Raman BLR 1858.9 472.3
## 4408 49 29 Komatz David AUT 1876.0 486.2
## 4409 50 8 Moravec Ondrej CZE 1917.4 433.3
## 4410 51 43 Hasilla Tomas SVK 1919.1 480.4
## 4411 52 54 Green Brendan CAN 1933.6 454.9
## 4412 53 51 Dovzan Miha SLO 1935.8 468.6
## 4413 54 56 Femling Peppe SWE 1984.9 470.8
## 4414 55 59 Sinapov Anton BUL 1999.2 476.4
## 4415 56 52 Varabei Maksim BLR 2042.6 500.4
## 4416 57 58 Oblak Lenart SLO 2042.1 491.7
## 4417 1 31 Eberhard Julian AUT 1174.8 556.4
## 4418 2 22 Slesingr Michal CZE 1188.7 588.2
## 4419 3 26 Windisch Dominik ITA 1200.1 590.1
## 4420 4 70 Hofer Lukas ITA 1199.1 584.4
## 4421 5 40 Lesser Erik GER 1213.1 615.7
## 4422 6 44 Schempp Simon GER 1221.1 597.4
## 4423 7 34 Svendsen Emil Hegle NOR 1203.7 602.6
## 4424 8 23 Fourcade Martin FRA 1226.8 627.9
## 4425 9 35 Weger Benjamin SUI 1201.2 586.4
## 4426 10 43 Iliev Vladimir BUL 1232.8 623.8
## 4427 11 48 Malyshko Dmitry RUS 1222.3 603.4
## 4428 11 65 Landertinger Dominik AUT 1226.5 630.5
## 4429 13 18 Tsvetkov Maxim RUS 1222.6 615.5
## 4430 14 25 Semenov Sergii UKR 1229.7 620.9
## 4431 15 16 Peiffer Arnd GER 1237.3 626.7
## 4432 16 75 Beatrix Jean Guillaume FRA 1219.2 591.5
## 4433 17 52 Vaclavik Adam CZE 1226.5 627.0
## 4434 18 30 Babikov Anton RUS 1219.0 610.6
## 4435 19 20 Moravec Ondrej CZE 1233.2 621.2
## 4436 20 11 L'Abee-Lund Henrik NOR 1235.0 597.9
## 4437 21 14 Krcmar Michal CZE 1241.9 602.4
## 4438 22 92 Bischl Matthias GER 1229.8 626.6
## 4439 23 4 Kilchytskyy Vitaliy UKR 1242.9 580.4
## 4440 24 17 Shipulin Anton RUS 1251.8 624.0
## 4441 25 19 Mesotitsch Daniel AUT 1242.6 602.5
## 4442 26 93 Guzik Grzegorz POL 1239.6 614.6
## 4443 27 37 Fillon Maillet Quentin FRA 1254.0 618.5
## 4444 28 56 Siemakov Volodymyr UKR 1246.6 593.2
## 4445 29 81 Jaeger Martin SUI 1243.3 608.8
## 4446 30 49 Bjoentegaard Erlend NOR 1257.6 637.9
## 4447 31 99 Christiansen Vetle Sjaastad NOR 1232.4 617.9
## 4448 32 45 Bjoerndalen Ole Einar NOR 1254.5 595.2
## 4449 33 95 Shopin Yury RUS 1246.3 633.9
## 4450 34 32 Lindstroem Fredrik SWE 1262.5 622.3
## 4451 35 21 Burke Tim USA 1263.7 645.3
## 4452 36 36 Roesch Michael BEL 1252.1 612.6
## 4453 37 76 Crnkovic Kresimir CRO 1256.0 613.3
## 4454 38 96 Guigonnat Antonin FRA 1265.3 619.0
## 4455 39 100 Leitner Felix AUT 1264.7 599.0
## 4456 40 58 Savitskiy Yan KAZ 1258.1 605.3
## 4457 41 97 Faur Remus ROU 1254.4 623.4
## 4458 42 2 Claude Fabien FRA 1263.7 639.2
## 4459 43 42 Gow Scott CAN 1263.6 636.3
## 4460 44 57 Doll Benedikt GER 1298.6 674.3
## 4461 45 9 Dolder Mario SUI 1267.5 595.5
## 4462 46 82 Currier Russell USA 1284.1 638.6
## 4463 47 24 Eder Simon AUT 1284.7 610.4
## 4464 48 89 Kobonoki Tsukasa JPN 1274.1 640.4
## 4465 49 10 Graf Florian GER 1266.5 616.2
## 4466 50 41 Yaliotnau Raman BLR 1292.9 648.3
## 4467 51 105 Lee Inbok KOR 1250.4 618.8
## 4468 52 102 Montello Giuseppe ITA 1290.9 642.5
## 4469 53 91 Ermits Kalev EST 1271.3 624.0
## 4470 54 86 Bocharnikov Sergey BLR 1299.9 593.6
## 4471 55 84 Kubaliak Michal SVK 1256.4 610.2
## 4472 56 15 Kazar Matej SVK 1292.7 624.5
## 4473 57 13 Pryma Artem UKR 1302.5 642.5
## 4474 58 94 Arwidson Tobias SWE 1273.0 620.0
## 4475 59 77 Bricis Ilmars LAT 1283.0 605.2
## 4476 60 51 Gerdzhikov Dimitar BUL 1294.1 638.9
## 4477 61 63 Wiestner Serafin SUI 1288.1 642.4
## 4478 62 78 Pantov Anton KAZ 1285.1 598.8
## 4479 63 54 Strolia Vytautas LTU 1290.5 657.9
## 4480 64 39 Desthieux Simon FRA 1310.9 632.3
## 4481 65 50 Kaukenas Tomas LTU 1289.6 651.5
## 4482 66 74 Buta George ROU 1279.7 614.9
## 4483 67 62 Lessing Roland EST 1307.7 641.7
## 4484 68 67 Davies Macx CAN 1301.4 663.6
## 4485 69 12 Green Brendan CAN 1326.9 621.0
## 4486 70 6 Bormolini Thomas ITA 1313.8 588.5
## 4487 71 3 Soukup Jaroslav CZE 1326.6 676.0
## 4488 72 28 Puchianu Cornel ROU 1317.8 597.4
## 4489 73 1 Komatz David AUT 1306.2 673.3
## 4490 73 73 Tachizaki Mikito JPN 1319.3 638.7
## 4491 75 68 Otcenas Martin SVK 1319.7 595.0
## 4492 76 79 Stenersen Torstein SWE 1326.2 647.7
## 4493 77 80 Lusa Daumants LAT 1292.1 648.2
## 4494 78 87 Szczurek Lukasz POL 1320.9 633.1
## 4495 79 55 Kim Jongmin KOR 1300.8 628.8
## 4496 80 47 Doherty Sean USA 1317.0 656.1
## 4497 81 69 Dovzan Miha SLO 1312.4 612.3
## 4498 82 106 Invenius Tuukka FIN 1309.3 651.9
## 4499 83 101 Partalov Dimitar BUL 1319.5 641.2
## 4500 84 8 Sinapov Anton BUL 1354.8 630.6
## 4501 85 64 Varabei Maksim BLR 1347.4 654.1
## 4502 86 72 Ponsiluoma Martin SWE 1344.1 665.7
## 4503 87 5 Chepelin Vladimir BLR 1369.4 609.4
## 4504 88 83 Yeremin Roman KAZ 1369.2 671.3
## 4505 89 61 Trsan Rok SLO 1346.3 655.2
## 4506 90 88 Hudec Matthew CAN 1328.7 662.5
## 4507 91 46 Orpana Sami FIN 1335.3 655.1
## 4508 92 38 Gow Christian CAN 1350.0 679.1
## 4509 93 27 Koiv Kauri EST 1354.2 689.6
## 4510 94 85 Braun Maxim KAZ 1381.8 638.7
## 4511 95 7 Eliseev Matvey RUS 1391.1 657.9
## 4512 96 60 Angelis Apostolos GRE 1387.6 640.1
## 4513 97 29 Bauer Klemen SLO 1426.1 639.4
## 4514 98 104 Slotins Roberts LAT 1391.4 682.3
## 4515 99 53 Loukkaanhuhta Mikko FIN 1404.8 680.9
## 4516 100 59 Nedza-Kubiniec Andrzej POL 1407.8 685.1
## 4517 101 103 Suslavicius Rokas LTU 1416.1 692.0
## 4518 102 71 Hodzic Edin SRB 1442.0 676.3
## 4519 1 3 Schempp Simon GER 1930.6 479.5
## 4520 2 6 Lesser Erik GER 1929.6 499.6
## 4521 3 1 Fourcade Martin FRA 1929.3 458.8
## 4522 4 16 Beatrix Jean Guillaume FRA 1929.7 473.8
## 4523 5 8 Bjoerndalen Ole Einar NOR 1927.4 501.1
## 4524 6 17 Doll Benedikt GER 1977.9 483.1
## 4525 7 7 Svendsen Emil Hegle NOR 1960.0 504.9
## 4526 8 10 Babikov Anton RUS 1967.1 502.4
## 4527 9 15 Krcmar Michal CZE 1981.5 477.9
## 4528 10 23 Weger Benjamin SUI 1979.1 476.4
## 4529 11 5 Tsvetkov Maxim RUS 1976.2 487.8
## 4530 12 28 Landertinger Dominik AUT 1984.8 513.4
## 4531 13 14 Moravec Ondrej CZE 2003.4 511.6
## 4532 14 2 Shipulin Anton RUS 1998.1 473.4
## 4533 15 18 Eliseev Matvey RUS 1992.6 495.9
## 4534 16 24 Hofer Lukas ITA 2008.0 501.3
## 4535 17 27 Malyshko Dmitry RUS 2013.3 482.1
## 4536 18 4 Peiffer Arnd GER 2025.3 534.1
## 4537 19 20 Roesch Michael BEL 2003.3 500.9
## 4538 20 26 L'Abee-Lund Henrik NOR 2022.7 478.1
## 4539 21 25 Iliev Vladimir BUL 2027.6 473.9
## 4540 22 9 Eberhard Julian AUT 2043.8 508.1
## 4541 23 21 Semenov Sergii UKR 2043.3 506.3
## 4542 24 30 Mesotitsch Daniel AUT 2036.0 490.8
## 4543 25 29 Siemakov Volodymyr UKR 2042.9 517.8
## 4544 26 19 Desthieux Simon FRA 2042.8 536.4
## 4545 27 22 Pidruchnyi Dmytro UKR 2057.1 503.7
## 4546 28 11 Windisch Dominik ITA 2065.7 529.1
## 4547 29 12 Slesingr Michal CZE 2107.6 497.7
## 4548 1 8 Fourcade Martin FRA 1821.7 442.4
## 4549 2 15 Peiffer Arnd GER 1916.4 500.3
## 4550 3 3 Windisch Dominik ITA 1947.4 493.7
## 4551 4 7 Svendsen Emil Hegle NOR 1946.1 477.7
## 4552 5 5 Lesser Erik GER 1959.4 520.9
## 4553 6 18 Babikov Anton RUS 1953.5 439.5
## 4554 7 2 Slesingr Michal CZE 1982.8 544.7
## 4555 8 20 L'Abee-Lund Henrik NOR 1979.2 490.7
## 4556 9 57 Pryma Artem UKR 1975.8 464.9
## 4557 10 13 Tsvetkov Maxim RUS 1970.6 549.0
## 4558 11 9 Weger Benjamin SUI 1984.8 451.2
## 4559 12 4 Hofer Lukas ITA 1990.8 445.2
## 4560 13 28 Siemakov Volodymyr UKR 1983.1 465.2
## 4561 14 36 Roesch Michael BEL 1983.2 468.2
## 4562 15 16 Beatrix Jean Guillaume FRA 1976.6 509.7
## 4563 16 24 Shipulin Anton RUS 2009.5 468.8
## 4564 17 10 Iliev Vladimir BUL 2009.0 464.3
## 4565 18 11 Malyshko Dmitry RUS 2004.4 459.2
## 4566 19 1 Eberhard Julian AUT 2027.4 583.3
## 4567 20 6 Schempp Simon GER 2017.3 459.2
## 4568 21 19 Moravec Ondrej CZE 2010.3 483.7
## 4569 22 25 Mesotitsch Daniel AUT 2009.1 489.2
## 4570 23 42 Claude Fabien FRA 2034.9 515.5
## 4571 24 44 Doll Benedikt GER 2039.6 446.0
## 4572 25 27 Fillon Maillet Quentin FRA 2028.0 485.8
## 4573 26 35 Burke Tim USA 2041.5 498.9
## 4574 27 31 Christiansen Vetle Sjaastad NOR 2028.1 466.3
## 4575 28 21 Krcmar Michal CZE 2048.1 535.0
## 4576 29 14 Semenov Sergii UKR 2047.8 498.4
## 4577 30 12 Landertinger Dominik AUT 2083.6 517.7
## 4578 31 33 Shopin Yury RUS 2093.4 503.6
## 4579 32 38 Guigonnat Antonin FRA 2110.4 476.8
## 4580 33 17 Vaclavik Adam CZE 2098.3 510.3
## 4581 34 46 Currier Russell USA 2116.0 505.9
## 4582 35 22 Bischl Matthias GER 2118.8 533.2
## 4583 36 54 Bocharnikov Sergey BLR 2123.8 497.1
## 4584 37 32 Bjoerndalen Ole Einar NOR 2108.5 506.9
## 4585 38 60 Gerdzhikov Dimitar BUL 2129.4 512.1
## 4586 39 56 Kazar Matej SVK 2140.5 509.1
## 4587 40 30 Bjoentegaard Erlend NOR 2164.9 561.9
## 4588 41 41 Faur Remus ROU 2155.9 515.4
## 4589 42 34 Lindstroem Fredrik SWE 2168.0 512.5
## 4590 43 52 Montello Giuseppe ITA 2168.4 491.1
## 4591 44 40 Savitskiy Yan KAZ 2180.4 478.1
## 4592 45 43 Gow Scott CAN 2174.3 536.6
## 4593 46 45 Dolder Mario SUI 2187.4 485.6
## 4594 47 58 Arwidson Tobias SWE 2165.1 483.7
## 4595 48 23 Kilchytskyy Vitaliy UKR 2215.8 574.4
## 4596 49 49 Graf Florian GER 2215.3 588.4
## 4597 50 29 Jaeger Martin SUI 2246.6 545.4
## 4598 51 39 Leitner Felix AUT 2253.4 529.5
## 4599 52 53 Ermits Kalev EST 2254.1 534.7
## 4600 53 26 Guzik Grzegorz POL 2280.3 520.0
## 4601 54 48 Kobonoki Tsukasa JPN 2291.6 551.1
## 4602 55 55 Kubaliak Michal SVK 2371.2 576.0
## 4603 56 51 Lee Inbok KOR 2403.4 633.9
## 4604 1 11 Fourcade Martin FRA 986.6 487.1
## 4605 2 44 Lindstroem Fredrik SWE 1024.1 505.8
## 4606 3 2 Peiffer Arnd GER 1022.7 506.8
## 4607 4 18 Doll Benedikt GER 1030.3 527.8
## 4608 5 23 Eberhard Julian AUT 1042.1 518.1
## 4609 6 43 Windisch Dominik ITA 1022.0 505.5
## 4610 7 45 Babikov Anton RUS 1031.9 518.3
## 4611 8 77 Desthieux Simon FRA 1035.5 523.3
## 4612 9 24 Pidruchnyi Dmytro UKR 1029.4 517.1
## 4613 10 26 Fourcade Simon FRA 1034.1 503.7
## 4614 10 31 Tsvetkov Maxim RUS 1026.3 520.1
## 4615 12 20 Bjoerndalen Ole Einar NOR 1024.6 509.9
## 4616 13 30 Bailey Lowell USA 1025.4 509.2
## 4617 14 1 Svendsen Emil Hegle NOR 1041.0 527.2
## 4618 15 41 Lesser Erik GER 1032.4 511.5
## 4619 16 61 Eliseev Matvey RUS 1043.8 531.3
## 4620 17 9 Slesingr Michal CZE 1039.5 510.8
## 4621 18 40 Rastorgujevs Andrejs LAT 1042.8 529.3
## 4622 19 79 Samuelsson Sebastian SWE 1034.1 519.4
## 4623 20 32 Pryma Artem UKR 1035.9 522.2
## 4624 21 22 Schempp Simon GER 1056.4 520.2
## 4625 22 47 Bjoentegaard Erlend NOR 1045.7 533.6
## 4626 23 35 Beatrix Jean Guillaume FRA 1041.2 527.1
## 4627 24 7 Eder Simon AUT 1043.2 525.8
## 4628 25 38 Weger Benjamin SUI 1045.0 521.8
## 4629 26 67 Wiestner Serafin SUI 1058.1 543.9
## 4630 27 60 Birkeland Lars Helge NOR 1044.8 506.3
## 4631 28 33 Shipulin Anton RUS 1050.5 526.7
## 4632 29 16 Burke Tim USA 1058.7 540.9
## 4633 30 14 Boe Johannes Thingnes NOR 1066.2 534.3
## 4634 31 95 Malyshko Dmitry RUS 1066.2 529.9
## 4635 32 12 Green Brendan CAN 1075.4 518.6
## 4636 33 19 Landertinger Dominik AUT 1074.5 558.8
## 4637 34 70 Kilchytskyy Vitaliy UKR 1067.9 520.7
## 4638 35 27 Moravec Ondrej CZE 1065.3 548.2
## 4639 36 39 Mesotitsch Daniel AUT 1062.5 522.0
## 4640 37 29 Semenov Sergii UKR 1063.5 539.4
## 4641 38 42 Krcmar Michal CZE 1072.1 545.1
## 4642 39 96 Claude Fabien FRA 1081.3 554.1
## 4643 40 21 Hofer Lukas ITA 1097.5 538.4
## 4644 41 69 Roesch Michael BEL 1071.2 558.2
## 4645 42 15 Anev Krasimir BUL 1083.7 565.0
## 4646 43 5 Nelin Jesper SWE 1093.6 585.2
## 4647 44 72 Hasilla Tomas SVK 1084.0 528.6
## 4648 45 50 Leitner Felix AUT 1079.7 562.0
## 4649 46 83 Gerdzhikov Dimitar BUL 1075.6 531.8
## 4650 47 81 Yaliotnau Raman BLR 1098.7 538.4
## 4651 48 48 Trsan Rok SLO 1096.2 527.7
## 4652 49 25 Garanichev Evgeniy RUS 1093.9 533.1
## 4653 50 62 Gow Scott CAN 1083.2 543.0
## 4654 51 55 Hiidensalo Olli FIN 1095.8 560.8
## 4655 52 46 Davies Macx CAN 1089.8 549.2
## 4656 53 6 Kaukenas Tomas LTU 1080.1 537.0
## 4657 54 28 Fillon Maillet Quentin FRA 1102.5 532.0
## 4658 55 74 Vaclavik Adam CZE 1096.8 519.8
## 4659 56 8 Chepelin Vladimir BLR 1100.3 558.5
## 4660 57 85 Rees Roman GER 1086.2 551.7
## 4661 58 100 L'Abee-Lund Henrik NOR 1117.4 557.6
## 4662 59 73 Graf Florian GER 1093.5 546.9
## 4663 60 10 Dolder Mario SUI 1116.6 550.7
## 4664 61 34 Varabei Maksim BLR 1107.5 567.5
## 4665 62 37 Iliev Vladimir BUL 1115.5 578.9
## 4666 63 99 Grossegger Sven AUT 1103.7 579.1
## 4667 64 56 Puchianu Cornel ROU 1113.7 592.4
## 4668 65 66 Zahkna Rene EST 1095.5 555.5
## 4669 66 87 Podkorytov Vassiliy KAZ 1106.7 540.7
## 4670 67 58 Pantov Anton KAZ 1090.6 543.9
## 4671 68 57 Braun Maxim KAZ 1104.0 536.3
## 4672 69 53 Currier Russell USA 1130.7 545.8
## 4673 70 76 Tachizaki Mikito JPN 1099.1 557.8
## 4674 71 63 Bormolini Thomas ITA 1104.2 552.9
## 4675 72 75 Faur Remus ROU 1109.2 571.3
## 4676 73 101 Sima Michal SVK 1108.9 565.8
## 4677 74 78 Gronman Tuomas FIN 1096.7 545.4
## 4678 75 84 Siemakov Volodymyr UKR 1121.7 576.0
## 4679 76 80 Drinovec Mitja SLO 1108.3 544.1
## 4680 77 71 Sinapov Anton BUL 1132.4 602.7
## 4681 78 94 Finello Jeremy SUI 1120.9 560.7
## 4682 79 59 Janik Mateusz POL 1115.9 556.8
## 4683 80 64 Kim Jongmin KOR 1100.9 560.6
## 4684 81 65 Dombrovski Karol LTU 1132.4 592.9
## 4685 82 98 Buta George ROU 1129.2 566.8
## 4686 83 51 Koiv Kauri EST 1138.9 607.6
## 4687 84 105 Montello Giuseppe ITA 1138.5 592.4
## 4688 85 3 Bauer Klemen SLO 1151.2 601.3
## 4689 86 90 Penar Rafal POL 1126.0 574.5
## 4690 87 102 Oblak Lenart SLO 1130.1 591.1
## 4691 88 97 Strolia Vytautas LTU 1144.8 551.4
## 4692 89 89 Slotins Roberts LAT 1143.7 602.1
## 4693 90 86 Gow Christian CAN 1131.7 596.7
## 4694 91 54 Bricis Ilmars LAT 1155.3 594.1
## 4695 92 4 Kazar Matej SVK 1193.2 595.9
## 4696 93 93 Soukup Jaroslav CZE 1170.1 593.9
## 4697 94 103 Stenersen Torstein SWE 1164.2 561.6
## 4698 95 92 Huhtala Teemu FIN 1158.1 598.2
## 4699 96 17 Smith Nathan CAN 1169.6 596.6
## 4700 97 36 Otcenas Martin SVK 1206.9 663.6
## 4701 98 82 Talihaerm Johan EST 1196.3 641.2
## 4702 99 52 Guzik Grzegorz POL 1191.9 563.3
## 4703 100 13 Savitskiy Yan KAZ 1237.4 617.8
## 4704 101 91 Lee Inbok KOR 1185.6 589.8
## 4705 102 88 Kobonoki Tsukasa JPN 1226.7 629.9
## 4706 103 68 Dixon Scott GBR 1188.9 610.4
## 4707 104 49 Crnkovic Kresimir CRO 1246.6 598.1
## 4708 105 104 Liadov Yuryi BLR 1219.9 636.6
## 4709 1 10 Fourcade Martin FRA 2557.6 619.1
## 4710 2 15 Boe Johannes Thingnes NOR 2573.7 765.6
## 4711 3 17 Chepelin Vladimir BLR 2609.3 640.2
## 4712 4 40 Birkeland Lars Helge NOR 2668.5 629.3
## 4713 5 25 Bjoerndalen Ole Einar NOR 2672.0 702.2
## 4714 6 1 Rastorgujevs Andrejs LAT 2694.3 771.9
## 4715 7 21 Anev Krasimir BUL 2673.5 644.3
## 4716 8 94 Graf Florian GER 2673.0 716.0
## 4717 9 8 Lindstroem Fredrik SWE 2694.6 698.0
## 4718 10 19 Weger Benjamin SUI 2690.2 719.9
## 4719 11 35 Shipulin Anton RUS 2713.0 825.8
## 4720 12 16 Eder Simon AUT 2725.0 700.7
## 4721 13 36 Fourcade Simon FRA 2726.9 634.3
## 4722 14 78 Puchianu Cornel ROU 2741.1 711.5
## 4723 15 18 Bailey Lowell USA 2765.0 763.0
## 4724 16 27 Burke Tim USA 2747.7 720.2
## 4725 17 23 Moravec Ondrej CZE 2751.1 650.8
## 4726 18 29 Eberhard Julian AUT 2799.5 764.8
## 4727 19 33 Hofer Lukas ITA 2766.0 658.6
## 4728 20 79 Gronman Tuomas FIN 2742.0 675.0
## 4729 21 52 Koiv Kauri EST 2768.3 716.6
## 4730 22 2 Tsvetkov Maxim RUS 2776.3 742.0
## 4731 23 7 Garanichev Evgeniy RUS 2797.6 696.8
## 4732 24 97 Gjermundshaug Vegard NOR 2803.2 633.7
## 4733 25 5 Slesingr Michal CZE 2800.1 697.1
## 4734 26 62 Mesotitsch Daniel AUT 2788.3 788.7
## 4735 27 81 Hasilla Tomas SVK 2775.9 727.6
## 4736 28 20 Fillon Maillet Quentin FRA 2808.5 697.7
## 4737 29 46 Otcenas Martin SVK 2788.2 664.3
## 4738 30 6 Doll Benedikt GER 2822.3 873.7
## 4739 31 45 Lesser Erik GER 2814.5 690.1
## 4740 32 26 Peiffer Arnd GER 2808.8 766.6
## 4741 33 3 Bauer Klemen SLO 2825.1 694.3
## 4742 34 41 Iliev Vladimir BUL 2831.4 683.9
## 4743 35 76 Beatrix Jean Guillaume FRA 2809.7 706.6
## 4744 36 24 Kazar Matej SVK 2823.1 653.2
## 4745 37 50 Sinapov Anton BUL 2815.6 734.7
## 4746 38 63 Bormolini Thomas ITA 2834.7 784.4
## 4747 39 83 Drinovec Mitja SLO 2809.9 739.1
## 4748 40 84 Varabei Maksim BLR 2823.3 733.8
## 4749 41 88 Siemakov Volodymyr UKR 2819.3 744.1
## 4750 42 48 Krcmar Michal CZE 2859.7 777.1
## 4751 43 22 Smith Nathan CAN 2833.4 737.4
## 4752 44 13 Savitskiy Yan KAZ 2858.8 784.8
## 4753 45 43 Stenersen Torstein SWE 2861.0 788.5
## 4754 46 9 Schempp Simon GER 2895.2 742.8
## 4755 47 56 Buta George ROU 2849.6 744.6
## 4756 48 73 Rees Roman GER 2885.4 829.4
## 4757 49 28 Desthieux Simon FRA 2879.9 883.8
## 4758 50 86 Shopin Yury RUS 2889.9 785.1
## 4759 51 11 Bjoentegaard Erlend NOR 2894.2 846.2
## 4760 52 64 Dolder Mario SUI 2909.9 796.0
## 4761 53 60 Kilchytskyy Vitaliy UKR 2919.9 736.5
## 4762 54 77 Currier Russell USA 2949.3 771.5
## 4763 55 38 Wiestner Serafin SUI 2946.4 834.8
## 4764 56 54 Hiidensalo Olli FIN 2939.8 751.3
## 4765 57 44 Babikov Anton RUS 2950.1 847.8
## 4766 58 90 Finello Jeremy SUI 2954.8 772.3
## 4767 59 34 Pryma Artem UKR 2956.1 831.7
## 4768 60 67 Gow Scott CAN 2949.2 800.2
## 4769 61 39 Yaliotnau Raman BLR 2963.4 828.0
## 4770 62 42 Davies Macx CAN 2923.5 760.5
## 4771 63 82 Bricis Ilmars LAT 2954.5 859.7
## 4772 64 80 Guzik Grzegorz POL 2954.0 797.6
## 4773 65 70 L'Abee-Lund Henrik NOR 3003.1 750.8
## 4774 66 4 Windisch Dominik ITA 2987.9 887.8
## 4775 67 55 Trsan Rok SLO 2966.2 815.2
## 4776 68 99 Strolia Vytautas LTU 2962.2 821.3
## 4777 69 69 Nelin Jesper SWE 3023.6 689.5
## 4778 70 47 Grossegger Sven AUT 2983.2 750.9
## 4779 71 51 Bocharnikov Sergey BLR 3024.1 767.5
## 4780 72 85 Ungureanu Marius ROU 2984.3 807.2
## 4781 73 87 Tachizaki Mikito JPN 3015.4 673.2
## 4782 74 68 Braun Maxim KAZ 2999.8 750.3
## 4783 75 72 Roesch Michael BEL 3027.4 893.8
## 4784 76 101 Kletcherov Michail BUL 2994.8 770.0
## 4785 77 103 Claude Fabien FRA 3018.9 880.8
## 4786 78 57 Crnkovic Kresimir CRO 3048.9 723.1
## 4787 79 66 Dombrovski Karol LTU 3037.9 681.0
## 4788 80 74 Malyshko Dmitry RUS 3070.8 690.9
## 4789 81 106 Penar Rafal POL 3005.7 823.3
## 4790 82 59 Pantov Anton KAZ 3021.3 829.3
## 4791 83 91 Femling Peppe SWE 3050.3 731.5
## 4792 84 65 Zahkna Rene EST 3067.8 741.0
## 4793 85 30 Kaukenas Tomas LTU 3090.5 848.5
## 4794 86 49 Kobonoki Tsukasa JPN 3099.2 750.3
## 4795 87 102 Lee Inbok KOR 3097.3 824.0
## 4796 88 12 Landertinger Dominik AUT 3140.4 768.6
## 4797 89 14 Green Brendan CAN 3100.3 857.5
## 4798 90 75 Janik Mateusz POL 3099.5 831.1
## 4799 91 31 Zhyrnyi Oleksandr UKR 3132.0 806.2
## 4800 92 32 Semenov Sergii UKR 3181.1 891.2
## 4801 93 58 Starodubets Aleksandr KOR 3148.0 838.8
## 4802 94 105 Lusa Daumants LAT 3135.5 859.5
## 4803 95 92 Vaclavik Adam CZE 3225.1 854.0
## 4804 96 53 Dovzan Miha SLO 3196.4 857.2
## 4805 97 61 Soukup Jaroslav CZE 3220.0 924.5
## 4806 98 100 Talihaerm Johan EST 3257.3 926.1
## 4807 99 96 Gow Christian CAN 3202.1 820.8
## 4808 100 89 Sima Michal SVK 3322.8 900.8
## 4809 101 98 Podkorytov Vassiliy KAZ 3344.8 808.4
## 4810 102 93 Montello Giuseppe ITA 3356.8 839.5
## 4811 103 104 Huhtala Teemu FIN 3337.3 876.1
## 4812 1 7 Babikov Anton RUS 1575.3 381.8
## 4813 2 11 Tsvetkov Maxim RUS 1579.2 383.2
## 4814 3 1 Fourcade Martin FRA 1586.1 425.0
## 4815 4 3 Peiffer Arnd GER 1628.5 379.4
## 4816 5 15 Lesser Erik GER 1626.9 406.0
## 4817 6 10 Fourcade Simon FRA 1620.3 383.1
## 4818 7 38 Krcmar Michal CZE 1633.6 389.6
## 4819 8 28 Shipulin Anton RUS 1639.2 373.5
## 4820 9 21 Schempp Simon GER 1643.4 399.9
## 4821 10 30 Boe Johannes Thingnes NOR 1650.7 393.5
## 4822 11 23 Beatrix Jean Guillaume FRA 1642.7 410.7
## 4823 12 12 Bjoerndalen Ole Einar NOR 1645.1 405.9
## 4824 13 9 Pidruchnyi Dmytro UKR 1644.7 413.0
## 4825 14 8 Desthieux Simon FRA 1650.6 439.9
## 4826 15 13 Bailey Lowell USA 1642.2 442.2
## 4827 16 14 Svendsen Emil Hegle NOR 1661.9 387.0
## 4828 17 16 Eliseev Matvey RUS 1664.7 427.0
## 4829 18 35 Moravec Ondrej CZE 1668.1 390.8
## 4830 19 58 L'Abee-Lund Henrik NOR 1675.8 385.4
## 4831 20 19 Samuelsson Sebastian SWE 1671.7 404.5
## 4832 21 33 Landertinger Dominik AUT 1671.3 399.7
## 4833 22 17 Slesingr Michal CZE 1675.2 385.6
## 4834 23 24 Eder Simon AUT 1670.8 424.4
## 4835 24 20 Pryma Artem UKR 1666.7 439.1
## 4836 25 6 Windisch Dominik ITA 1665.9 414.2
## 4837 26 31 Malyshko Dmitry RUS 1680.2 395.5
## 4838 27 5 Eberhard Julian AUT 1691.8 420.5
## 4839 28 27 Birkeland Lars Helge NOR 1674.3 424.5
## 4840 29 39 Claude Fabien FRA 1691.4 400.6
## 4841 30 49 Garanichev Evgeniy RUS 1699.6 407.9
## 4842 31 18 Rastorgujevs Andrejs LAT 1697.3 432.0
## 4843 32 43 Nelin Jesper SWE 1705.1 407.8
## 4844 33 4 Doll Benedikt GER 1717.9 455.3
## 4845 34 36 Mesotitsch Daniel AUT 1717.1 396.0
## 4846 35 29 Burke Tim USA 1719.8 429.7
## 4847 36 57 Rees Roman GER 1729.2 417.1
## 4848 37 22 Bjoentegaard Erlend NOR 1734.4 420.1
## 4849 38 2 Lindstroem Fredrik SWE 1726.5 452.0
## 4850 39 41 Roesch Michael BEL 1739.8 389.0
## 4851 40 40 Hofer Lukas ITA 1746.5 437.7
## 4852 41 59 Graf Florian GER 1743.8 423.3
## 4853 42 55 Vaclavik Adam CZE 1756.6 436.5
## 4854 43 45 Leitner Felix AUT 1754.4 415.4
## 4855 44 44 Hasilla Tomas SVK 1755.3 412.3
## 4856 45 51 Hiidensalo Olli FIN 1763.5 446.7
## 4857 46 42 Anev Krasimir BUL 1763.0 439.7
## 4858 47 50 Gow Scott CAN 1769.8 427.0
## 4859 48 26 Wiestner Serafin SUI 1780.4 430.5
## 4860 49 34 Kilchytskyy Vitaliy UKR 1778.8 420.6
## 4861 50 32 Green Brendan CAN 1786.5 450.2
## 4862 51 52 Davies Macx CAN 1795.1 455.2
## 4863 52 37 Semenov Sergii UKR 1784.3 465.9
## 4864 53 60 Dolder Mario SUI 1805.9 476.0
## 4865 54 47 Yaliotnau Raman BLR 1813.8 444.0
## 4866 55 48 Trsan Rok SLO 1828.5 481.0
## 4867 56 25 Weger Benjamin SUI 1839.1 429.8
## 4868 57 56 Chepelin Vladimir BLR 1869.3 485.6
## 4869 58 53 Kaukenas Tomas LTU 1857.6 484.7
## 4870 59 46 Gerdzhikov Dimitar BUL 1864.3 465.2
## 4871 1 15 Boe Johannes Thingnes NOR 991.1 501.8
## 4872 2 27 Fourcade Martin FRA 1015.5 523.7
## 4873 3 106 Shipulin Anton RUS 1006.0 512.5
## 4874 4 12 Landertinger Dominik AUT 1021.3 519.4
## 4875 5 8 Semenov Sergii UKR 1018.0 514.9
## 4876 6 36 Boe Tarjei NOR 1028.6 531.0
## 4877 7 28 Moravec Ondrej CZE 1015.9 512.5
## 4878 8 4 Garanichev Evgeniy RUS 1009.4 510.2
## 4879 9 48 Desthieux Simon FRA 1029.4 526.5
## 4880 10 100 Eberhard Julian AUT 1036.1 537.2
## 4881 11 51 Doll Benedikt GER 1036.6 515.0
## 4882 12 107 Eder Simon AUT 1029.8 511.0
## 4883 13 19 Slesingr Michal CZE 1043.6 521.1
## 4884 14 1 Peiffer Arnd GER 1043.6 539.6
## 4885 15 14 Lindstroem Fredrik SWE 1033.2 538.2
## 4886 16 32 Fillon Maillet Quentin FRA 1041.1 504.9
## 4887 17 3 Bauer Klemen SLO 1036.4 534.4
## 4888 18 38 Anev Krasimir BUL 1034.6 520.5
## 4889 19 22 Beatrix Jean Guillaume FRA 1043.6 539.6
## 4890 20 9 Svendsen Emil Hegle NOR 1036.2 539.7
## 4891 21 24 Hofer Lukas ITA 1049.8 513.1
## 4892 22 2 Bocharnikov Sergey BLR 1044.8 539.4
## 4893 23 29 Rastorgujevs Andrejs LAT 1062.4 552.2
## 4894 24 25 Schempp Simon GER 1053.1 520.2
## 4895 25 94 Gjesbakk Fredrik NOR 1034.1 529.6
## 4896 26 52 Puchianu Cornel ROU 1043.4 531.9
## 4897 27 18 Weger Benjamin SUI 1044.2 530.2
## 4898 28 50 Krcmar Michal CZE 1060.3 557.7
## 4899 29 43 Wiestner Serafin SUI 1067.3 539.8
## 4900 30 108 Volkov Alexey RUS 1046.7 530.3
## 4901 31 49 Eliseev Matvey RUS 1019.8 515.9
## 4902 32 37 Waeger Lorenz AUT 1053.4 534.7
## 4903 33 41 L'Abee-Lund Henrik NOR 1086.2 537.0
## 4904 34 55 Dovzan Miha SLO 1057.6 531.8
## 4905 35 21 Doherty Sean USA 1070.3 566.7
## 4906 36 42 Rees Roman GER 1058.5 552.3
## 4907 37 86 Bormolini Thomas ITA 1052.2 552.0
## 4908 38 95 Loginov Alexander RUS 1071.3 564.6
## 4909 39 39 Pryma Artem UKR 1067.2 535.5
## 4910 40 5 Windisch Dominik ITA 1077.8 533.8
## 4911 40 89 Claude Fabien FRA 1069.3 520.3
## 4912 42 35 Babikov Anton RUS 1072.7 540.8
## 4913 43 65 Dolder Mario SUI 1051.1 553.6
## 4914 44 20 Bailey Lowell USA 1082.4 580.7
## 4915 45 92 Darozhka Aliaksandr BLR 1068.2 549.4
## 4916 46 16 Bjoerndalen Ole Einar NOR 1069.9 526.7
## 4917 47 74 Fourcade Simon FRA 1080.4 548.3
## 4918 48 17 Lesser Erik GER 1089.5 547.8
## 4919 49 69 Nawrath Philipp GER 1083.6 528.8
## 4920 50 62 Trsan Rok SLO 1085.5 539.9
## 4921 51 47 Abasheu Dzmitry BLR 1084.1 568.2
## 4922 52 85 Soukup Jaroslav CZE 1078.5 560.3
## 4923 53 56 Christiansen Vetle Sjaastad NOR 1082.4 550.3
## 4924 54 45 Samuelsson Sebastian SWE 1104.6 572.7
## 4925 55 7 Lapshin Timofei KOR 1073.6 549.0
## 4926 56 53 Vaclavik Adam CZE 1107.9 548.1
## 4927 57 79 Sinapov Anton BUL 1106.8 572.7
## 4928 58 33 Iliev Vladimir BUL 1087.2 556.6
## 4929 59 72 Kazar Matej SVK 1099.5 552.7
## 4930 60 88 Gerdzhikov Dimitar BUL 1103.0 571.0
## 4931 61 26 Gow Christian CAN 1071.6 553.0
## 4932 61 87 Mesotitsch Daniel AUT 1115.9 608.6
## 4933 63 66 Pantov Anton KAZ 1099.1 569.7
## 4934 64 10 Pidruchnyi Dmytro UKR 1082.3 548.8
## 4935 65 57 Dixon Scott GBR 1092.0 553.6
## 4936 66 76 Tachizaki Mikito JPN 1108.3 545.7
## 4937 67 13 Hasilla Tomas SVK 1094.1 559.6
## 4938 68 83 Varabei Maksim BLR 1114.2 566.7
## 4939 69 64 Femling Peppe SWE 1105.7 558.3
## 4940 70 103 Jaeger Martin SUI 1133.7 577.8
## 4941 71 59 Hiidensalo Olli FIN 1134.4 551.2
## 4942 72 98 Zahkna Rene EST 1088.3 554.9
## 4943 73 84 Kobonoki Tsukasa JPN 1117.0 542.4
## 4944 74 102 Nelin Jesper SWE 1134.1 543.8
## 4945 75 75 Podkorytov Vassiliy KAZ 1114.2 570.9
## 4946 76 78 Guzik Grzegorz POL 1112.9 548.4
## 4947 77 44 Otcenas Martin SVK 1123.4 540.9
## 4948 78 11 Roesch Michael BEL 1098.6 591.8
## 4949 79 34 Faur Remus ROU 1113.3 594.6
## 4950 80 71 Montello Giuseppe ITA 1129.0 555.9
## 4951 81 61 Lessing Roland EST 1130.4 587.2
## 4952 82 6 Gronman Tuomas FIN 1119.7 540.7
## 4953 83 58 Skjelvik Kristoffer NOR 1099.0 559.5
## 4954 84 31 Kaukenas Tomas LTU 1127.9 577.5
## 4955 85 40 Green Brendan CAN 1120.8 564.9
## 4956 86 54 Malinovskii Igor RUS 1139.3 587.4
## 4957 87 30 Koiv Kauri EST 1131.9 619.8
## 4958 88 68 Siemakov Volodymyr UKR 1102.5 535.2
## 4959 89 82 Komatz David AUT 1146.9 529.0
## 4960 90 80 Szczurek Lukasz POL 1107.7 557.5
## 4961 91 81 Strolia Vytautas LTU 1126.2 599.1
## 4962 92 96 Nedza-Kubiniec Andrzej POL 1114.3 583.8
## 4963 93 91 Bricis Ilmars LAT 1128.1 560.2
## 4964 94 105 Braun Maxim KAZ 1131.0 576.7
## 4965 95 73 Gow Scott CAN 1126.6 588.3
## 4966 96 97 Oblak Lenart SLO 1122.9 559.5
## 4967 97 63 Lusa Daumants LAT 1135.1 569.6
## 4968 98 60 Schommer Paul USA 1158.5 576.7
## 4969 99 93 Zhyrnyi Oleksandr UKR 1180.1 589.5
## 4970 100 46 Nordgren Leif USA 1138.4 580.5
## 4971 101 90 Sima Michal SVK 1166.2 570.0
## 4972 102 99 Ranta Jaakko FIN 1166.0 598.6
## 4973 103 104 Angelis Apostolos GRE 1205.6 582.9
## 4974 104 67 Pop Gheorghe ROU 1263.3 627.5
## 4975 105 70 Krsmanovic Dejan SRB 1252.4 584.5
## 4976 106 77 Kim Yonggyu KOR 1248.9 621.6
## 4977 107 101 Dombrovski Karol LTU 1227.9 630.7
## 4978 1 1 Fourcade Martin FRA 1796.8 448.4
## 4979 2 22 Rastorgujevs Andrejs LAT 1827.0 447.1
## 4980 3 13 Eder Simon AUT 1821.6 452.2
## 4981 4 7 Svendsen Emil Hegle NOR 1845.9 474.4
## 4982 5 6 Peiffer Arnd GER 1852.4 478.5
## 4983 6 23 Slesingr Michal CZE 1846.4 490.9
## 4984 7 16 Beatrix Jean Guillaume FRA 1843.1 487.9
## 4985 8 19 Garanichev Evgeniy RUS 1851.5 473.4
## 4986 9 17 Krcmar Michal CZE 1849.6 470.4
## 4987 10 25 Babikov Anton RUS 1846.8 470.3
## 4988 11 2 Shipulin Anton RUS 1868.2 496.3
## 4989 12 27 Boe Tarjei NOR 1882.5 462.2
## 4990 13 11 Doll Benedikt GER 1881.2 500.6
## 4991 14 10 Lesser Erik GER 1870.8 498.4
## 4992 15 8 Bailey Lowell USA 1881.5 487.1
## 4993 16 15 Landertinger Dominik AUT 1889.7 464.3
## 4994 17 9 Bjoerndalen Ole Einar NOR 1848.6 476.5
## 4995 18 26 Lindstroem Fredrik SWE 1873.6 483.7
## 4996 19 14 Windisch Dominik ITA 1894.1 503.7
## 4997 20 5 Schempp Simon GER 1883.2 489.5
## 4998 21 21 Semenov Sergii UKR 1890.9 464.6
## 4999 22 20 Fillon Maillet Quentin FRA 1893.7 504.6
## 5000 23 30 Gjesbakk Fredrik NOR 1900.1 504.4
## 5001 24 12 Moravec Ondrej CZE 1933.9 505.0
## 5002 25 24 Desthieux Simon FRA 1934.3 496.7
## 5003 26 4 Eberhard Julian AUT 1967.7 514.4
## 5004 27 29 Anev Krasimir BUL 1966.6 519.7
## 5005 28 18 Tsvetkov Maxim RUS 1983.6 497.6
## 5006 29 3 Boe Johannes Thingnes NOR 1988.0 559.5
## 5007 30 28 Hofer Lukas ITA 2014.7 522.9
## 5008 1 3 Shipulin Anton RUS 1553.8 386.3
## 5009 2 2 Fourcade Martin FRA 1575.2 410.2
## 5010 3 1 Boe Johannes Thingnes NOR 1574.9 410.4
## 5011 4 15 Lindstroem Fredrik SWE 1590.6 388.4
## 5012 5 21 Hofer Lukas ITA 1622.7 402.6
## 5013 6 10 Eberhard Julian AUT 1620.5 403.7
## 5014 7 12 Eder Simon AUT 1619.7 401.9
## 5015 8 7 Moravec Ondrej CZE 1612.8 417.8
## 5016 9 8 Garanichev Evgeniy RUS 1618.5 405.3
## 5017 10 23 Rastorgujevs Andrejs LAT 1638.0 405.2
## 5018 11 24 Schempp Simon GER 1627.4 401.3
## 5019 12 4 Landertinger Dominik AUT 1650.5 393.3
## 5020 13 28 Krcmar Michal CZE 1651.3 392.9
## 5021 14 6 Boe Tarjei NOR 1648.8 425.0
## 5022 15 40 Windisch Dominik ITA 1666.2 388.4
## 5023 16 20 Svendsen Emil Hegle NOR 1659.7 407.1
## 5024 17 5 Semenov Sergii UKR 1660.1 416.6
## 5025 18 11 Doll Benedikt GER 1675.5 413.2
## 5026 19 30 Volkov Alexey RUS 1678.5 398.2
## 5027 20 25 Gjesbakk Fredrik NOR 1699.2 393.7
## 5028 21 39 Pryma Artem UKR 1693.5 390.0
## 5029 22 18 Anev Krasimir BUL 1696.5 413.4
## 5030 23 44 Bailey Lowell USA 1710.5 388.0
## 5031 24 42 Babikov Anton RUS 1690.1 435.8
## 5032 25 33 L'Abee-Lund Henrik NOR 1719.1 428.0
## 5033 26 14 Peiffer Arnd GER 1714.2 437.8
## 5034 27 16 Fillon Maillet Quentin FRA 1712.7 413.9
## 5035 28 48 Lesser Erik GER 1713.2 431.6
## 5036 29 58 Iliev Vladimir BUL 1717.2 387.2
## 5037 30 53 Christiansen Vetle Sjaastad NOR 1718.7 383.9
## 5038 31 27 Weger Benjamin SUI 1716.0 414.2
## 5039 32 29 Wiestner Serafin SUI 1733.4 415.1
## 5040 33 32 Waeger Lorenz AUT 1720.3 421.5
## 5041 34 13 Slesingr Michal CZE 1735.6 453.8
## 5042 35 47 Fourcade Simon FRA 1742.2 401.1
## 5043 36 38 Loginov Alexander RUS 1739.3 401.4
## 5044 37 55 Lapshin Timofei KOR 1718.6 413.5
## 5045 38 17 Bauer Klemen SLO 1742.1 440.8
## 5046 39 54 Samuelsson Sebastian SWE 1749.7 420.2
## 5047 40 19 Beatrix Jean Guillaume FRA 1741.5 460.8
## 5048 41 57 Sinapov Anton BUL 1770.7 439.0
## 5049 42 43 Dolder Mario SUI 1773.5 442.5
## 5050 43 37 Bormolini Thomas ITA 1756.0 408.9
## 5051 44 52 Soukup Jaroslav CZE 1764.8 447.2
## 5052 45 56 Vaclavik Adam CZE 1786.0 419.8
## 5053 46 35 Doherty Sean USA 1792.0 419.6
## 5054 47 22 Bocharnikov Sergey BLR 1802.9 438.2
## 5055 48 36 Rees Roman GER 1785.8 432.6
## 5056 49 51 Abasheu Dzmitry BLR 1814.2 420.6
## 5057 50 45 Darozhka Aliaksandr BLR 1808.8 410.7
## 5058 51 31 Eliseev Matvey RUS 1805.8 440.3
## 5059 52 34 Dovzan Miha SLO 1824.5 413.9
## 5060 53 41 Claude Fabien FRA 1848.0 446.8
## 5061 54 50 Trsan Rok SLO 1844.6 410.5
## 5062 55 49 Nawrath Philipp GER 1870.2 464.7
## 5063 56 59 Kazar Matej SVK 1893.7 451.1
## 5064 1 30 Fourcade Martin FRA 965.2 479.8
## 5065 2 21 Boe Johannes Thingnes NOR 964.7 486.4
## 5066 3 29 Shipulin Anton RUS 978.8 486.2
## 5067 4 18 Svendsen Emil Hegle NOR 983.5 491.5
## 5068 5 88 Fillon Maillet Quentin FRA 976.2 481.9
## 5069 6 38 Schempp Simon GER 986.0 490.1
## 5070 7 9 Bjoerndalen Ole Einar NOR 976.1 487.5
## 5071 8 3 Lesser Erik GER 982.6 490.7
## 5072 9 35 Krcmar Michal CZE 990.8 495.3
## 5073 10 41 Eliseev Matvey RUS 995.0 481.4
## 5074 11 31 Eder Simon AUT 992.8 506.0
## 5075 12 8 Bauer Klemen SLO 1003.9 503.4
## 5076 13 28 Tsvetkov Maxim RUS 1005.5 501.2
## 5077 14 47 Mesotitsch Daniel AUT 1012.6 510.6
## 5078 15 33 Slesingr Michal CZE 1019.2 522.0
## 5079 16 11 Roesch Michael BEL 1018.5 499.6
## 5080 17 42 Wiestner Serafin SUI 1015.7 520.0
## 5081 18 15 Bailey Lowell USA 1008.6 502.8
## 5082 19 14 Peiffer Arnd GER 1022.4 498.3
## 5083 20 17 Desthieux Simon FRA 1028.3 503.2
## 5084 21 2 Doll Benedikt GER 1037.8 551.7
## 5085 21 49 Babikov Anton RUS 1007.0 507.2
## 5086 23 70 Gow Scott CAN 1018.8 513.3
## 5087 24 4 Weger Benjamin SUI 1020.4 518.9
## 5088 25 45 Semenov Sergii UKR 1007.4 513.0
## 5089 26 27 Anev Krasimir BUL 1005.2 502.1
## 5090 27 39 Beatrix Jean Guillaume FRA 1034.5 515.1
## 5091 28 68 Dolder Mario SUI 1021.5 531.1
## 5092 29 19 Fourcade Simon FRA 1020.2 494.5
## 5093 30 48 Samuelsson Sebastian SWE 1023.2 526.3
## 5094 31 10 Moravec Ondrej CZE 1032.3 503.3
## 5095 32 36 Birkeland Lars Helge NOR 1039.3 515.3
## 5096 33 102 Gow Christian CAN 1015.9 508.2
## 5097 34 7 Puchianu Cornel ROU 1036.7 532.3
## 5098 35 13 Hasilla Tomas SVK 1024.9 511.3
## 5099 35 25 Garanichev Evgeniy RUS 1027.5 522.0
## 5100 37 97 Dorfer Matthias GER 1007.9 514.2
## 5101 38 81 Bjoentegaard Erlend NOR 1039.4 547.9
## 5102 39 16 Pryma Artem UKR 1038.8 521.8
## 5103 39 76 Leitner Felix AUT 1040.9 497.5
## 5104 41 64 Yaliotnau Raman BLR 1046.4 545.8
## 5105 42 40 Hofer Lukas ITA 1049.2 509.7
## 5106 42 46 Otcenas Martin SVK 1042.5 519.0
## 5107 44 94 Bocharnikov Sergey BLR 1026.9 523.5
## 5108 45 60 Sinapov Anton BUL 1051.9 548.6
## 5109 46 6 Pidruchnyi Dmytro UKR 1061.1 538.7
## 5110 47 20 Eberhard Julian AUT 1065.3 507.3
## 5111 48 82 Lessing Roland EST 1032.6 523.5
## 5112 49 26 Landertinger Dominik AUT 1059.7 555.1
## 5113 50 58 Vaclavik Adam CZE 1045.7 500.7
## 5114 51 84 Krupcik Tomas CZE 1025.2 512.7
## 5115 52 23 Green Brendan CAN 1060.3 530.6
## 5116 53 12 Burke Tim USA 1066.1 522.4
## 5117 53 55 Dombrovski Karol LTU 1037.0 527.5
## 5118 55 65 Claude Fabien FRA 1057.9 562.5
## 5119 56 86 Finello Jeremy SUI 1043.7 508.8
## 5120 57 62 Graf Florian GER 1055.3 510.8
## 5121 58 79 Hiidensalo Olli FIN 1063.2 531.5
## 5122 59 5 Windisch Dominik ITA 1066.2 548.2
## 5123 60 63 Kilchytskyy Vitaliy UKR 1075.2 549.1
## 5124 61 44 Iliev Vladimir BUL 1077.3 541.0
## 5125 62 77 Shopin Yury RUS 1066.6 554.7
## 5126 63 53 Kazar Matej SVK 1074.8 535.9
## 5127 64 61 Savitskiy Yan KAZ 1038.9 537.7
## 5128 65 59 Currier Russell USA 1074.5 530.4
## 5129 66 72 Tachizaki Mikito JPN 1064.4 518.4
## 5130 67 37 Varabei Maksim BLR 1087.0 555.2
## 5131 68 104 Grossegger Sven AUT 1065.1 541.6
## 5132 69 103 L'Abee-Lund Henrik NOR 1081.6 550.8
## 5133 70 34 Rastorgujevs Andrejs LAT 1079.1 591.4
## 5134 71 56 Guzik Grzegorz POL 1070.1 536.7
## 5135 72 69 Braun Maxim KAZ 1056.2 543.9
## 5136 73 52 Zahkna Rene EST 1058.2 530.1
## 5137 74 74 Bricis Ilmars LAT 1083.4 561.2
## 5138 75 91 Montello Giuseppe ITA 1067.8 526.1
## 5139 76 24 Nelin Jesper SWE 1074.2 528.8
## 5140 77 71 Faur Remus ROU 1073.9 556.7
## 5141 78 67 Crnkovic Kresimir CRO 1106.9 566.5
## 5142 79 96 Podkorytov Vassiliy KAZ 1087.2 545.4
## 5143 80 54 Davies Macx CAN 1095.1 585.6
## 5144 81 101 Zhyrnyi Oleksandr UKR 1093.2 562.4
## 5145 82 57 Bormolini Thomas ITA 1082.6 531.1
## 5146 82 73 Kaukenas Tomas LTU 1086.7 550.3
## 5147 84 50 Stenersen Torstein SWE 1077.9 547.9
## 5148 85 87 Gerdzhikov Dimitar BUL 1081.8 530.2
## 5149 86 98 Sima Michal SVK 1081.2 558.7
## 5150 87 66 Janik Mateusz POL 1080.6 557.6
## 5151 88 83 Dovzan Miha SLO 1098.3 529.6
## 5152 89 32 Chepelin Vladimir BLR 1096.1 573.8
## 5153 90 78 Trsan Rok SLO 1102.2 538.9
## 5154 91 92 Kobonoki Tsukasa JPN 1094.9 538.9
## 5155 92 75 Dixon Scott GBR 1091.9 539.5
## 5156 93 100 Szczurek Lukasz POL 1130.0 556.1
## 5157 94 85 Strolia Vytautas LTU 1108.4 601.7
## 5158 95 99 Buta George ROU 1106.8 533.5
## 5159 96 22 Gronman Tuomas FIN 1117.2 527.6
## 5160 97 1 Koiv Kauri EST 1133.8 576.0
## 5161 98 80 Kim Jongmin KOR 1115.8 567.1
## 5162 99 51 Femling Peppe SWE 1096.0 543.6
## 5163 100 93 Vitenko Vladislav KAZ 1129.8 581.9
## 5164 101 95 Lee Inbok KOR 1141.2 585.4
## 5165 102 43 Drinovec Mitja SLO 1126.5 588.7
## 5166 103 90 Huhtala Teemu FIN 1142.8 563.1
## 5167 104 89 Slotins Roberts LAT 1142.8 589.3
## 5168 1 1 Fourcade Martin FRA 1490.6 370.3
## 5169 2 4 Svendsen Emil Hegle NOR 1515.0 374.6
## 5170 3 3 Shipulin Anton RUS 1514.6 394.9
## 5171 4 2 Boe Johannes Thingnes NOR 1550.9 411.1
## 5172 5 6 Schempp Simon GER 1558.2 375.1
## 5173 6 16 Roesch Michael BEL 1573.8 379.4
## 5174 7 10 Eliseev Matvey RUS 1595.9 413.1
## 5175 8 13 Tsvetkov Maxim RUS 1601.4 410.2
## 5176 9 7 Bjoerndalen Ole Einar NOR 1609.6 378.4
## 5177 10 9 Krcmar Michal CZE 1610.5 386.6
## 5178 11 8 Lesser Erik GER 1595.4 413.2
## 5179 12 19 Peiffer Arnd GER 1607.4 384.7
## 5180 13 32 Birkeland Lars Helge NOR 1622.9 378.2
## 5181 14 31 Moravec Ondrej CZE 1626.1 373.5
## 5182 15 20 Desthieux Simon FRA 1632.7 409.6
## 5183 16 11 Eder Simon AUT 1628.9 400.9
## 5184 17 24 Weger Benjamin SUI 1635.4 384.4
## 5185 18 18 Bailey Lowell USA 1617.3 388.5
## 5186 19 15 Slesingr Michal CZE 1633.9 431.2
## 5187 20 5 Fillon Maillet Quentin FRA 1633.4 423.7
## 5188 21 47 Eberhard Julian AUT 1647.3 395.2
## 5189 22 21 Doll Benedikt GER 1655.9 433.6
## 5190 23 39 Pryma Artem UKR 1648.2 374.8
## 5191 24 25 Semenov Sergii UKR 1641.9 416.4
## 5192 25 26 Anev Krasimir BUL 1652.6 406.0
## 5193 26 36 Garanichev Evgeniy RUS 1649.5 383.5
## 5194 27 49 Landertinger Dominik AUT 1668.1 395.6
## 5195 28 42 Hofer Lukas ITA 1674.1 393.8
## 5196 29 59 Windisch Dominik ITA 1673.3 382.4
## 5197 30 46 Pidruchnyi Dmytro UKR 1664.0 408.4
## 5198 31 33 Gow Christian CAN 1656.7 388.1
## 5199 32 38 Bjoentegaard Erlend NOR 1689.8 416.9
## 5200 33 28 Dolder Mario SUI 1682.0 431.1
## 5201 34 22 Babikov Anton RUS 1689.3 420.1
## 5202 35 30 Samuelsson Sebastian SWE 1676.9 403.0
## 5203 36 37 Dorfer Matthias GER 1679.5 409.5
## 5204 37 35 Hasilla Tomas SVK 1674.1 404.7
## 5205 38 51 Krupcik Tomas CZE 1676.1 418.6
## 5206 39 27 Beatrix Jean Guillaume FRA 1709.2 394.3
## 5207 40 57 Graf Florian GER 1713.0 389.9
## 5208 41 12 Bauer Klemen SLO 1714.7 418.2
## 5209 42 53 Burke Tim USA 1745.8 455.3
## 5210 43 41 Yaliotnau Raman BLR 1757.3 391.4
## 5211 44 44 Bocharnikov Sergey BLR 1757.6 395.0
## 5212 45 17 Wiestner Serafin SUI 1735.0 397.4
## 5213 46 14 Mesotitsch Daniel AUT 1743.1 449.9
## 5214 47 43 Otcenas Martin SVK 1755.8 425.9
## 5215 48 23 Gow Scott CAN 1751.6 449.2
## 5216 49 48 Lessing Roland EST 1758.1 406.5
## 5217 50 50 Vaclavik Adam CZE 1771.1 396.0
## 5218 51 56 Finello Jeremy SUI 1772.5 394.6
## 5219 52 45 Sinapov Anton BUL 1753.5 424.2
## 5220 53 54 Dombrovski Karol LTU 1766.9 422.8
## 5221 54 58 Hiidensalo Olli FIN 1791.9 438.1
## 5222 55 40 Leitner Felix AUT 1790.0 436.9
## 5223 56 29 Fourcade Simon FRA 1722.9 423.5
## 5224 57 52 Green Brendan CAN 1801.6 419.8
## 5225 58 34 Puchianu Cornel ROU 1811.1 482.1
## 5226 1 90 Eberhard Julian AUT 970.2 500.0
## 5227 2 81 Bailey Lowell USA 990.8 510.9
## 5228 3 76 Fourcade Martin FRA 1023.9 528.2
## 5229 4 26 Landertinger Dominik AUT 1014.4 519.3
## 5230 5 72 Lesser Erik GER 1014.3 531.1
## 5231 6 24 Windisch Dominik ITA 1022.5 505.0
## 5232 7 70 Wiestner Serafin SUI 1026.4 518.9
## 5233 8 63 Eder Simon AUT 1033.6 562.8
## 5234 9 89 Garanichev Evgeniy RUS 1023.4 548.2
## 5235 10 59 Pryma Artem UKR 1006.4 527.4
## 5236 11 34 Desthieux Simon FRA 1028.2 539.8
## 5237 12 6 Hofer Lukas ITA 1040.8 537.9
## 5238 13 46 Rees Roman GER 1024.2 546.0
## 5239 14 37 Tsvetkov Maxim RUS 1023.9 528.7
## 5240 15 33 Rastorgujevs Andrejs LAT 1043.9 536.6
## 5241 16 41 Pidruchnyi Dmytro UKR 1037.5 530.7
## 5242 17 8 Beatrix Jean Guillaume FRA 1042.1 550.6
## 5243 18 11 Christiansen Vetle Sjaastad NOR 1041.7 543.1
## 5244 19 9 Krupcik Tomas CZE 1027.9 537.1
## 5245 20 27 Doll Benedikt GER 1053.3 528.7
## 5246 21 13 Waeger Lorenz AUT 1029.4 533.7
## 5247 21 56 Fourcade Simon FRA 1035.9 538.5
## 5248 23 39 Shipulin Anton RUS 1044.3 555.3
## 5249 24 73 Slesingr Michal CZE 1039.5 526.9
## 5250 25 40 Semenov Sergii UKR 1046.5 544.3
## 5251 26 62 Bjoerndalen Ole Einar NOR 1058.5 554.5
## 5252 27 22 Gow Scott CAN 1052.8 541.2
## 5253 28 31 Green Brendan CAN 1051.4 552.2
## 5254 29 21 Graf Florian GER 1052.7 538.9
## 5255 30 47 Bocharnikov Sergey BLR 1044.4 534.6
## 5256 31 32 Peiffer Arnd GER 1068.2 584.7
## 5257 32 10 Fillon Maillet Quentin FRA 1071.0 532.3
## 5258 33 79 Varabei Maksim BLR 1053.9 559.7
## 5259 34 36 Chepelin Vladimir BLR 1066.5 562.5
## 5260 35 80 Finello Jeremy SUI 1056.5 571.7
## 5261 36 69 Montello Giuseppe ITA 1070.0 564.2
## 5262 37 29 Nordgren Leif USA 1067.3 545.7
## 5263 38 67 L'Abee-Lund Henrik NOR 1083.0 593.6
## 5264 39 92 Gerdzhikov Dimitar BUL 1055.5 545.7
## 5265 40 23 Gjermundshaug Vegard NOR 1065.3 548.7
## 5266 41 94 Babikov Anton RUS 1054.5 561.6
## 5267 42 16 Iliev Vladimir BUL 1087.4 577.2
## 5268 43 30 Vaclavik Adam CZE 1078.1 539.2
## 5269 43 42 Anev Krasimir BUL 1063.7 546.0
## 5270 45 3 Weger Benjamin SUI 1068.3 528.1
## 5271 46 87 Claude Fabien FRA 1070.2 540.6
## 5272 47 35 Savitskiy Yan KAZ 1071.0 570.7
## 5273 48 2 Bauer Klemen SLO 1080.0 567.7
## 5274 49 49 Krcmar Michal CZE 1069.1 548.6
## 5275 50 14 Samuelsson Sebastian SWE 1086.7 569.1
## 5276 50 20 Dolder Mario SUI 1086.2 597.4
## 5277 52 5 Shopin Yury RUS 1067.2 558.4
## 5278 53 43 Guzik Grzegorz POL 1077.3 537.9
## 5279 54 4 Siemakov Volodymyr UKR 1079.4 577.5
## 5280 55 50 Podkorytov Vassiliy KAZ 1077.9 565.1
## 5281 56 12 Gow Christian CAN 1080.3 534.1
## 5282 57 74 Hasilla Tomas SVK 1083.3 567.3
## 5283 58 86 Zhyrnyi Oleksandr UKR 1088.6 550.9
## 5284 59 97 Hoerl Fabian AUT 1077.0 578.6
## 5285 60 48 Sinapov Anton BUL 1110.6 546.7
## 5286 61 84 Gjesbakk Fredrik NOR 1093.3 590.9
## 5287 62 66 Szczurek Lukasz POL 1089.9 550.7
## 5288 63 19 Faur Remus ROU 1095.4 552.7
## 5289 64 45 Bjoentegaard Erlend NOR 1106.4 573.8
## 5290 65 75 Puchianu Cornel ROU 1097.7 571.9
## 5291 66 58 Bricis Ilmars LAT 1089.5 582.2
## 5292 67 88 Orpana Sami FIN 1085.2 577.5
## 5293 68 18 Otcenas Martin SVK 1104.0 593.8
## 5294 69 95 Soukup Jaroslav CZE 1093.0 554.9
## 5295 70 55 Tachizaki Mikito JPN 1101.8 591.9
## 5296 71 53 Dombrovski Karol LTU 1099.5 572.6
## 5297 72 52 Grossegger Sven AUT 1098.8 540.9
## 5298 73 82 Bormolini Thomas ITA 1111.1 554.6
## 5299 74 44 Dovzan Miha SLO 1108.5 584.9
## 5300 75 65 Pantov Anton KAZ 1114.5 545.8
## 5301 76 78 Lusa Daumants LAT 1093.7 575.5
## 5302 77 98 Strolia Vytautas LTU 1116.5 562.9
## 5303 78 15 Abasheu Dzmitry BLR 1121.6 581.4
## 5304 79 91 Stenersen Torstein SWE 1110.3 547.8
## 5305 80 93 Doherty Sean USA 1119.5 569.0
## 5306 81 7 Roesch Michael BEL 1112.0 590.9
## 5307 82 71 Zahkna Rene EST 1118.1 567.6
## 5308 83 25 Koiv Kauri EST 1106.5 593.1
## 5309 84 38 Femling Peppe SWE 1114.1 569.3
## 5310 85 103 Buta George ROU 1125.4 552.9
## 5311 86 1 Kazar Matej SVK 1142.9 587.5
## 5312 87 102 Kim Jongmin KOR 1095.7 574.9
## 5313 88 54 Smith Nathan CAN 1116.3 605.6
## 5314 89 17 Kaukenas Tomas LTU 1129.9 619.4
## 5315 90 85 Sima Michal SVK 1131.4 570.5
## 5316 91 96 Kobonoki Tsukasa JPN 1141.2 604.4
## 5317 92 28 Gronman Tuomas FIN 1140.0 565.6
## 5318 93 51 Loukkaanhuhta Mikko FIN 1156.4 585.8
## 5319 94 64 Kim Yonggyu KOR 1135.1 616.4
## 5320 95 77 Trsan Rok SLO 1160.5 566.7
## 5321 96 100 Remmelg Martin EST 1141.1 608.0
## 5322 97 99 Vitenko Vladislav KAZ 1170.6 570.6
## 5323 98 101 Davies Macx CAN 1187.1 592.0
## 5324 99 60 Oblak Lenart SLO 1168.2 624.7
## 5325 99 68 Makhambetov Timur RUS 1181.8 580.0
## 5326 101 61 Schommer Paul USA 1190.0 599.0
## 5327 102 83 Penar Rafal POL 1191.2 622.0
## 5328 1 3 Fourcade Martin FRA 1571.4 385.7
## 5329 2 23 Shipulin Anton RUS 1599.9 389.0
## 5330 3 1 Eberhard Julian AUT 1608.4 410.6
## 5331 4 8 Eder Simon AUT 1630.3 435.2
## 5332 5 9 Garanichev Evgeniy RUS 1635.2 394.3
## 5333 6 11 Desthieux Simon FRA 1640.5 393.6
## 5334 7 4 Landertinger Dominik AUT 1653.3 450.9
## 5335 8 20 Doll Benedikt GER 1659.6 410.5
## 5336 9 2 Bailey Lowell USA 1643.0 401.7
## 5337 10 12 Hofer Lukas ITA 1658.1 437.7
## 5338 11 17 Beatrix Jean Guillaume FRA 1656.8 401.0
## 5339 12 18 Christiansen Vetle Sjaastad NOR 1660.8 410.1
## 5340 13 5 Lesser Erik GER 1660.2 413.8
## 5341 14 15 Rastorgujevs Andrejs LAT 1680.2 398.2
## 5342 15 41 Babikov Anton RUS 1677.3 396.0
## 5343 16 22 Fourcade Simon FRA 1675.5 441.8
## 5344 17 38 L'Abee-Lund Henrik NOR 1687.5 406.1
## 5345 18 30 Bocharnikov Sergey BLR 1689.3 411.7
## 5346 19 26 Bjoerndalen Ole Einar NOR 1690.8 439.8
## 5347 20 14 Tsvetkov Maxim RUS 1684.7 404.2
## 5348 21 31 Peiffer Arnd GER 1702.5 445.0
## 5349 22 6 Windisch Dominik ITA 1698.8 402.8
## 5350 23 13 Rees Roman GER 1701.2 421.9
## 5351 24 24 Slesingr Michal CZE 1699.4 425.0
## 5352 25 32 Fillon Maillet Quentin FRA 1697.8 396.0
## 5353 26 7 Wiestner Serafin SUI 1700.7 421.8
## 5354 27 19 Krupcik Tomas CZE 1707.4 426.5
## 5355 28 37 Nordgren Leif USA 1705.9 426.5
## 5356 29 29 Graf Florian GER 1722.1 442.4
## 5357 30 16 Pidruchnyi Dmytro UKR 1715.7 444.3
## 5358 31 35 Finello Jeremy SUI 1740.5 410.7
## 5359 32 56 Gow Christian CAN 1748.0 417.4
## 5360 33 10 Pryma Artem UKR 1749.8 436.6
## 5361 34 21 Waeger Lorenz AUT 1766.8 435.6
## 5362 35 44 Anev Krasimir BUL 1770.0 409.5
## 5363 36 34 Chepelin Vladimir BLR 1781.8 450.1
## 5364 37 25 Semenov Sergii UKR 1772.5 476.0
## 5365 38 48 Bauer Klemen SLO 1785.1 436.4
## 5366 39 60 Sinapov Anton BUL 1782.7 432.0
## 5367 40 40 Gjermundshaug Vegard NOR 1788.6 454.8
## 5368 41 47 Savitskiy Yan KAZ 1782.2 464.4
## 5369 42 52 Shopin Yury RUS 1795.4 414.2
## 5370 43 27 Gow Scott CAN 1802.3 482.0
## 5371 44 28 Green Brendan CAN 1796.2 426.7
## 5372 45 59 Hoerl Fabian AUT 1808.7 419.8
## 5373 46 36 Montello Giuseppe ITA 1820.9 439.4
## 5374 47 46 Claude Fabien FRA 1829.4 464.7
## 5375 48 45 Weger Benjamin SUI 1812.9 420.5
## 5376 49 54 Siemakov Volodymyr UKR 1818.0 467.6
## 5377 50 58 Zhyrnyi Oleksandr UKR 1829.1 467.0
## 5378 51 49 Krcmar Michal CZE 1823.1 438.1
## 5379 52 39 Gerdzhikov Dimitar BUL 1823.6 440.0
## 5380 53 50 Samuelsson Sebastian SWE 1854.1 407.6
## 5381 54 33 Varabei Maksim BLR 1851.4 443.9
## 5382 55 57 Hasilla Tomas SVK 1857.6 450.5
## 5383 56 51 Dolder Mario SUI 1843.3 495.9
## 5384 57 53 Guzik Grzegorz POL 1880.2 450.4
## 5385 58 43 Vaclavik Adam CZE 1904.8 458.6
## 5386 1 60 Fourcade Martin FRA 943.9 473.6
## 5387 2 27 Eberhard Julian AUT 957.1 480.5
## 5388 3 25 Svendsen Emil Hegle NOR 969.3 482.8
## 5389 4 81 Peiffer Arnd GER 973.3 489.8
## 5390 5 66 Schempp Simon GER 979.8 502.6
## 5391 6 30 Malyshko Dmitry RUS 973.1 485.3
## 5392 7 23 Pidruchnyi Dmytro UKR 979.0 490.3
## 5393 8 13 Bjoerndalen Ole Einar NOR 978.1 494.8
## 5394 9 26 Landertinger Dominik AUT 996.2 512.1
## 5395 10 10 Birkeland Lars Helge NOR 981.2 496.0
## 5396 11 22 Weger Benjamin SUI 983.2 490.8
## 5397 12 21 Burke Tim USA 998.4 510.7
## 5398 13 72 Lindstroem Fredrik SWE 991.3 501.4
## 5399 14 38 Bauer Klemen SLO 993.8 506.8
## 5400 15 50 Mesotitsch Daniel AUT 987.2 501.0
## 5401 16 47 Bischl Matthias GER 993.1 501.0
## 5402 17 48 Chepelin Vladimir BLR 996.3 518.6
## 5403 18 80 Bailey Lowell USA 996.8 509.7
## 5404 19 90 Garanichev Evgeniy RUS 996.8 508.4
## 5405 20 29 Doll Benedikt GER 1019.6 540.1
## 5406 21 100 Bjoentegaard Erlend NOR 1013.3 518.8
## 5407 22 33 Rastorgujevs Andrejs LAT 1003.9 506.0
## 5408 23 14 Babikov Anton RUS 1009.3 493.4
## 5409 23 69 Shipulin Anton RUS 1013.9 501.6
## 5410 25 78 Dolder Mario SUI 1008.0 517.9
## 5411 26 75 Fillon Maillet Quentin FRA 1002.8 502.9
## 5412 27 31 Lesser Erik GER 1001.7 496.4
## 5413 28 15 Iliev Vladimir BUL 1013.8 509.4
## 5414 29 71 Krcmar Michal CZE 1009.7 515.1
## 5415 30 51 Anev Krasimir BUL 1004.2 516.6
## 5416 31 70 Tsvetkov Maxim RUS 1010.4 516.8
## 5417 32 57 Kaukenas Tomas LTU 1005.0 506.0
## 5418 33 65 Beatrix Jean Guillaume FRA 1020.3 528.7
## 5419 34 28 Roesch Michael BEL 1002.6 494.0
## 5420 35 45 Pryma Artem UKR 1022.4 520.6
## 5421 36 35 Samuelsson Sebastian SWE 1018.0 507.6
## 5422 37 16 Boe Johannes Thingnes NOR 1016.3 501.8
## 5423 38 93 Willeitner Michael GER 1024.1 508.7
## 5424 39 88 Vaclavik Adam CZE 1025.7 496.7
## 5425 40 79 Doherty Sean USA 1013.8 498.8
## 5426 41 4 Wiestner Serafin SUI 1036.5 529.3
## 5427 42 34 Gow Scott CAN 1022.1 506.9
## 5428 43 52 Windisch Dominik ITA 1029.1 515.8
## 5429 44 42 Bricis Ilmars LAT 1013.3 509.9
## 5430 45 91 Stenersen Torstein SWE 1014.8 526.0
## 5431 46 24 Fourcade Simon FRA 1020.8 522.2
## 5432 47 92 Kilchytskyy Vitaliy UKR 1017.6 519.9
## 5433 48 11 Semenov Sergii UKR 1038.7 531.2
## 5434 49 105 Claude Fabien FRA 1026.7 513.9
## 5435 50 44 Komatz David AUT 1032.4 503.4
## 5436 51 20 Gronman Tuomas FIN 1036.7 502.6
## 5437 52 56 Moravec Ondrej CZE 1055.5 510.7
## 5438 53 9 Nelin Jesper SWE 1055.9 484.5
## 5439 53 64 L'Abee-Lund Henrik NOR 1058.6 552.4
## 5440 55 19 Hofer Lukas ITA 1057.4 536.2
## 5441 56 43 Fak Jakov SLO 1032.0 524.9
## 5442 57 36 Bocharnikov Sergey BLR 1051.4 547.5
## 5443 58 58 Savitskiy Yan KAZ 1028.5 523.9
## 5444 59 53 Eliseev Matvey RUS 1050.2 489.2
## 5445 60 107 Bormolini Thomas ITA 1027.9 530.5
## 5446 61 5 Siemakov Volodymyr UKR 1055.2 517.7
## 5447 62 74 Faur Remus ROU 1043.3 536.6
## 5448 63 96 Grossegger Sven AUT 1039.9 538.9
## 5449 64 76 Green Brendan CAN 1054.3 527.4
## 5450 65 77 Slesingr Michal CZE 1060.1 503.9
## 5451 66 17 Guzik Grzegorz POL 1048.7 532.1
## 5452 67 59 Kazar Matej SVK 1054.3 547.4
## 5453 68 82 Braun Maxim KAZ 1038.2 531.0
## 5454 69 61 Zahkna Rene EST 1052.0 518.3
## 5455 70 18 Soukup Jaroslav CZE 1064.2 515.3
## 5456 71 83 Nordgren Leif USA 1059.3 529.0
## 5457 72 95 Tambornino Eligius SUI 1073.6 550.5
## 5458 73 7 Yaliotnau Raman BLR 1086.3 592.0
## 5459 74 32 Puchianu Cornel ROU 1064.2 540.1
## 5460 75 1 Currier Russell USA 1087.5 547.5
## 5461 76 6 Leitner Felix AUT 1061.0 536.1
## 5462 77 99 Orpana Sami FIN 1067.1 563.7
## 5463 78 98 Dovzan Miha SLO 1067.9 536.1
## 5464 79 41 Montello Giuseppe ITA 1079.5 560.8
## 5465 80 55 Strolia Vytautas LTU 1099.1 532.7
## 5466 81 37 Crnkovic Kresimir CRO 1081.7 553.6
## 5467 82 101 Davies Macx CAN 1085.7 534.3
## 5468 83 85 Abasheu Dzmitry BLR 1092.9 529.4
## 5469 84 40 Hiidensalo Olli FIN 1093.5 579.2
## 5470 85 12 Otcenas Martin SVK 1098.8 554.1
## 5471 86 8 Sinapov Anton BUL 1105.8 530.7
## 5472 87 86 Podkorytov Vassiliy KAZ 1087.0 509.5
## 5473 88 2 Gow Christian CAN 1094.6 537.6
## 5474 89 84 Buta George ROU 1082.5 515.3
## 5475 90 39 Janik Mateusz POL 1080.1 571.0
## 5476 91 3 Hasilla Tomas SVK 1108.7 535.5
## 5477 92 102 Gerdzhikov Dimitar BUL 1101.4 594.5
## 5478 93 46 Ermits Kalev EST 1110.2 512.6
## 5479 94 106 Penar Rafal POL 1088.8 567.3
## 5480 95 103 Dombrovski Karol LTU 1097.9 581.0
## 5481 96 73 Kobonoki Tsukasa JPN 1128.9 576.5
## 5482 97 94 Lusa Daumants LAT 1102.1 576.6
## 5483 98 68 Pantov Anton KAZ 1141.8 554.3
## 5484 99 49 Lee Inbok KOR 1113.9 591.1
## 5485 100 97 Tachizaki Mikito JPN 1126.3 625.6
## 5486 101 62 Trsan Rok SLO 1142.1 611.9
## 5487 102 54 Hodzic Edin SRB 1101.2 584.4
## 5488 103 87 Sima Michal SVK 1116.1 576.5
## 5489 104 104 Kim Jongmin KOR 1126.3 579.8
## 5490 105 67 Dixon Scott GBR 1126.9 574.8
## 5491 106 89 Remmelg Martin EST 1156.4 572.1
## 5492 107 63 Angelis Apostolos GRE 1197.6 603.6
## 5493 1 1 Fourcade Martin FRA 1686.4 400.1
## 5494 2 3 Svendsen Emil Hegle NOR 1700.7 414.9
## 5495 3 29 Krcmar Michal CZE 1721.9 406.7
## 5496 4 24 Shipulin Anton RUS 1715.1 422.1
## 5497 5 4 Peiffer Arnd GER 1719.2 425.2
## 5498 6 9 Landertinger Dominik AUT 1734.1 407.0
## 5499 7 5 Schempp Simon GER 1741.9 446.4
## 5500 8 21 Bjoentegaard Erlend NOR 1742.5 401.4
## 5501 9 15 Mesotitsch Daniel AUT 1731.5 410.7
## 5502 10 22 Rastorgujevs Andrejs LAT 1740.3 401.6
## 5503 11 43 Windisch Dominik ITA 1750.2 421.0
## 5504 12 28 Iliev Vladimir BUL 1747.8 395.7
## 5505 13 2 Eberhard Julian AUT 1765.0 411.8
## 5506 14 6 Malyshko Dmitry RUS 1741.7 448.1
## 5507 15 37 Boe Johannes Thingnes NOR 1759.7 400.3
## 5508 16 46 Fourcade Simon FRA 1765.2 400.3
## 5509 17 33 Beatrix Jean Guillaume FRA 1764.1 424.2
## 5510 18 7 Pidruchnyi Dmytro UKR 1759.3 397.9
## 5511 19 13 Lindstroem Fredrik SWE 1760.4 403.9
## 5512 20 11 Weger Benjamin SUI 1756.8 436.6
## 5513 21 54 L'Abee-Lund Henrik NOR 1770.5 402.7
## 5514 22 20 Doll Benedikt GER 1784.6 443.1
## 5515 23 27 Lesser Erik GER 1784.2 443.9
## 5516 24 12 Burke Tim USA 1786.0 423.8
## 5517 25 19 Garanichev Evgeniy RUS 1787.4 448.3
## 5518 26 18 Bailey Lowell USA 1772.4 434.2
## 5519 27 35 Pryma Artem UKR 1782.3 408.3
## 5520 28 25 Dolder Mario SUI 1785.6 441.8
## 5521 29 17 Chepelin Vladimir BLR 1790.9 408.3
## 5522 30 30 Anev Krasimir BUL 1789.1 432.2
## 5523 31 34 Roesch Michael BEL 1788.3 454.2
## 5524 32 26 Fillon Maillet Quentin FRA 1823.7 443.0
## 5525 33 49 Claude Fabien FRA 1829.2 452.4
## 5526 34 8 Bjoerndalen Ole Einar NOR 1822.6 440.5
## 5527 35 58 Savitskiy Yan KAZ 1824.1 419.9
## 5528 36 10 Birkeland Lars Helge NOR 1817.4 450.5
## 5529 37 52 Moravec Ondrej CZE 1846.9 433.3
## 5530 38 55 Hofer Lukas ITA 1873.8 417.4
## 5531 39 31 Tsvetkov Maxim RUS 1863.6 463.1
## 5532 40 39 Vaclavik Adam CZE 1864.2 420.6
## 5533 41 42 Gow Scott CAN 1859.6 445.5
## 5534 42 38 Willeitner Michael GER 1841.4 484.6
## 5535 43 40 Doherty Sean USA 1868.2 448.1
## 5536 44 50 Komatz David AUT 1878.0 427.3
## 5537 45 41 Wiestner Serafin SUI 1903.9 425.9
## 5538 46 48 Semenov Sergii UKR 1874.3 418.7
## 5539 47 57 Bocharnikov Sergey BLR 1920.0 455.4
## 5540 48 16 Bischl Matthias GER 1916.1 457.8
## 5541 49 36 Samuelsson Sebastian SWE 1939.0 490.7
## 5542 50 56 Fak Jakov SLO 1940.5 496.5
## 5543 51 53 Nelin Jesper SWE 1984.1 438.6
## 5544 52 60 Bormolini Thomas ITA 1982.2 450.7
## 5545 53 32 Kaukenas Tomas LTU 1981.9 450.0
## 5546 54 51 Gronman Tuomas FIN 2020.0 524.5
## 5547 55 44 Bricis Ilmars LAT 2043.5 496.5
## 5548 1 24 Boe Johannes Thingnes NOR 931.7 467.0
## 5549 2 31 Fourcade Martin FRA 946.4 473.4
## 5550 3 88 Guigonnat Antonin FRA 959.5 475.4
## 5551 4 11 Schempp Simon GER 966.4 482.1
## 5552 5 29 Desthieux Simon FRA 968.1 476.3
## 5553 6 84 Shipulin Anton RUS 981.3 477.1
## 5554 7 87 Gjesbakk Fredrik NOR 966.6 484.6
## 5555 8 18 Lapshin Timofei KOR 968.1 485.8
## 5556 9 10 Windisch Dominik ITA 982.1 485.9
## 5557 10 40 Burke Tim USA 971.3 484.1
## 5558 11 12 Weger Benjamin SUI 978.3 487.3
## 5559 12 92 Doll Benedikt GER 995.6 514.8
## 5560 13 34 Fak Jakov SLO 992.9 488.0
## 5561 14 51 Ermits Kalev EST 982.8 489.4
## 5562 15 45 Babikov Anton RUS 977.9 487.3
## 5563 16 99 Gow Scott CAN 987.6 490.1
## 5564 17 7 Doherty Sean USA 989.0 493.4
## 5565 18 39 Loginov Alexander RUS 1004.8 476.5
## 5566 19 83 Garanichev Evgeniy RUS 997.3 506.7
## 5567 20 9 Eliseev Matvey RUS 996.0 505.5
## 5568 21 21 Birkeland Lars Helge NOR 1007.1 511.4
## 5569 22 15 Peiffer Arnd GER 1006.1 513.3
## 5570 23 28 Samuelsson Sebastian SWE 1008.2 510.7
## 5571 24 42 Rastorgujevs Andrejs LAT 1008.6 508.2
## 5572 25 46 Bjoentegaard Erlend NOR 1012.0 503.5
## 5573 26 38 Eder Simon AUT 1011.7 528.6
## 5574 27 59 Iliev Vladimir BUL 1008.4 513.4
## 5575 28 55 Eberhard Tobias AUT 1003.6 507.4
## 5576 29 69 Otcenas Martin SVK 1008.3 497.6
## 5577 30 50 Gow Christian CAN 994.8 497.0
## 5578 31 27 Seppala Tero FIN 1022.4 507.7
## 5579 32 72 Bormolini Thomas ITA 988.9 504.8
## 5580 33 90 Wiestner Serafin SUI 1014.1 496.0
## 5581 34 25 Krcmar Michal CZE 1022.0 494.2
## 5582 35 17 Bailey Lowell USA 1019.6 494.2
## 5583 36 60 Claude Florent BEL 1007.6 503.2
## 5584 37 33 Moravec Ondrej CZE 1023.0 486.9
## 5585 38 49 Kuehn Johannes GER 1031.4 515.9
## 5586 39 97 Gronman Tuomas FIN 1004.5 499.0
## 5587 40 47 Hofer Lukas ITA 1030.0 520.5
## 5588 41 4 Slesingr Michal CZE 1011.6 504.8
## 5589 42 26 Bauer Klemen SLO 1029.7 532.7
## 5590 43 66 Anev Krasimir BUL 1020.9 494.4
## 5591 44 22 Lesser Erik GER 1037.3 550.6
## 5592 45 65 Eberhard Julian AUT 1046.3 517.7
## 5593 46 3 Beatrix Jean Guillaume FRA 1033.6 538.0
## 5594 47 81 Krupcik Tomas CZE 1031.9 518.2
## 5595 48 16 Boe Tarjei NOR 1033.6 524.4
## 5596 49 23 Strolia Vytautas LTU 1020.2 525.2
## 5597 50 54 Kazar Matej SVK 1039.1 511.1
## 5598 50 76 Muiznieks Oskars LAT 1026.5 497.2
## 5599 52 95 Komatz David AUT 1040.2 505.7
## 5600 53 102 Sinapov Anton BUL 1034.9 512.5
## 5601 54 77 Finello Jeremy SUI 1031.0 537.0
## 5602 55 5 Dovzan Miha SLO 1035.2 505.9
## 5603 56 75 Nordgren Leif USA 1031.1 499.4
## 5604 57 56 Hiidensalo Olli FIN 1040.4 517.9
## 5605 58 14 Lindstroem Fredrik SWE 1042.0 544.9
## 5606 59 1 Nawrath Philipp GER 1032.2 525.3
## 5607 60 32 Tkalenko Ruslan UKR 1043.7 508.2
## 5608 61 19 Fillon Maillet Quentin FRA 1066.3 529.6
## 5609 62 41 Dolder Mario SUI 1052.8 512.0
## 5610 63 57 Nelin Jesper SWE 1052.9 515.0
## 5611 64 100 Bartko Simon SVK 1046.2 521.7
## 5612 65 71 Fourcade Simon FRA 1040.1 518.1
## 5613 66 63 Szczurek Lukasz POL 1055.9 536.8
## 5614 67 70 Kaukenas Tomas LTU 1049.3 535.9
## 5615 68 82 Sima Michal SVK 1056.9 526.2
## 5616 69 36 Tachizaki Mikito JPN 1048.0 538.1
## 5617 70 96 Lusa Daumants LAT 1043.9 535.6
## 5618 71 52 Abasheu Dzmitry BLR 1062.0 537.7
## 5619 72 44 Drinovec Mitja SLO 1048.4 524.5
## 5620 73 74 Yeremin Roman KAZ 1076.5 527.3
## 5621 74 61 Grossegger Sven AUT 1064.2 545.3
## 5622 75 13 Buta George ROU 1071.6 563.1
## 5623 76 58 Kobonoki Tsukasa JPN 1066.4 532.6
## 5624 77 89 Chenal Thierry ITA 1061.1 537.6
## 5625 78 79 Zhyrnyi Oleksandr UKR 1054.5 516.6
## 5626 79 62 Tyshchenko Artem UKR 1062.1 517.9
## 5627 80 20 Zahkna Rene EST 1076.0 553.4
## 5628 81 103 Faur Remus ROU 1064.7 554.9
## 5629 82 98 Khamitgatin Timur KAZ 1068.9 525.8
## 5630 83 48 Guzik Grzegorz POL 1083.9 527.0
## 5631 84 53 Vaclavik Adam CZE 1091.4 596.5
## 5632 85 106 Schommer Paul USA 1085.5 523.2
## 5633 86 8 Green Brendan CAN 1107.7 532.0
## 5634 87 105 Nedza-Kubiniec Andrzej POL 1080.7 530.5
## 5635 88 73 Dixon Scott GBR 1080.1 562.2
## 5636 89 86 Ivko Maksym UKR 1063.5 522.2
## 5637 90 93 Smolski Anton BLR 1105.5 547.3
## 5638 91 30 Smith Nathan CAN 1074.8 563.6
## 5639 92 2 Leitner Felix AUT 1115.7 615.8
## 5640 93 78 Vitenko Vladislav KAZ 1117.8 553.8
## 5641 94 43 Crnkovic Kresimir CRO 1128.3 556.1
## 5642 95 37 Yaliotnau Raman BLR 1112.9 584.0
## 5643 96 94 Kuts Timur KAZ 1106.1 534.2
## 5644 97 101 Kletcherov Michail BUL 1129.1 531.2
## 5645 98 91 Dotsenko Andriy UKR 1129.1 545.4
## 5646 99 104 Femling Peppe SWE 1109.5 600.8
## 5647 100 64 Puchianu Cornel ROU 1156.2 598.5
## 5648 100 80 Angelis Apostolos GRE 1143.2 578.9
## 5649 102 68 Choi Dujin KOR 1136.4 569.0
## 5650 103 67 Hodzic Edin SRB 1168.5 606.6
## 5651 1 1 Fourcade Martin FRA 1797.0 446.4
## 5652 2 2 Boe Johannes Thingnes NOR 1812.7 444.8
## 5653 3 10 Lesser Erik GER 1805.7 458.1
## 5654 4 5 Shipulin Anton RUS 1805.1 456.1
## 5655 5 9 Weger Benjamin SUI 1824.9 446.8
## 5656 6 12 Peiffer Arnd GER 1830.7 451.8
## 5657 7 27 Windisch Dominik ITA 1859.8 458.1
## 5658 8 3 Fak Jakov SLO 1846.9 462.8
## 5659 9 17 Loginov Alexander RUS 1865.0 487.9
## 5660 10 28 Bjoentegaard Erlend NOR 1884.1 459.1
## 5661 11 6 Boe Tarjei NOR 1877.2 486.2
## 5662 12 16 Eder Simon AUT 1864.7 496.5
## 5663 13 15 Babikov Anton RUS 1869.2 459.0
## 5664 14 19 Lindstroem Fredrik SWE 1878.1 479.6
## 5665 15 7 Hofer Lukas ITA 1892.4 476.4
## 5666 16 8 Birkeland Lars Helge NOR 1887.9 485.4
## 5667 17 14 Desthieux Simon FRA 1925.2 473.5
## 5668 18 20 Doll Benedikt GER 1926.9 523.1
## 5669 19 30 Garanichev Evgeniy RUS 1918.6 460.3
## 5670 20 13 Fillon Maillet Quentin FRA 1926.5 514.5
## 5671 21 21 Tsvetkov Maxim RUS 1902.6 503.5
## 5672 22 26 Guigonnat Antonin FRA 1924.9 488.5
## 5673 23 24 Bailey Lowell USA 1928.4 491.3
## 5674 24 25 Doherty Sean USA 1950.2 508.3
## 5675 25 4 Schempp Simon GER 1961.9 549.0
## 5676 26 29 Gow Scott CAN 2018.5 510.2
## 5677 27 11 Rastorgujevs Andrejs LAT 2040.8 555.2
## 5678 28 23 Lapshin Timofei KOR 2019.4 537.0
## 5679 29 18 L'Abee-Lund Henrik NOR 2055.2 548.2
## 5680 30 22 Eliseev Matvey RUS 2123.4 540.5
## 5681 1 1 Boe Johannes Thingnes NOR 1607.4 403.5
## 5682 2 2 Fourcade Martin FRA 1685.4 419.9
## 5683 3 6 Shipulin Anton RUS 1701.0 430.0
## 5684 4 18 Loginov Alexander RUS 1712.6 401.2
## 5685 5 4 Schempp Simon GER 1721.2 405.9
## 5686 6 5 Desthieux Simon FRA 1734.5 433.1
## 5687 7 40 Hofer Lukas ITA 1743.6 424.0
## 5688 8 12 Doll Benedikt GER 1745.6 433.6
## 5689 9 26 Eder Simon AUT 1742.3 402.7
## 5690 10 25 Bjoentegaard Erlend NOR 1765.2 427.5
## 5691 11 22 Peiffer Arnd GER 1762.2 411.6
## 5692 12 3 Guigonnat Antonin FRA 1755.9 408.9
## 5693 13 13 Fak Jakov SLO 1767.0 428.5
## 5694 14 35 Bailey Lowell USA 1752.7 420.8
## 5695 15 9 Windisch Dominik ITA 1782.5 422.9
## 5696 16 11 Weger Benjamin SUI 1777.9 434.0
## 5697 17 21 Birkeland Lars Helge NOR 1761.8 416.2
## 5698 18 36 Claude Florent BEL 1774.6 418.7
## 5699 19 24 Rastorgujevs Andrejs LAT 1781.0 436.4
## 5700 20 48 Boe Tarjei NOR 1796.2 414.5
## 5701 21 54 Finello Jeremy SUI 1793.6 415.0
## 5702 22 34 Krcmar Michal CZE 1813.0 421.3
## 5703 23 15 Babikov Anton RUS 1803.8 456.5
## 5704 24 19 Garanichev Evgeniy RUS 1809.0 439.8
## 5705 25 20 Eliseev Matvey RUS 1808.3 444.8
## 5706 26 10 Burke Tim USA 1799.3 445.3
## 5707 27 16 Gow Scott CAN 1809.6 456.1
## 5708 28 27 Iliev Vladimir BUL 1811.9 463.4
## 5709 29 30 Gow Christian CAN 1798.5 427.4
## 5710 30 17 Doherty Sean USA 1807.7 443.6
## 5711 31 8 Lapshin Timofei KOR 1798.8 448.3
## 5712 32 44 Lesser Erik GER 1822.6 435.6
## 5713 33 14 Ermits Kalev EST 1820.6 434.0
## 5714 34 43 Anev Krasimir BUL 1839.6 423.9
## 5715 35 51 Muiznieks Oskars LAT 1839.9 423.3
## 5716 36 23 Samuelsson Sebastian SWE 1854.6 450.3
## 5717 37 46 Beatrix Jean Guillaume FRA 1857.2 427.3
## 5718 38 42 Bauer Klemen SLO 1857.7 444.4
## 5719 39 7 Gjesbakk Fredrik NOR 1850.4 459.4
## 5720 40 29 Otcenas Martin SVK 1864.3 448.1
## 5721 41 37 Moravec Ondrej CZE 1868.6 437.2
## 5722 42 33 Wiestner Serafin SUI 1879.9 479.3
## 5723 43 47 Krupcik Tomas CZE 1891.7 442.0
## 5724 44 59 Nawrath Philipp GER 1898.2 446.9
## 5725 45 39 Gronman Tuomas FIN 1892.7 428.0
## 5726 46 32 Bormolini Thomas ITA 1891.3 499.8
## 5727 47 58 Lindstroem Fredrik SWE 1893.6 443.0
## 5728 48 56 Nordgren Leif USA 1886.9 498.4
## 5729 49 57 Hiidensalo Olli FIN 1917.4 498.3
## 5730 50 38 Kuehn Johannes GER 1934.0 469.5
## 5731 51 50 Kazar Matej SVK 1933.4 459.3
## 5732 52 55 Dovzan Miha SLO 1930.9 435.1
## 5733 53 53 Sinapov Anton BUL 1973.8 512.0
## 5734 54 49 Strolia Vytautas LTU 1990.1 464.0
## 5735 55 28 Eberhard Tobias AUT 1991.4 491.2
## 5736 56 60 Tkalenko Ruslan UKR 2006.6 487.6
## 5737 57 52 Komatz David AUT 2005.9 434.4
## 5738 1 42 Boe Johannes Thingnes NOR 963.9 462.2
## 5739 2 48 Fourcade Martin FRA 967.0 475.7
## 5740 3 47 Peiffer Arnd GER 986.3 497.0
## 5741 4 46 Shipulin Anton RUS 991.1 505.5
## 5742 5 94 Jacquelin Emilien FRA 982.9 493.4
## 5743 6 37 Birkeland Lars Helge NOR 997.4 498.3
## 5744 7 38 Eberhard Julian AUT 1035.5 538.6
## 5745 8 51 Babikov Anton RUS 1021.9 509.0
## 5746 9 77 Chepelin Vladimir BLR 1039.7 525.7
## 5747 10 31 Moravec Ondrej CZE 1031.4 511.5
## 5748 11 23 Desthieux Simon FRA 1064.6 533.6
## 5749 12 78 Siemakov Volodymyr UKR 1035.2 519.1
## 5750 13 62 Doll Benedikt GER 1060.4 510.2
## 5751 14 2 Rastorgujevs Andrejs LAT 1049.5 549.0
## 5752 15 41 Lesser Erik GER 1054.9 512.4
## 5753 16 39 Weger Benjamin SUI 1044.3 523.1
## 5754 17 27 Windisch Dominik ITA 1078.9 488.7
## 5755 18 32 Eder Simon AUT 1058.6 553.7
## 5756 19 71 Kuehn Johannes GER 1062.6 547.1
## 5757 20 44 Schempp Simon GER 1052.6 513.0
## 5758 21 34 Otcenas Martin SVK 1049.2 526.1
## 5759 22 43 Boe Tarjei NOR 1057.8 542.5
## 5760 23 22 Lapshin Timofei KOR 1044.2 525.0
## 5761 24 73 Fourcade Simon FRA 1042.9 534.1
## 5762 25 63 Gronman Tuomas FIN 1046.8 513.9
## 5763 26 20 Fillon Maillet Quentin FRA 1084.1 528.7
## 5764 27 29 Hofer Lukas ITA 1068.2 509.7
## 5765 28 7 Guigonnat Antonin FRA 1081.9 524.1
## 5766 29 8 Rees Roman GER 1065.6 554.9
## 5767 30 88 Guzik Grzegorz POL 1059.4 504.1
## 5768 31 50 Tsvetkov Maxim RUS 1052.5 555.4
## 5769 32 10 Svendsen Emil Hegle NOR 1073.0 546.1
## 5770 33 21 Fak Jakov SLO 1068.7 533.5
## 5771 34 15 Yaliotnau Raman BLR 1068.5 528.7
## 5772 35 64 Anev Krasimir BUL 1057.8 531.3
## 5773 36 93 Bjoentegaard Erlend NOR 1076.9 575.5
## 5774 37 26 Bauer Klemen SLO 1074.2 526.8
## 5775 38 85 L'Abee-Lund Henrik NOR 1074.9 543.7
## 5776 39 49 Lessing Roland EST 1071.1 528.3
## 5777 40 33 Roesch Michael BEL 1065.2 562.9
## 5778 41 30 Bailey Lowell USA 1063.0 540.3
## 5779 42 19 Loginov Alexander RUS 1083.8 553.0
## 5780 43 40 Burke Tim USA 1072.2 550.7
## 5781 44 36 Pidruchnyi Dmytro UKR 1087.7 540.7
## 5782 45 76 Hasilla Tomas SVK 1081.3 537.6
## 5783 46 1 Seppala Tero FIN 1084.6 550.4
## 5784 47 89 Montello Giuseppe ITA 1067.5 544.5
## 5785 48 98 Eliseev Matvey RUS 1071.0 505.1
## 5786 49 4 Landertinger Dominik AUT 1094.4 565.3
## 5787 50 65 Nordgren Leif USA 1073.8 534.4
## 5788 51 54 Nedza-Kubiniec Andrzej POL 1066.9 562.9
## 5789 52 99 Vitenko Vladislav KAZ 1075.5 532.7
## 5790 53 9 Garanichev Evgeniy RUS 1094.9 558.6
## 5791 54 17 Eberhard Tobias AUT 1067.0 557.6
## 5792 55 13 Slesingr Michal CZE 1092.4 573.7
## 5793 56 95 Puchianu Cornel ROU 1093.6 550.2
## 5794 57 91 Grossegger Sven AUT 1081.7 541.9
## 5795 58 57 Vaclavik Adam CZE 1102.8 598.4
## 5796 58 66 Faur Remus ROU 1069.1 548.1
## 5797 60 59 Strolia Vytautas LTU 1094.6 578.9
## 5798 61 45 Dolder Mario SUI 1107.3 572.6
## 5799 62 35 Krcmar Michal CZE 1109.3 546.2
## 5800 63 96 Currier Russell USA 1103.1 564.8
## 5801 64 25 Hiidensalo Olli FIN 1120.9 581.6
## 5802 65 82 Chenal Thierry ITA 1096.0 571.3
## 5803 66 55 Davies Macx CAN 1107.6 569.9
## 5804 67 16 Kazar Matej SVK 1104.2 533.6
## 5805 68 101 Abasheu Dzmitry BLR 1112.5 537.7
## 5806 69 86 Podkorytov Vassiliy KAZ 1093.9 544.8
## 5807 70 110 Jaeger Martin SUI 1109.8 576.6
## 5808 71 56 Kobonoki Tsukasa JPN 1094.1 557.4
## 5809 72 108 Kubaliak Michal SVK 1072.8 555.4
## 5810 73 69 Muiznieks Oskars LAT 1108.1 537.3
## 5811 74 75 Stenersen Torstein SWE 1103.9 552.8
## 5812 75 5 Doherty Sean USA 1124.0 541.2
## 5813 76 18 Ermits Kalev EST 1110.4 530.1
## 5814 77 84 Yeremin Roman KAZ 1129.2 557.0
## 5815 78 11 Bormolini Thomas ITA 1112.4 576.0
## 5816 79 67 Dombrovski Karol LTU 1092.5 576.5
## 5817 80 109 Gerdzhikov Dimitar BUL 1109.4 518.3
## 5818 81 100 Kristejn Lukas CZE 1122.0 531.7
## 5819 82 83 Campbell Carsen CAN 1117.6 540.6
## 5820 83 14 Pryma Artem UKR 1139.7 628.0
## 5821 84 58 Drinovec Mitja SLO 1123.0 594.7
## 5822 85 53 Tyshchenko Artem UKR 1090.2 554.0
## 5823 86 80 Komatz David AUT 1127.9 559.3
## 5824 86 87 Koiv Kauri EST 1120.7 580.2
## 5825 88 107 Tkalenko Ruslan UKR 1133.3 622.4
## 5826 89 104 Hudec Matthew CAN 1115.7 579.4
## 5827 90 70 Szczurek Lukasz POL 1133.9 540.6
## 5828 91 68 Hallstroem Simon SWE 1152.0 579.9
## 5829 92 24 Iliev Vladimir BUL 1161.6 585.8
## 5830 93 106 Soederhielm Tiio SWE 1153.6 579.1
## 5831 94 3 Dovzan Miha SLO 1137.6 571.4
## 5832 95 28 Varabei Maksim BLR 1174.7 572.6
## 5833 96 61 Dixon Scott GBR 1128.1 587.9
## 5834 97 6 Sinapov Anton BUL 1190.8 617.5
## 5835 98 97 Ozaki Kosuke JPN 1169.6 642.8
## 5836 99 103 Arwidson Tobias SWE 1139.3 616.0
## 5837 100 92 Braun Maxim KAZ 1166.0 620.1
## 5838 101 102 Bricis Ilmars LAT 1171.9 628.0
## 5839 102 12 Wiestner Serafin SUI 1196.5 628.2
## 5840 103 90 Banys Linas LTU 1180.9 566.5
## 5841 104 60 Kim Yonggyu KOR 1185.3 585.1
## 5842 105 81 Angelis Apostolos GRE 1196.0 576.1
## 5843 106 52 Pop Gheorghe ROU 1201.0 622.7
## 5844 107 105 Millar Aidan CAN 1196.6 597.0
## 5845 108 74 Crnkovic Kresimir CRO 1242.1 623.7
## 5846 109 72 Hodzic Edin SRB 1283.5 657.3
## 5847 1 1 Fourcade Martin FRA 1967.7 500.2
## 5848 2 6 Boe Tarjei NOR 1997.8 506.9
## 5849 3 27 Bjoentegaard Erlend NOR 1998.5 506.4
## 5850 4 13 Doll Benedikt GER 2004.4 511.8
## 5851 5 28 Kuehn Johannes GER 2008.8 489.6
## 5852 6 2 Boe Johannes Thingnes NOR 2018.9 498.2
## 5853 7 14 Svendsen Emil Hegle NOR 2018.5 514.8
## 5854 8 24 Windisch Dominik ITA 2021.8 525.8
## 5855 9 4 Shipulin Anton RUS 2019.2 522.3
## 5856 10 8 Desthieux Simon FRA 2027.5 515.0
## 5857 11 23 L'Abee-Lund Henrik NOR 2030.7 513.5
## 5858 12 3 Fak Jakov SLO 2027.8 530.6
## 5859 13 9 Weger Benjamin SUI 2032.6 518.5
## 5860 14 21 Moravec Ondrej CZE 2033.3 500.2
## 5861 15 11 Eder Simon AUT 2032.1 492.4
## 5862 16 22 Krcmar Michal CZE 2045.6 520.3
## 5863 17 17 Lesser Erik GER 2053.4 534.5
## 5864 18 20 Loginov Alexander RUS 2052.8 517.2
## 5865 19 5 Peiffer Arnd GER 2056.7 525.0
## 5866 20 29 Fourcade Simon FRA 2054.8 513.5
## 5867 21 12 Fillon Maillet Quentin FRA 2064.7 498.1
## 5868 22 25 Burke Tim USA 2069.0 510.9
## 5869 23 19 Guigonnat Antonin FRA 2089.6 526.4
## 5870 24 18 Babikov Anton RUS 2095.7 534.1
## 5871 25 7 Hofer Lukas ITA 2107.4 519.7
## 5872 26 10 Birkeland Lars Helge NOR 2115.3 526.6
## 5873 27 16 Rastorgujevs Andrejs LAT 2142.8 587.4
## 5874 28 26 Jacquelin Emilien FRA 2159.3 571.2
## 5875 29 15 Eberhard Julian AUT 2184.1 591.7
## 5876 30 30 Chepelin Vladimir BLR 2197.3 569.6
## 5877 1 1 Boe Johannes Thingnes NOR 1509.5 380.6
## 5878 2 2 Fourcade Martin FRA 1571.2 383.1
## 5879 3 4 Shipulin Anton RUS 1591.5 387.1
## 5880 4 3 Peiffer Arnd GER 1628.5 387.5
## 5881 5 32 Svendsen Emil Hegle NOR 1659.3 387.9
## 5882 6 5 Jacquelin Emilien FRA 1648.7 414.4
## 5883 7 18 Eder Simon AUT 1648.3 408.2
## 5884 8 11 Desthieux Simon FRA 1679.2 414.4
## 5885 9 6 Birkeland Lars Helge NOR 1671.7 407.5
## 5886 10 7 Eberhard Julian AUT 1693.8 379.9
## 5887 11 36 Bjoentegaard Erlend NOR 1694.6 406.3
## 5888 12 16 Weger Benjamin SUI 1696.4 432.1
## 5889 13 26 Fillon Maillet Quentin FRA 1695.6 431.8
## 5890 14 8 Babikov Anton RUS 1701.3 401.1
## 5891 15 35 Anev Krasimir BUL 1701.9 387.2
## 5892 16 13 Doll Benedikt GER 1717.4 407.7
## 5893 17 17 Windisch Dominik ITA 1719.7 399.7
## 5894 18 14 Rastorgujevs Andrejs LAT 1718.0 396.8
## 5895 19 28 Guigonnat Antonin FRA 1715.6 406.6
## 5896 20 31 Tsvetkov Maxim RUS 1715.8 405.4
## 5897 21 43 Burke Tim USA 1716.2 412.3
## 5898 22 49 Landertinger Dominik AUT 1725.3 404.4
## 5899 23 38 L'Abee-Lund Henrik NOR 1729.4 390.7
## 5900 24 55 Slesingr Michal CZE 1728.3 405.5
## 5901 25 24 Fourcade Simon FRA 1719.3 423.8
## 5902 26 40 Roesch Michael BEL 1727.8 412.5
## 5903 27 37 Bauer Klemen SLO 1725.9 412.4
## 5904 28 19 Kuehn Johannes GER 1744.2 419.1
## 5905 29 22 Boe Tarjei NOR 1736.6 452.5
## 5906 30 39 Lessing Roland EST 1742.3 398.8
## 5907 31 30 Guzik Grzegorz POL 1750.6 401.1
## 5908 32 42 Loginov Alexander RUS 1766.6 433.6
## 5909 33 48 Eliseev Matvey RUS 1762.8 424.5
## 5910 34 58 Vaclavik Adam CZE 1764.2 394.7
## 5911 35 41 Bailey Lowell USA 1752.9 429.7
## 5912 36 27 Hofer Lukas ITA 1781.8 386.0
## 5913 37 15 Lesser Erik GER 1747.1 435.1
## 5914 38 44 Pidruchnyi Dmytro UKR 1785.9 414.6
## 5915 39 53 Garanichev Evgeniy RUS 1784.8 414.3
## 5916 40 29 Rees Roman GER 1785.2 414.3
## 5917 41 12 Siemakov Volodymyr UKR 1773.7 431.3
## 5918 42 57 Grossegger Sven AUT 1767.4 423.0
## 5919 43 10 Moravec Ondrej CZE 1782.9 395.4
## 5920 44 50 Nordgren Leif USA 1797.6 402.7
## 5921 45 9 Chepelin Vladimir BLR 1804.6 412.2
## 5922 46 46 Seppala Tero FIN 1823.2 416.5
## 5923 47 47 Montello Giuseppe ITA 1810.6 416.5
## 5924 48 21 Otcenas Martin SVK 1818.5 424.8
## 5925 49 45 Hasilla Tomas SVK 1829.6 479.2
## 5926 50 34 Yaliotnau Raman BLR 1852.9 467.8
## 5927 51 56 Puchianu Cornel ROU 1850.2 433.1
## 5928 52 52 Vitenko Vladislav KAZ 1900.0 462.6
## 5929 1 36 Boe Johannes Thingnes NOR 999.1 506.5
## 5930 2 38 Fourcade Martin FRA 1019.2 515.6
## 5931 3 33 Fak Jakov SLO 1040.5 522.9
## 5932 4 35 Schempp Simon GER 1051.2 546.5
## 5933 5 10 L'Abee-Lund Henrik NOR 1051.3 531.3
## 5934 6 41 Peiffer Arnd GER 1046.5 531.7
## 5935 7 61 Weger Benjamin SUI 1057.3 525.8
## 5936 8 32 Lesser Erik GER 1054.4 523.6
## 5937 9 37 Shipulin Anton RUS 1049.0 521.6
## 5938 9 105 Nawrath Philipp GER 1049.2 528.4
## 5939 11 66 Eberhard Julian AUT 1069.6 530.4
## 5940 12 39 Pidruchnyi Dmytro UKR 1066.5 554.2
## 5941 13 22 Birkeland Lars Helge NOR 1066.0 550.8
## 5942 14 40 Boe Tarjei NOR 1059.9 554.9
## 5943 15 84 Hofer Lukas ITA 1073.0 538.3
## 5944 16 89 Lapshin Timofei KOR 1063.4 557.0
## 5945 17 7 Eliseev Matvey RUS 1068.2 547.8
## 5946 18 63 Rastorgujevs Andrejs LAT 1073.6 550.4
## 5947 19 12 Smith Nathan CAN 1071.6 545.1
## 5948 20 93 Tsvetkov Maxim RUS 1066.8 561.8
## 5949 21 86 Desthieux Simon FRA 1090.9 528.9
## 5950 22 25 Bauer Klemen SLO 1066.3 530.0
## 5951 22 79 Doherty Sean USA 1067.4 543.7
## 5952 24 68 Kuehn Johannes GER 1108.0 554.6
## 5953 24 72 Seppala Tero FIN 1075.3 559.0
## 5954 26 81 Krcmar Michal CZE 1082.4 542.4
## 5955 27 56 Roesch Michael BEL 1092.2 572.5
## 5956 28 91 Bjoerndalen Ole Einar NOR 1078.4 562.7
## 5957 29 53 Loginov Alexander RUS 1098.1 555.1
## 5958 30 57 Babikov Anton RUS 1073.7 555.0
## 5959 31 109 Lessing Roland EST 1084.8 551.6
## 5960 32 59 Nelin Jesper SWE 1106.6 585.9
## 5961 33 64 Tachizaki Mikito JPN 1092.5 562.4
## 5962 34 31 Moravec Ondrej CZE 1107.6 556.3
## 5963 35 34 Eder Simon AUT 1098.8 560.8
## 5964 36 78 Siemakov Volodymyr UKR 1089.0 541.0
## 5965 37 2 Tkalenko Ruslan UKR 1090.6 564.7
## 5966 38 28 Fillon Maillet Quentin FRA 1126.0 581.7
## 5967 39 19 Beatrix Jean Guillaume FRA 1094.7 573.1
## 5968 40 3 Dovzan Miha SLO 1106.1 573.5
## 5969 41 58 Bormolini Thomas ITA 1113.2 578.5
## 5970 41 108 Bjoentegaard Erlend NOR 1120.6 575.6
## 5971 43 87 Gow Scott CAN 1123.5 560.2
## 5972 44 27 Lindstroem Fredrik SWE 1132.2 607.9
## 5973 45 96 Chenal Thierry ITA 1102.1 580.5
## 5974 46 21 Slesingr Michal CZE 1134.0 588.3
## 5975 47 13 Doll Benedikt GER 1142.9 547.1
## 5976 48 9 Faur Remus ROU 1112.6 579.4
## 5977 49 80 Finello Jeremy SUI 1115.8 589.8
## 5978 50 88 Strolia Vytautas LTU 1120.0 591.1
## 5979 51 52 Muiznieks Oskars LAT 1127.0 587.1
## 5980 51 107 Green Brendan CAN 1115.5 575.0
## 5981 53 49 Bailey Lowell USA 1129.0 547.8
## 5982 54 60 Gow Christian CAN 1104.7 573.7
## 5983 55 29 Semenov Sergii UKR 1135.7 588.8
## 5984 56 94 Mesotitsch Daniel AUT 1117.2 589.3
## 5985 57 100 Garanichev Evgeniy RUS 1129.3 566.9
## 5986 58 99 Jacquelin Emilien FRA 1114.3 571.3
## 5987 59 98 Vaclavik Adam CZE 1127.4 600.4
## 5988 60 75 Kazar Matej SVK 1135.3 572.4
## 5989 61 102 Kryuko Viktar BLR 1118.7 591.0
## 5990 62 26 Otcenas Martin SVK 1133.2 593.5
## 5991 63 15 Leitner Felix AUT 1142.8 557.2
## 5992 64 45 Kaukenas Tomas LTU 1130.8 559.3
## 5993 64 48 Podkorytov Vassiliy KAZ 1140.2 589.5
## 5994 66 1 Yaliotnau Raman BLR 1150.6 585.6
## 5995 67 4 Kletcherov Michail BUL 1131.8 573.2
## 5996 68 54 Iliev Vladimir BUL 1145.5 554.1
## 5997 69 103 Zhyrnyi Oleksandr UKR 1129.8 580.0
## 5998 70 20 Krupcik Tomas CZE 1134.5 590.7
## 5999 70 67 Drinovec Mitja SLO 1124.2 558.7
## 6000 72 50 Fourcade Simon FRA 1162.1 562.8
## 6001 73 5 Dombrovski Karol LTU 1129.4 594.9
## 6002 73 30 Burke Tim USA 1152.4 599.4
## 6003 75 90 Puchianu Cornel ROU 1138.5 592.8
## 6004 76 44 Guzik Grzegorz POL 1156.5 594.7
## 6005 77 74 Samuelsson Sebastian SWE 1142.5 594.8
## 6006 78 43 Varabei Maksim BLR 1142.5 587.4
## 6007 79 62 Eberhard Tobias AUT 1152.8 562.2
## 6008 80 77 Windisch Dominik ITA 1172.5 601.6
## 6009 81 24 Hiidensalo Olli FIN 1146.4 605.2
## 6010 82 104 Hasilla Tomas SVK 1153.0 552.2
## 6011 83 47 Dolder Mario SUI 1173.4 553.2
## 6012 84 11 Wiestner Serafin SUI 1158.0 583.9
## 6013 85 83 Waeger Lorenz AUT 1145.5 564.3
## 6014 86 70 Sinapov Anton BUL 1164.6 634.7
## 6015 87 6 Nedza-Kubiniec Andrzej POL 1139.5 601.8
## 6016 88 8 Sima Michal SVK 1156.9 567.6
## 6017 89 42 Zahkna Rene EST 1154.9 618.1
## 6018 90 51 Buta George ROU 1156.7 592.3
## 6019 91 76 Yeremin Roman KAZ 1197.6 603.5
## 6020 92 85 Darozhka Aliaksandr BLR 1181.7 646.4
## 6021 93 73 Szczurek Lukasz POL 1177.5 636.3
## 6022 94 69 Crnkovic Kresimir CRO 1188.1 598.0
## 6023 95 82 Ermits Kalev EST 1159.7 580.0
## 6024 96 71 Lusa Daumants LAT 1145.7 602.6
## 6025 97 92 Kobonoki Tsukasa JPN 1176.1 640.6
## 6026 98 16 Nordgren Leif USA 1167.3 629.4
## 6027 99 14 Loukkaanhuhta Mikko FIN 1175.2 585.5
## 6028 100 101 Jaeger Martin SUI 1161.6 643.0
## 6029 101 18 Pantov Anton KAZ 1168.9 581.3
## 6030 102 17 Stenersen Torstein SWE 1165.1 629.4
## 6031 103 97 Schommer Paul USA 1181.5 611.2
## 6032 104 95 Braun Maxim KAZ 1169.4 578.9
## 6033 105 23 Dixon Scott GBR 1191.8 611.4
## 6034 106 46 Kim Yonggyu KOR 1251.6 604.5
## 6035 107 65 Hodzic Edin SRB 1241.0 659.4
## 6036 108 55 Angelis Apostolos GRE 1300.8 668.3
## 6037 1 1 Boe Johannes Thingnes NOR 1826.8 434.2
## 6038 2 3 Fak Jakov SLO 1885.7 452.8
## 6039 3 2 Fourcade Martin FRA 1905.6 519.4
## 6040 4 4 Schempp Simon GER 1902.0 436.4
## 6041 5 14 Boe Tarjei NOR 1906.5 437.3
## 6042 6 20 Tsvetkov Maxim RUS 1904.8 456.4
## 6043 7 15 Hofer Lukas ITA 1926.0 459.1
## 6044 8 5 L'Abee-Lund Henrik NOR 1927.0 459.2
## 6045 9 9 Shipulin Anton RUS 1922.4 448.7
## 6046 10 13 Birkeland Lars Helge NOR 1928.2 465.6
## 6047 11 11 Eberhard Julian AUT 1953.9 475.3
## 6048 12 38 Fillon Maillet Quentin FRA 1952.5 484.3
## 6049 13 6 Peiffer Arnd GER 1953.2 448.3
## 6050 14 21 Desthieux Simon FRA 1967.5 472.7
## 6051 15 8 Lesser Erik GER 1963.5 466.0
## 6052 16 44 Lindstroem Fredrik SWE 1965.1 451.3
## 6053 17 23 Doherty Sean USA 1945.8 451.4
## 6054 18 12 Pidruchnyi Dmytro UKR 1966.3 466.8
## 6055 19 17 Eliseev Matvey RUS 1953.4 480.4
## 6056 20 30 Babikov Anton RUS 1963.1 484.8
## 6057 21 32 Nelin Jesper SWE 1979.2 440.4
## 6058 22 7 Weger Benjamin SUI 1985.4 467.4
## 6059 23 18 Rastorgujevs Andrejs LAT 1995.5 491.4
## 6060 24 39 Beatrix Jean Guillaume FRA 1980.0 445.2
## 6061 25 26 Krcmar Michal CZE 1990.9 478.9
## 6062 26 57 Garanichev Evgeniy RUS 1990.1 462.4
## 6063 27 47 Doll Benedikt GER 2007.0 439.6
## 6064 28 35 Eder Simon AUT 2000.2 447.3
## 6065 29 10 Nawrath Philipp GER 1983.8 449.9
## 6066 30 41 Bormolini Thomas ITA 2014.2 512.7
## 6067 31 19 Smith Nathan CAN 1993.6 486.9
## 6068 32 27 Roesch Michael BEL 2024.3 464.9
## 6069 33 52 Green Brendan CAN 2028.4 476.9
## 6070 34 42 Bjoentegaard Erlend NOR 2040.1 450.5
## 6071 35 37 Tkalenko Ruslan UKR 2016.2 503.3
## 6072 36 53 Bailey Lowell USA 2023.3 458.2
## 6073 37 22 Bauer Klemen SLO 2027.9 468.1
## 6074 38 50 Strolia Vytautas LTU 2023.7 489.4
## 6075 39 49 Finello Jeremy SUI 2038.0 466.0
## 6076 40 46 Slesingr Michal CZE 2037.9 485.4
## 6077 41 24 Kuehn Johannes GER 2059.9 499.0
## 6078 42 25 Seppala Tero FIN 2058.4 498.2
## 6079 43 34 Moravec Ondrej CZE 2058.9 480.9
## 6080 44 29 Loginov Alexander RUS 2057.4 524.1
## 6081 45 40 Dovzan Miha SLO 2057.8 491.7
## 6082 46 28 Bjoerndalen Ole Einar NOR 2071.6 457.2
## 6083 47 59 Vaclavik Adam CZE 2120.7 472.1
## 6084 48 43 Gow Scott CAN 2126.9 499.0
## 6085 49 54 Gow Christian CAN 2120.3 519.6
## 6086 50 31 Lessing Roland EST 2130.4 489.5
## 6087 51 60 Kazar Matej SVK 2129.9 495.9
## 6088 52 51 Muiznieks Oskars LAT 2139.4 524.5
## 6089 53 55 Semenov Sergii UKR 2136.1 522.3
## 6090 54 45 Chenal Thierry ITA 2166.5 516.6
## 6091 55 33 Tachizaki Mikito JPN 2143.6 545.3
## 6092 56 56 Mesotitsch Daniel AUT 2162.4 504.1
## 6093 57 48 Faur Remus ROU 2144.3 507.7
## 6094 1 19 Shipulin Anton RUS 986.8 505.7
## 6095 2 12 Rastorgujevs Andrejs LAT 997.8 513.6
## 6096 3 6 Fillon Maillet Quentin FRA 1003.1 507.8
## 6097 4 30 Boe Johannes Thingnes NOR 1009.1 534.8
## 6098 5 21 Peiffer Arnd GER 1019.6 533.4
## 6099 6 34 Desthieux Simon FRA 1027.1 517.4
## 6100 7 47 Lesser Erik GER 1016.1 536.9
## 6101 8 23 Schempp Simon GER 1033.4 526.8
## 6102 9 11 Hofer Lukas ITA 1030.5 539.9
## 6103 10 20 Windisch Dominik ITA 1020.4 528.8
## 6104 11 72 L'Abee-Lund Henrik NOR 1027.0 537.7
## 6105 12 91 Bjoerndalen Ole Einar NOR 1010.5 516.9
## 6106 13 51 Anev Krasimir BUL 1018.2 524.5
## 6107 14 32 Birkeland Lars Helge NOR 1015.1 516.7
## 6108 15 24 Lapshin Timofei KOR 1021.6 537.9
## 6109 16 22 Bailey Lowell USA 1026.6 537.7
## 6110 17 55 Nordgren Leif USA 1024.8 533.7
## 6111 18 8 Fak Jakov SLO 1032.0 519.7
## 6112 19 5 Bauer Klemen SLO 1045.0 557.5
## 6113 20 29 Moravec Ondrej CZE 1029.1 536.8
## 6114 21 46 Samuelsson Sebastian SWE 1045.8 542.0
## 6115 22 56 Nelin Jesper SWE 1038.4 526.4
## 6116 23 4 Doll Benedikt GER 1040.0 547.4
## 6117 24 42 Bjoentegaard Erlend NOR 1038.8 524.7
## 6118 25 17 Iliev Vladimir BUL 1053.3 540.2
## 6119 26 98 Malyshko Dmitry RUS 1036.6 517.9
## 6120 27 100 Rees Roman GER 1038.0 537.7
## 6121 28 15 Eberhard Julian AUT 1074.0 537.4
## 6122 29 40 Bormolini Thomas ITA 1044.4 551.5
## 6123 30 2 Tsvetkov Maxim RUS 1048.5 554.5
## 6124 31 13 Bocharnikov Sergey BLR 1043.8 527.3
## 6125 32 81 Mesotitsch Daniel AUT 1044.4 537.6
## 6126 33 10 Boe Tarjei NOR 1074.8 541.4
## 6127 34 70 Green Brendan CAN 1049.7 535.7
## 6128 35 54 Doherty Sean USA 1069.6 554.9
## 6129 36 37 Dolder Mario SUI 1067.1 571.2
## 6130 37 87 Ponsiluoma Martin SWE 1043.9 536.9
## 6131 38 9 Burke Tim USA 1084.0 567.8
## 6132 39 52 Otcenas Martin SVK 1065.0 567.2
## 6133 40 62 Puchianu Cornel ROU 1070.9 560.0
## 6134 41 44 Guigonnat Antonin FRA 1080.2 535.6
## 6135 42 45 Dovzan Miha SLO 1066.3 554.2
## 6136 43 69 Fourcade Simon FRA 1066.2 547.0
## 6137 44 58 Vaclavik Adam CZE 1078.1 567.4
## 6138 45 35 Claude Florent BEL 1070.7 552.0
## 6139 46 18 Garanichev Evgeniy RUS 1080.6 566.8
## 6140 47 80 Vitenko Vladislav KAZ 1066.6 543.4
## 6141 48 60 Zahkna Rene EST 1062.8 537.6
## 6142 49 93 Gerdzhikov Dimitar BUL 1086.0 547.3
## 6143 50 49 Eberhard Tobias AUT 1081.6 557.2
## 6144 51 48 Babikov Anton RUS 1068.2 568.9
## 6145 52 53 Siemakov Volodymyr UKR 1067.2 571.5
## 6146 53 16 Kazar Matej SVK 1091.5 531.6
## 6147 54 79 Yeremin Roman KAZ 1095.9 536.7
## 6148 55 61 Buta George ROU 1067.6 547.5
## 6149 56 36 Pryma Artem UKR 1078.3 556.0
## 6150 57 38 Seppala Tero FIN 1085.1 567.5
## 6151 58 33 Hiidensalo Olli FIN 1064.0 572.7
## 6152 59 99 Dombrovski Karol LTU 1065.6 543.1
## 6153 60 71 Strolia Vytautas LTU 1089.0 560.7
## 6154 61 3 Pidruchnyi Dmytro UKR 1100.8 576.9
## 6155 62 14 Lindstroem Fredrik SWE 1090.9 574.9
## 6156 63 66 Bartko Simon SVK 1091.5 585.5
## 6157 64 74 Yaliotnau Raman BLR 1109.2 578.9
## 6158 65 92 Smolski Anton BLR 1097.3 539.0
## 6159 66 85 Soukup Jaroslav CZE 1093.7 547.1
## 6160 67 26 Ermits Kalev EST 1113.1 576.9
## 6161 68 97 Howe Alex USA 1095.3 562.1
## 6162 69 78 Kuehn Johannes GER 1127.7 542.2
## 6163 70 75 Kobonoki Tsukasa JPN 1099.3 590.9
## 6164 71 88 Koiv Kauri EST 1098.0 567.1
## 6165 72 77 Gronman Tuomas FIN 1085.2 575.3
## 6166 73 67 Tkalenko Ruslan UKR 1114.5 579.3
## 6167 74 64 Drinovec Mitja SLO 1112.4 581.1
## 6168 75 39 Finello Jeremy SUI 1113.4 618.5
## 6169 76 7 Weger Benjamin SUI 1121.1 605.5
## 6170 77 86 Plessnitzer Kevin AUT 1123.0 590.0
## 6171 78 96 Tyshchenko Artem UKR 1112.8 576.4
## 6172 79 41 Gow Christian CAN 1107.8 576.7
## 6173 80 103 Jacquelin Emilien FRA 1113.9 583.9
## 6174 81 63 Nedza-Kubiniec Andrzej POL 1116.8 567.8
## 6175 82 59 Angelis Apostolos GRE 1124.9 579.4
## 6176 83 90 Hasilla Tomas SVK 1124.8 572.9
## 6177 84 65 Patrijuks Aleksandrs LAT 1123.5 582.4
## 6178 85 76 Burkhalter Joscha SUI 1138.0 572.3
## 6179 86 25 Gow Scott CAN 1132.6 598.1
## 6180 87 83 Eliseev Matvey RUS 1101.6 606.8
## 6181 88 1 Krcmar Michal CZE 1143.2 633.3
## 6182 89 27 Guzik Grzegorz POL 1142.7 556.3
## 6183 90 95 Podkorytov Vassiliy KAZ 1106.8 563.9
## 6184 91 89 Faur Remus ROU 1123.5 554.2
## 6185 92 82 Sinapov Anton BUL 1150.4 619.5
## 6186 93 50 Chepelin Vladimir BLR 1189.2 640.2
## 6187 94 94 Ozaki Kosuke JPN 1170.5 603.4
## 6188 95 84 Braun Maxim KAZ 1127.6 587.7
## 6189 96 68 Kaukenas Tomas LTU 1158.0 643.7
## 6190 97 104 Szwajnos Marcin POL 1214.0 655.1
## 6191 98 57 Dixon Scott GBR 1188.1 610.8
## 6192 99 101 Slotins Roberts LAT 1222.5 642.4
## 6193 100 73 Kim Yonggyu KOR 1241.8 620.8
## 6194 1 16 Eberhard Julian AUT 1895.1 492.3
## 6195 2 1 Fourcade Martin FRA 1877.9 468.1
## 6196 3 3 Shipulin Anton RUS 1882.8 473.8
## 6197 4 13 Doll Benedikt GER 1907.0 500.3
## 6198 5 15 Lesser Erik GER 1904.4 480.2
## 6199 6 5 Peiffer Arnd GER 1911.7 524.0
## 6200 7 19 Windisch Dominik ITA 1927.2 470.9
## 6201 8 22 Krcmar Michal CZE 1926.3 481.7
## 6202 9 20 Moravec Ondrej CZE 1918.9 486.2
## 6203 10 12 Fillon Maillet Quentin FRA 1918.5 476.5
## 6204 11 21 Guigonnat Antonin FRA 1916.9 506.2
## 6205 12 4 Fak Jakov SLO 1942.1 508.9
## 6206 13 8 Hofer Lukas ITA 1940.2 474.5
## 6207 14 29 Bailey Lowell USA 1941.7 507.8
## 6208 15 23 Lindstroem Fredrik SWE 1944.2 492.2
## 6209 16 9 Schempp Simon GER 1957.3 504.0
## 6210 17 27 Anev Krasimir BUL 1933.4 497.0
## 6211 18 18 L'Abee-Lund Henrik NOR 1961.2 500.0
## 6212 19 2 Boe Johannes Thingnes NOR 1962.5 520.1
## 6213 20 6 Boe Tarjei NOR 1960.9 510.5
## 6214 21 7 Desthieux Simon FRA 1973.8 491.9
## 6215 22 14 Rastorgujevs Andrejs LAT 1998.0 537.7
## 6216 23 17 Babikov Anton RUS 2009.2 522.5
## 6217 24 28 Lapshin Timofei KOR 2008.6 502.9
## 6218 25 10 Birkeland Lars Helge NOR 1999.6 533.4
## 6219 26 11 Weger Benjamin SUI 2049.3 501.8
## 6220 27 25 Bjoentegaard Erlend NOR 2074.1 537.1
## 6221 28 26 Bjoerndalen Ole Einar NOR 2071.0 550.9
## 6222 29 24 Kuehn Johannes GER 2118.7 576.8
## 6223 30 30 Nordgren Leif USA 2096.6 535.0
## 6224 1 18 Fourcade Martin FRA 1065.6 517.2
## 6225 2 58 Svendsen Emil Hegle NOR 1070.2 521.8
## 6226 3 10 Boe Johannes Thingnes NOR 1079.2 510.0
## 6227 4 22 Burke Tim USA 1072.7 522.2
## 6228 5 33 Boe Tarjei NOR 1089.8 544.3
## 6229 6 11 Hofer Lukas ITA 1098.3 520.6
## 6230 7 31 Fak Jakov SLO 1091.0 535.3
## 6231 8 13 Weger Benjamin SUI 1102.6 535.1
## 6232 9 6 Krcmar Michal CZE 1111.4 555.5
## 6233 10 8 Pidruchnyi Dmytro UKR 1116.2 527.6
## 6234 11 16 Moravec Ondrej CZE 1111.5 529.0
## 6235 12 28 Peiffer Arnd GER 1123.8 549.9
## 6236 13 15 Desthieux Simon FRA 1124.1 539.8
## 6237 14 34 Lapshin Timofei KOR 1104.8 552.4
## 6238 15 17 Birkeland Lars Helge NOR 1116.5 529.6
## 6239 16 21 Pryma Artem UKR 1126.6 549.5
## 6240 17 14 Doll Benedikt GER 1144.3 575.6
## 6241 18 20 Eberhard Julian AUT 1145.3 543.2
## 6242 18 96 Bocharnikov Sergey BLR 1121.5 539.8
## 6243 20 44 Kuehn Johannes GER 1137.6 579.3
## 6244 21 63 Eliseev Matvey RUS 1109.6 542.5
## 6245 22 1 Windisch Dominik ITA 1142.5 581.5
## 6246 23 27 Loginov Alexander RUS 1149.8 572.4
## 6247 24 38 Lindstroem Fredrik SWE 1137.9 559.9
## 6248 25 88 Soukup Jaroslav CZE 1138.0 572.4
## 6249 26 36 Claude Florent BEL 1126.7 565.1
## Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time year
## 1 424.8 43.2 24.0 8.0 0.0 2014-2015
## 2 436.1 39.8 20.0 8.0 0.0 2014-2015
## 3 430.3 43.3 23.0 26.9 0.0 2014-2015
## 4 426.8 48.5 29.0 7.9 0.0 2014-2015
## 5 436.7 45.6 26.0 7.4 0.0 2014-2015
## 6 435.7 48.1 27.0 7.5 0.0 2014-2015
## 7 426.0 48.6 30.0 27.5 0.0 2014-2015
## 8 443.3 37.7 18.0 7.9 0.0 2014-2015
## 9 433.0 43.3 24.0 28.6 0.0 2014-2015
## 10 442.8 46.1 26.0 8.0 0.0 2014-2015
## 11 441.8 48.2 29.0 27.2 0.0 2014-2015
## 12 433.3 41.9 22.0 8.3 0.0 2014-2015
## 13 434.8 47.9 28.0 28.8 0.0 2014-2015
## 14 441.5 47.9 27.0 30.0 0.0 2014-2015
## 15 448.0 44.2 25.0 7.7 0.0 2014-2015
## 16 443.3 42.9 22.0 28.6 0.0 2014-2015
## 17 436.6 46.8 28.0 28.2 0.0 2014-2015
## 18 447.2 45.4 24.0 8.5 0.0 2014-2015
## 19 433.9 46.5 27.0 51.6 0.0 2014-2015
## 20 441.1 51.3 32.0 8.4 0.0 2014-2015
## 21 441.1 47.2 27.0 7.4 0.0 2014-2015
## 22 445.9 50.6 29.0 29.1 0.0 2014-2015
## 23 439.1 49.0 28.0 29.2 0.0 2014-2015
## 24 445.2 44.0 21.0 8.3 0.0 2014-2015
## 25 432.4 44.9 24.0 30.7 0.0 2014-2015
## 26 441.6 46.5 27.0 30.3 0.0 2014-2015
## 27 450.4 46.8 27.0 8.0 0.0 2014-2015
## 28 440.8 50.6 30.0 28.6 0.0 2014-2015
## 29 431.2 48.6 30.0 8.2 0.0 2014-2015
## 30 449.3 49.2 29.0 30.5 0.0 2014-2015
## 31 443.7 42.3 21.0 29.7 0.0 2014-2015
## 32 451.7 45.1 24.0 30.6 0.0 2014-2015
## 33 442.8 47.5 26.0 50.0 0.0 2014-2015
## 34 452.2 48.1 29.0 28.2 0.0 2014-2015
## 35 449.8 48.7 29.0 7.8 0.0 2014-2015
## 36 443.4 46.6 26.0 7.9 0.0 2014-2015
## 37 452.4 46.8 26.0 29.3 0.0 2014-2015
## 38 447.3 43.8 25.0 27.1 0.0 2014-2015
## 39 449.7 48.1 28.0 29.9 0.0 2014-2015
## 40 439.7 55.7 33.0 30.2 0.0 2014-2015
## 41 452.4 52.0 30.0 52.7 0.0 2014-2015
## 42 458.9 57.5 37.0 8.9 0.0 2014-2015
## 43 453.9 53.1 33.0 29.6 0.0 2014-2015
## 44 453.1 48.4 28.0 30.1 0.0 2014-2015
## 45 447.2 48.1 27.0 51.4 0.0 2014-2015
## 46 458.9 47.6 26.0 30.0 0.0 2014-2015
## 47 444.4 50.3 30.0 49.1 0.0 2014-2015
## 48 435.9 50.4 30.0 30.4 0.0 2014-2015
## 49 450.4 56.5 36.0 28.6 0.0 2014-2015
## 50 458.2 49.0 28.0 52.6 0.0 2014-2015
## 51 466.3 48.3 27.0 8.5 0.0 2014-2015
## 52 460.0 59.7 39.0 7.3 0.0 2014-2015
## 53 442.4 46.2 25.0 51.4 0.0 2014-2015
## 54 451.1 57.0 36.0 50.9 0.0 2014-2015
## 55 437.4 45.1 25.0 29.4 0.0 2014-2015
## 56 448.2 51.8 30.0 49.0 0.0 2014-2015
## 57 461.1 48.4 26.0 29.2 0.0 2014-2015
## 58 462.0 47.6 26.0 50.6 0.0 2014-2015
## 59 453.6 41.8 20.0 8.6 0.0 2014-2015
## 60 462.1 63.2 41.0 8.1 0.0 2014-2015
## 61 443.3 45.2 24.0 54.4 0.0 2014-2015
## 62 453.3 47.5 26.0 53.0 0.0 2014-2015
## 63 444.9 52.7 32.0 51.2 0.0 2014-2015
## 64 449.9 49.8 28.0 76.9 0.0 2014-2015
## 65 455.9 49.5 28.0 52.4 0.0 2014-2015
## 66 459.3 47.4 27.0 53.0 0.0 2014-2015
## 67 471.2 48.9 28.0 8.5 0.0 2014-2015
## 68 478.3 45.3 24.0 8.5 0.0 2014-2015
## 69 469.9 44.9 26.0 48.5 0.0 2014-2015
## 70 459.0 52.4 33.0 52.8 0.0 2014-2015
## 71 443.3 43.9 23.0 31.7 0.0 2014-2015
## 72 446.9 52.4 30.0 32.0 0.0 2014-2015
## 73 456.1 56.3 34.0 28.8 0.0 2014-2015
## 74 448.4 50.0 29.0 28.4 0.0 2014-2015
## 75 492.8 45.3 23.0 8.7 0.0 2014-2015
## 76 469.2 45.8 24.0 8.3 0.0 2014-2015
## 77 451.0 43.2 23.0 54.9 0.0 2014-2015
## 78 459.1 52.0 30.0 53.2 0.0 2014-2015
## 79 445.9 48.8 28.0 53.2 0.0 2014-2015
## 80 466.5 41.4 20.0 32.1 0.0 2014-2015
## 81 481.3 47.5 26.0 8.7 0.0 2014-2015
## 82 466.5 46.5 25.0 54.7 0.0 2014-2015
## 83 467.9 50.0 29.0 8.3 0.0 2014-2015
## 84 482.5 44.1 24.0 31.5 0.0 2014-2015
## 85 480.7 56.9 34.0 9.3 0.0 2014-2015
## 86 452.5 54.1 33.0 49.9 0.0 2014-2015
## 87 459.1 49.5 28.0 51.6 0.0 2014-2015
## 88 473.0 50.2 28.0 30.8 0.0 2014-2015
## 89 470.7 51.6 28.0 31.8 0.0 2014-2015
## 90 481.6 52.9 33.0 7.8 0.0 2014-2015
## 91 449.3 52.1 32.0 79.4 0.0 2014-2015
## 92 472.2 48.5 27.0 33.3 0.0 2014-2015
## 93 471.5 49.7 27.0 55.2 0.0 2014-2015
## 94 481.7 65.9 44.0 8.4 0.0 2014-2015
## 95 459.5 49.2 27.0 56.3 0.0 2014-2015
## 96 461.9 67.3 45.0 54.5 0.0 2014-2015
## 97 468.1 46.2 25.0 31.1 0.0 2014-2015
## 98 473.7 59.2 37.0 105.0 0.0 2014-2015
## 99 480.9 54.6 33.0 56.7 0.0 2014-2015
## 100 491.2 53.8 30.0 58.6 0.0 2014-2015
## 101 501.8 57.5 35.0 82.7 0.0 2014-2015
## 102 329.8 41.1 21.0 8.2 0.0 2014-2015
## 103 332.5 39.3 20.0 9.0 0.0 2014-2015
## 104 334.2 38.9 21.0 9.3 0.0 2014-2015
## 105 332.0 39.7 22.0 8.7 0.0 2014-2015
## 106 329.7 40.3 21.0 8.8 0.0 2014-2015
## 107 329.4 46.0 26.0 7.9 0.0 2014-2015
## 108 328.2 41.4 22.0 28.0 0.0 2014-2015
## 109 328.9 42.9 24.0 8.6 0.0 2014-2015
## 110 326.8 43.5 23.0 7.6 0.0 2014-2015
## 111 332.8 50.2 30.0 8.3 0.0 2014-2015
## 112 330.6 43.9 24.0 7.9 0.0 2014-2015
## 113 328.4 42.9 24.0 8.1 0.0 2014-2015
## 114 323.3 46.0 26.0 28.5 0.0 2014-2015
## 115 338.4 46.9 27.0 8.2 0.0 2014-2015
## 116 330.8 42.1 24.0 28.7 0.0 2014-2015
## 117 325.8 43.5 25.0 49.2 0.0 2014-2015
## 118 333.5 45.1 25.0 30.4 0.0 2014-2015
## 119 334.5 44.2 25.0 8.2 0.0 2014-2015
## 120 336.0 43.8 25.0 8.0 0.0 2014-2015
## 121 348.0 48.3 27.0 30.6 0.0 2014-2015
## 122 331.7 47.6 28.0 29.2 0.0 2014-2015
## 123 342.4 54.4 34.0 50.7 0.0 2014-2015
## 124 331.5 48.6 30.0 49.5 0.0 2014-2015
## 125 337.7 44.5 25.0 30.0 0.0 2014-2015
## 126 339.2 42.9 25.0 30.6 0.0 2014-2015
## 127 331.5 45.3 27.0 29.0 0.0 2014-2015
## 128 336.4 52.4 35.0 9.2 0.0 2014-2015
## 129 355.7 51.9 30.0 30.6 0.0 2014-2015
## 130 349.5 45.7 26.0 9.4 0.0 2014-2015
## 131 332.7 45.5 27.0 47.8 0.0 2014-2015
## 132 334.5 43.6 24.0 50.7 0.0 2014-2015
## 133 332.4 46.1 27.0 70.8 0.0 2014-2015
## 134 333.8 54.4 36.0 30.1 0.0 2014-2015
## 135 338.8 48.8 30.0 51.9 0.0 2014-2015
## 136 339.4 46.1 26.0 29.2 0.0 2014-2015
## 137 333.2 43.3 26.0 68.5 0.0 2014-2015
## 138 342.7 44.6 22.0 8.2 0.0 2014-2015
## 139 342.1 45.8 26.0 75.6 0.0 2014-2015
## 140 346.1 46.7 26.0 53.5 0.0 2014-2015
## 141 331.5 45.6 27.0 28.8 0.0 2014-2015
## 142 340.6 48.9 27.0 30.2 0.0 2014-2015
## 143 344.8 47.5 27.0 8.3 0.0 2014-2015
## 144 349.8 47.2 27.0 8.4 0.0 2014-2015
## 145 353.5 46.8 26.0 30.2 0.0 2014-2015
## 146 343.3 57.8 36.0 76.4 0.0 2014-2015
## 147 349.4 49.3 27.0 31.5 0.0 2014-2015
## 148 345.7 46.7 25.0 51.8 0.0 2014-2015
## 149 347.7 51.9 30.0 54.6 0.0 2014-2015
## 150 347.2 47.5 26.0 52.9 0.0 2014-2015
## 151 346.1 48.6 28.0 95.8 0.0 2014-2015
## 152 345.5 51.0 29.0 72.9 0.0 2014-2015
## 153 363.2 46.3 26.0 51.4 0.0 2014-2015
## 154 372.4 43.1 23.0 8.8 0.0 2014-2015
## 155 724.6 47.8 24.0 5.4 0.0 2014-2015
## 156 723.2 50.3 27.0 5.3 0.0 2014-2015
## 157 721.6 49.2 26.0 5.1 0.0 2014-2015
## 158 734.7 51.9 27.0 5.2 0.0 2014-2015
## 159 716.9 48.8 23.0 5.6 0.0 2014-2015
## 160 739.2 47.7 23.0 5.4 0.0 2014-2015
## 161 731.0 50.8 26.0 5.6 0.0 2014-2015
## 162 724.4 51.7 29.0 5.4 0.0 2014-2015
## 163 722.8 49.9 23.0 28.5 0.0 2014-2015
## 164 716.0 52.1 28.0 5.7 0.0 2014-2015
## 165 716.7 51.5 26.0 5.4 0.0 2014-2015
## 166 740.5 53.6 29.0 5.8 0.0 2014-2015
## 167 727.2 48.6 24.0 27.0 0.0 2014-2015
## 168 748.1 50.7 25.0 5.7 0.0 2014-2015
## 169 747.7 50.5 26.0 6.5 0.0 2014-2015
## 170 730.8 52.9 27.0 28.7 0.0 2014-2015
## 171 738.0 53.9 30.0 5.8 0.0 2014-2015
## 172 746.1 48.2 22.0 5.9 0.0 2014-2015
## 173 729.3 51.2 26.0 27.6 0.0 2014-2015
## 174 755.3 54.0 29.0 5.0 0.0 2014-2015
## 175 733.5 52.3 26.0 5.8 0.0 2014-2015
## 176 750.2 52.7 29.0 5.8 0.0 2014-2015
## 177 726.4 52.6 28.0 5.7 0.0 2014-2015
## 178 731.3 50.5 25.0 28.6 0.0 2014-2015
## 179 734.0 49.7 24.0 5.7 0.0 2014-2015
## 180 739.0 58.4 33.0 28.3 0.0 2014-2015
## 181 748.3 58.0 33.0 28.5 0.0 2014-2015
## 182 724.1 55.9 32.0 51.0 0.0 2014-2015
## 183 763.2 52.8 26.0 5.8 0.0 2014-2015
## 184 744.6 54.4 28.0 50.3 0.0 2014-2015
## 185 748.2 47.0 24.0 5.5 0.0 2014-2015
## 186 737.8 54.5 31.0 52.8 0.0 2014-2015
## 187 745.7 51.2 27.0 52.7 0.0 2014-2015
## 188 762.2 47.9 24.0 28.1 0.0 2014-2015
## 189 764.1 47.2 23.0 5.9 0.0 2014-2015
## 190 745.6 53.0 27.0 30.9 0.0 2014-2015
## 191 734.6 50.5 28.0 71.3 0.0 2014-2015
## 192 759.1 47.6 21.0 6.4 0.0 2014-2015
## 193 735.5 46.9 23.0 28.9 0.0 2014-2015
## 194 729.1 54.9 29.0 79.4 0.0 2014-2015
## 195 740.3 52.7 26.0 29.0 0.0 2014-2015
## 196 744.8 54.7 32.0 51.9 0.0 2014-2015
## 197 743.5 47.9 23.0 29.1 0.0 2014-2015
## 198 754.9 60.7 37.0 29.7 0.0 2014-2015
## 199 764.2 58.0 33.0 6.5 0.0 2014-2015
## 200 728.9 53.1 31.0 73.4 0.0 2014-2015
## 201 767.6 56.1 31.0 53.8 0.0 2014-2015
## 202 755.5 52.2 27.0 5.8 0.0 2014-2015
## 203 767.4 54.8 30.0 30.0 0.0 2014-2015
## 204 770.8 57.0 33.0 5.8 0.0 2014-2015
## 205 792.9 46.7 22.0 5.6 0.0 2014-2015
## 206 764.4 52.7 26.0 5.7 0.0 2014-2015
## 207 748.1 54.6 28.0 78.5 0.0 2014-2015
## 208 770.2 54.0 29.0 6.4 0.0 2014-2015
## 209 747.4 56.1 31.0 75.9 0.0 2014-2015
## 210 786.4 48.9 25.0 30.7 0.0 2014-2015
## 211 771.4 53.1 27.0 29.8 0.0 2014-2015
## 212 741.7 52.4 29.0 49.3 0.0 2014-2015
## 213 764.0 63.2 39.0 51.1 0.0 2014-2015
## 214 751.9 49.4 25.0 29.4 0.0 2014-2015
## 215 774.0 55.7 28.0 6.1 0.0 2014-2015
## 216 757.7 47.8 23.0 31.0 0.0 2014-2015
## 217 759.4 53.6 31.0 52.9 0.0 2014-2015
## 218 754.3 52.8 25.0 78.5 0.0 2014-2015
## 219 755.0 47.3 23.0 51.2 0.0 2014-2015
## 220 779.7 50.2 26.0 6.3 0.0 2014-2015
## 221 765.2 58.1 32.0 53.8 0.0 2014-2015
## 222 751.7 70.2 46.0 75.3 0.0 2014-2015
## 223 761.7 72.0 43.0 30.8 0.0 2014-2015
## 224 785.4 60.3 36.0 28.9 0.0 2014-2015
## 225 753.8 50.8 24.0 54.4 0.0 2014-2015
## 226 788.3 46.7 22.0 30.6 0.0 2014-2015
## 227 752.5 52.6 28.0 51.0 0.0 2014-2015
## 228 768.1 61.6 36.0 29.0 0.0 2014-2015
## 229 780.9 63.5 37.0 54.6 0.0 2014-2015
## 230 776.9 54.6 28.0 6.2 0.0 2014-2015
## 231 790.9 54.8 27.0 30.6 0.0 2014-2015
## 232 782.8 61.2 34.0 30.5 0.0 2014-2015
## 233 772.9 53.1 27.0 31.6 0.0 2014-2015
## 234 813.3 46.5 19.0 33.4 0.0 2014-2015
## 235 772.1 47.4 24.0 31.0 0.0 2014-2015
## 236 766.5 55.7 31.0 53.2 0.0 2014-2015
## 237 774.0 56.3 27.0 54.6 0.0 2014-2015
## 238 776.1 57.1 29.0 31.4 0.0 2014-2015
## 239 766.6 64.0 35.0 31.2 0.0 2014-2015
## 240 778.0 55.5 28.0 57.0 0.0 2014-2015
## 241 776.7 56.0 30.0 55.7 0.0 2014-2015
## 242 816.0 53.9 26.0 6.9 0.0 2014-2015
## 243 799.1 54.6 29.0 31.9 0.0 2014-2015
## 244 789.1 62.3 34.0 56.6 0.0 2014-2015
## 245 784.6 57.7 33.0 30.3 0.0 2014-2015
## 246 803.2 53.9 28.0 32.1 0.0 2014-2015
## 247 795.1 54.3 28.0 82.3 0.0 2014-2015
## 248 778.4 54.6 29.0 31.6 0.0 2014-2015
## 249 793.7 52.6 24.0 6.4 0.0 2014-2015
## 250 789.9 53.6 29.0 33.9 0.0 2014-2015
## 251 782.5 57.3 32.0 5.9 0.0 2014-2015
## 252 788.2 63.3 38.0 80.5 0.0 2014-2015
## 253 771.8 55.7 30.0 75.2 0.0 2014-2015
## 254 840.5 55.8 30.0 32.8 0.0 2014-2015
## 255 810.5 65.5 38.0 58.9 0.0 2014-2015
## 256 796.6 64.5 36.0 81.0 0.0 2014-2015
## 257 839.7 58.7 30.0 88.7 0.0 2014-2015
## 258 842.7 59.4 30.0 32.1 0.0 2014-2015
## 259 359.6 49.7 25.0 6.7 0.0 2014-2015
## 260 364.4 51.9 27.0 5.7 0.0 2014-2015
## 261 367.5 47.6 24.0 28.6 0.0 2014-2015
## 262 366.3 42.7 18.0 6.3 0.0 2014-2015
## 263 357.9 51.1 25.0 6.2 0.0 2014-2015
## 264 367.0 47.1 23.0 5.5 0.0 2014-2015
## 265 362.5 49.2 25.0 5.8 0.0 2014-2015
## 266 360.5 51.4 26.0 51.0 0.0 2014-2015
## 267 368.0 49.0 24.0 5.8 0.0 2014-2015
## 268 367.7 49.7 26.0 5.6 0.0 2014-2015
## 269 366.4 51.4 26.0 28.7 0.0 2014-2015
## 270 366.9 50.7 27.0 5.6 0.0 2014-2015
## 271 364.0 51.1 26.0 28.8 0.0 2014-2015
## 272 367.8 47.2 21.0 30.6 0.0 2014-2015
## 273 359.7 52.2 28.0 5.9 0.0 2014-2015
## 274 371.9 53.2 28.0 28.9 0.0 2014-2015
## 275 363.9 50.7 28.0 5.7 0.0 2014-2015
## 276 370.9 47.4 24.0 5.5 0.0 2014-2015
## 277 370.1 51.6 26.0 29.4 0.0 2014-2015
## 278 365.3 51.2 27.0 29.7 0.0 2014-2015
## 279 375.9 54.8 32.0 5.6 0.0 2014-2015
## 280 368.1 48.7 25.0 7.3 0.0 2014-2015
## 281 395.8 51.0 27.0 6.2 0.0 2014-2015
## 282 372.6 55.4 30.0 5.7 0.0 2014-2015
## 283 368.0 52.1 25.0 5.7 0.0 2014-2015
## 284 365.9 48.7 23.0 6.8 0.0 2014-2015
## 285 367.3 43.9 22.0 28.9 0.0 2014-2015
## 286 376.9 52.0 27.0 6.1 0.0 2014-2015
## 287 368.8 54.6 32.0 28.7 0.0 2014-2015
## 288 365.8 47.5 23.0 31.4 0.0 2014-2015
## 289 380.2 48.7 24.0 28.9 0.0 2014-2015
## 290 375.3 49.2 25.0 53.6 0.0 2014-2015
## 291 362.8 47.8 21.0 31.3 0.0 2014-2015
## 292 376.1 51.7 26.0 5.9 0.0 2014-2015
## 293 373.2 52.8 28.0 5.9 0.0 2014-2015
## 294 370.2 52.3 27.0 5.6 0.0 2014-2015
## 295 363.9 49.6 25.0 72.6 0.0 2014-2015
## 296 367.5 49.2 25.0 29.4 0.0 2014-2015
## 297 372.0 52.9 28.0 80.6 0.0 2014-2015
## 298 361.6 52.4 28.0 29.0 0.0 2014-2015
## 299 369.5 49.6 26.0 49.4 0.0 2014-2015
## 300 363.8 59.1 31.0 31.4 0.0 2014-2015
## 301 368.1 49.2 33.0 76.8 0.0 2014-2015
## 302 382.2 53.0 28.0 31.9 0.0 2014-2015
## 303 392.0 42.7 19.0 6.2 0.0 2014-2015
## 304 377.7 51.8 27.0 76.1 0.0 2014-2015
## 305 380.6 51.6 28.0 54.4 0.0 2014-2015
## 306 372.2 55.8 72.0 125.9 0.0 2014-2015
## 307 396.0 51.6 27.0 56.7 0.0 2014-2015
## 308 387.2 51.2 28.0 32.8 0.0 2014-2015
## 309 360.6 74.3 76.0 115.0 0.0 2014-2015
## 310 396.7 56.7 31.0 57.3 0.0 2014-2015
## 311 388.9 51.0 26.0 54.0 0.0 2014-2015
## 312 393.7 51.7 27.0 30.8 0.0 2014-2015
## 313 406.3 51.7 27.0 57.7 0.0 2014-2015
## 314 423.9 49.8 23.0 34.3 0.0 2014-2015
## 315 448.9 40.0 21.5 6.8 0.0 2014-2015
## 316 452.0 41.3 25.7 6.7 0.0 2014-2015
## 317 442.4 48.5 30.2 27.0 0.0 2014-2015
## 318 443.8 51.7 34.2 6.6 0.0 2014-2015
## 319 458.2 40.1 22.6 7.1 0.0 2014-2015
## 320 445.1 47.5 31.5 26.9 0.0 2014-2015
## 321 455.0 50.3 32.4 6.9 0.0 2014-2015
## 322 451.1 46.8 27.4 6.9 0.0 2014-2015
## 323 461.4 41.0 24.1 6.8 0.0 2014-2015
## 324 458.6 53.6 35.5 25.8 0.0 2014-2015
## 325 457.6 45.3 28.9 27.8 0.0 2014-2015
## 326 464.8 41.9 23.5 6.8 0.0 2014-2015
## 327 456.3 42.6 22.9 28.1 0.0 2014-2015
## 328 468.3 42.5 23.6 7.2 0.0 2014-2015
## 329 447.9 49.8 31.0 26.9 0.0 2014-2015
## 330 457.6 41.7 26.4 47.6 0.0 2014-2015
## 331 460.6 43.6 24.9 28.9 0.0 2014-2015
## 332 448.3 46.5 28.3 46.2 0.0 2014-2015
## 333 452.3 47.6 29.6 48.4 0.0 2014-2015
## 334 465.0 46.6 30.5 6.8 0.0 2014-2015
## 335 459.0 46.8 28.3 28.5 0.0 2014-2015
## 336 462.2 50.9 34.6 48.0 0.0 2014-2015
## 337 462.6 40.8 22.2 27.3 0.0 2014-2015
## 338 475.0 42.3 22.9 7.4 0.0 2014-2015
## 339 460.1 42.5 23.3 28.1 0.0 2014-2015
## 340 459.0 44.0 28.5 50.6 0.0 2014-2015
## 341 459.8 52.0 35.4 28.2 0.0 2014-2015
## 342 475.7 49.9 31.9 6.7 0.0 2014-2015
## 343 470.8 53.7 35.2 7.2 0.0 2014-2015
## 344 467.5 46.4 29.2 28.3 0.0 2014-2015
## 345 470.7 44.8 25.0 7.3 0.0 2014-2015
## 346 468.4 44.4 26.5 29.1 0.0 2014-2015
## 347 457.5 40.2 24.5 27.8 0.0 2014-2015
## 348 456.2 47.4 30.7 48.0 0.0 2014-2015
## 349 459.6 47.6 28.7 28.4 0.0 2014-2015
## 350 464.9 41.9 22.9 6.7 0.0 2014-2015
## 351 452.3 43.6 25.1 29.5 0.0 2014-2015
## 352 459.1 42.0 24.2 7.1 0.0 2014-2015
## 353 459.4 49.1 32.0 28.0 0.0 2014-2015
## 354 465.7 42.6 23.1 7.1 0.0 2014-2015
## 355 464.6 46.0 31.7 51.0 0.0 2014-2015
## 356 467.1 45.4 27.1 28.0 0.0 2014-2015
## 357 474.4 37.3 18.9 51.5 0.0 2014-2015
## 358 450.1 48.4 30.9 29.4 0.0 2014-2015
## 359 472.5 49.0 29.3 27.1 0.0 2014-2015
## 360 457.2 47.0 26.4 7.6 0.0 2014-2015
## 361 486.8 39.9 21.8 7.1 0.0 2014-2015
## 362 465.0 40.1 21.6 27.6 0.0 2014-2015
## 363 475.2 51.7 29.9 29.2 0.0 2014-2015
## 364 471.8 41.0 24.4 47.7 0.0 2014-2015
## 365 467.2 43.9 27.0 49.9 0.0 2014-2015
## 366 471.8 46.4 27.4 28.1 0.0 2014-2015
## 367 479.4 46.3 26.7 28.4 0.0 2014-2015
## 368 471.3 49.0 31.0 47.9 0.0 2014-2015
## 369 460.4 44.6 28.3 69.7 0.0 2014-2015
## 370 470.1 48.1 27.0 48.8 0.0 2014-2015
## 371 460.8 47.6 28.3 47.5 0.0 2014-2015
## 372 468.2 48.2 29.4 52.2 0.0 2014-2015
## 373 461.6 39.9 20.4 30.3 0.0 2014-2015
## 374 477.4 42.7 23.3 6.7 0.0 2014-2015
## 375 479.8 41.4 25.2 27.7 0.0 2014-2015
## 376 473.2 45.1 27.1 49.4 0.0 2014-2015
## 377 486.2 59.2 39.6 6.8 0.0 2014-2015
## 378 476.1 45.4 26.9 6.7 0.0 2014-2015
## 379 463.4 55.8 36.5 29.2 0.0 2014-2015
## 380 476.7 44.0 27.1 28.5 0.0 2014-2015
## 381 486.8 47.0 27.6 29.2 0.0 2014-2015
## 382 458.8 43.6 26.6 72.1 0.0 2014-2015
## 383 476.6 44.2 24.6 28.6 0.0 2014-2015
## 384 481.6 41.7 25.1 28.6 0.0 2014-2015
## 385 490.1 48.7 28.4 7.0 0.0 2014-2015
## 386 466.1 57.5 39.7 74.7 0.0 2014-2015
## 387 488.4 40.8 23.7 7.5 0.0 2014-2015
## 388 497.6 39.8 19.4 7.6 0.0 2014-2015
## 389 490.8 40.4 20.3 7.6 0.0 2014-2015
## 390 509.3 41.1 24.0 7.2 0.0 2014-2015
## 391 483.0 56.6 38.1 29.5 0.0 2014-2015
## 392 487.1 51.7 30.6 54.3 0.0 2014-2015
## 393 491.6 42.4 21.1 31.6 0.0 2014-2015
## 394 480.3 39.4 23.1 52.2 0.0 2014-2015
## 395 507.3 50.7 29.7 7.7 0.0 2014-2015
## 396 495.1 52.4 35.9 50.5 0.0 2014-2015
## 397 477.6 49.2 27.7 101.3 0.0 2014-2015
## 398 462.2 53.2 35.1 191.1 0.0 2014-2015
## 399 503.7 48.0 31.9 53.0 0.0 2014-2015
## 400 503.4 56.1 37.8 76.0 0.0 2014-2015
## 401 499.5 94.6 74.4 74.3 0.0 2014-2015
## 402 521.8 60.2 40.0 101.7 0.0 2014-2015
## 403 420.5 43.4 NA 6.9 0.0 2014-2015
## 404 410.1 38.7 NA 6.8 0.0 2014-2015
## 405 423.3 40.8 NA 7.2 0.0 2014-2015
## 406 417.5 40.0 NA 7.4 0.0 2014-2015
## 407 417.5 39.0 NA 7.9 0.0 2014-2015
## 408 416.6 44.1 NA 7.6 0.0 2014-2015
## 409 422.0 44.1 NA 28.6 0.0 2014-2015
## 410 424.4 42.8 NA 7.5 0.0 2014-2015
## 411 425.9 37.4 NA 29.3 0.0 2014-2015
## 412 418.3 42.2 NA 7.2 0.0 2014-2015
## 413 413.5 48.7 NA 6.9 0.0 2014-2015
## 414 411.9 39.6 NA 50.0 0.0 2014-2015
## 415 427.2 48.4 NA 29.6 0.0 2014-2015
## 416 426.0 45.2 NA 29.9 0.0 2014-2015
## 417 434.3 45.2 NA 7.3 0.0 2014-2015
## 418 420.9 41.8 NA 7.1 0.0 2014-2015
## 419 418.5 42.9 NA 28.5 0.0 2014-2015
## 420 427.2 40.1 NA 29.2 0.0 2014-2015
## 421 422.3 48.5 NA 29.1 0.0 2014-2015
## 422 438.4 35.0 NA 31.4 0.0 2014-2015
## 423 431.3 43.4 NA 7.2 0.0 2014-2015
## 424 414.6 47.4 NA 96.8 0.0 2014-2015
## 425 427.8 45.8 NA 29.6 0.0 2014-2015
## 426 432.9 40.3 NA 30.6 0.0 2014-2015
## 427 446.5 46.4 NA 7.4 0.0 2014-2015
## 428 428.4 41.7 NA 7.0 0.0 2014-2015
## 429 432.9 44.1 NA 56.5 0.0 2014-2015
## 430 436.7 38.4 NA 7.1 0.0 2014-2015
## 431 417.9 44.1 NA 99.5 0.0 2014-2015
## 432 439.3 43.5 NA 51.6 0.0 2014-2015
## 433 343.8 41.3 23.1 28.9 0.0 2014-2015
## 434 346.1 46.3 28.8 28.3 0.0 2014-2015
## 435 344.5 48.8 30.0 51.3 0.0 2014-2015
## 436 337.9 50.0 31.3 51.1 0.0 2014-2015
## 437 347.0 49.3 30.8 29.9 0.0 2014-2015
## 438 346.9 47.9 32.0 51.7 0.0 2014-2015
## 439 358.9 56.9 40.1 7.4 0.0 2014-2015
## 440 341.1 48.7 31.0 71.2 0.0 2014-2015
## 441 341.9 51.2 33.7 7.0 0.0 2014-2015
## 442 348.8 40.3 23.7 6.8 0.0 2014-2015
## 443 353.7 54.7 36.7 51.1 0.0 2014-2015
## 444 353.0 40.6 25.3 6.8 0.0 2014-2015
## 445 349.4 59.0 41.7 30.0 0.0 2014-2015
## 446 346.0 56.4 39.9 28.0 0.0 2014-2015
## 447 353.1 50.4 32.5 29.4 0.0 2014-2015
## 448 341.3 50.2 30.7 28.7 0.0 2014-2015
## 449 353.7 43.1 25.0 7.2 0.0 2014-2015
## 450 354.6 46.0 30.3 6.8 0.0 2014-2015
## 451 341.6 44.3 25.9 51.3 0.0 2014-2015
## 452 363.1 54.9 38.4 29.8 0.0 2014-2015
## 453 336.0 47.2 30.5 52.4 0.0 2014-2015
## 454 351.2 42.2 24.8 30.6 0.0 2014-2015
## 455 358.4 42.9 25.8 7.1 0.0 2014-2015
## 456 359.3 48.8 29.2 7.5 0.0 2014-2015
## 457 354.4 53.4 36.9 77.9 0.0 2014-2015
## 458 354.5 42.8 26.4 29.9 0.0 2014-2015
## 459 364.7 38.3 21.2 7.7 0.0 2014-2015
## 460 342.8 50.7 32.3 52.5 0.0 2014-2015
## 461 354.7 48.0 30.8 56.0 0.0 2014-2015
## 462 352.0 48.5 28.7 54.4 0.0 2014-2015
## 463 347.9 57.1 39.9 98.4 0.0 2014-2015
## 464 351.1 48.7 26.9 7.1 0.0 2014-2015
## 465 348.7 44.9 28.6 30.0 0.0 2014-2015
## 466 359.4 42.9 25.2 54.7 0.0 2014-2015
## 467 361.7 42.7 22.9 54.7 0.0 2014-2015
## 468 355.1 42.4 22.6 54.6 0.0 2014-2015
## 469 361.0 49.1 29.4 56.3 0.0 2014-2015
## 470 361.0 48.5 32.0 30.9 0.0 2014-2015
## 471 358.0 45.5 26.2 78.5 0.0 2014-2015
## 472 356.8 46.2 28.6 30.5 0.0 2014-2015
## 473 375.7 47.1 30.0 32.6 0.0 2014-2015
## 474 351.1 55.1 36.5 7.1 0.0 2014-2015
## 475 352.3 41.6 26.4 6.7 0.0 2014-2015
## 476 365.0 50.5 31.1 7.2 0.0 2014-2015
## 477 360.1 40.8 22.0 54.5 0.0 2014-2015
## 478 360.3 62.7 44.3 33.3 0.0 2014-2015
## 479 377.7 52.0 31.8 32.4 0.0 2014-2015
## 480 368.7 58.6 41.1 31.1 0.0 2014-2015
## 481 363.8 52.3 35.2 83.9 0.0 2014-2015
## 482 374.2 45.6 26.9 7.5 0.0 2014-2015
## 483 370.7 47.2 30.2 7.6 0.0 2014-2015
## 484 379.3 49.1 34.5 7.4 0.0 2014-2015
## 485 360.3 49.7 32.5 52.1 0.0 2014-2015
## 486 367.5 46.4 27.3 55.4 0.0 2014-2015
## 487 374.6 41.2 21.5 79.0 0.0 2014-2015
## 488 454.2 44.1 23.7 29.4 0.0 2014-2015
## 489 453.4 44.9 23.9 29.4 0.0 2014-2015
## 490 478.6 42.4 21.8 7.2 0.0 2014-2015
## 491 460.7 58.0 34.6 28.3 0.0 2014-2015
## 492 453.9 53.9 33.0 29.6 0.0 2014-2015
## 493 450.1 50.9 27.4 51.1 0.0 2014-2015
## 494 445.6 53.6 35.1 28.3 0.0 2014-2015
## 495 457.2 48.4 28.1 7.5 0.0 2014-2015
## 496 465.4 58.6 39.8 31.3 0.0 2014-2015
## 497 462.4 46.6 26.7 50.7 0.0 2014-2015
## 498 472.5 48.5 25.9 7.8 0.0 2014-2015
## 499 454.1 44.8 23.8 76.2 0.0 2014-2015
## 500 457.8 55.8 32.8 31.0 0.0 2014-2015
## 501 461.4 45.4 25.7 49.9 0.0 2014-2015
## 502 462.1 51.7 34.2 28.6 0.0 2014-2015
## 503 458.0 57.6 35.5 50.5 0.0 2014-2015
## 504 466.3 46.8 24.7 30.6 0.0 2014-2015
## 505 459.9 62.6 42.0 28.9 0.0 2014-2015
## 506 459.7 47.3 27.6 51.0 0.0 2014-2015
## 507 453.7 57.6 32.9 74.9 0.0 2014-2015
## 508 476.5 49.7 28.5 30.0 0.0 2014-2015
## 509 481.8 41.1 19.6 7.3 0.0 2014-2015
## 510 466.7 47.0 27.0 28.0 0.0 2014-2015
## 511 471.8 50.2 29.6 47.3 0.0 2014-2015
## 512 468.3 49.2 28.7 31.3 0.0 2014-2015
## 513 457.3 57.7 36.7 51.9 0.0 2014-2015
## 514 463.8 51.1 25.7 52.9 0.0 2014-2015
## 515 464.5 55.6 33.4 52.5 0.0 2014-2015
## 516 472.8 49.7 26.9 30.8 0.0 2014-2015
## 517 451.6 70.1 50.5 53.3 0.0 2014-2015
## 518 468.9 49.8 29.1 8.6 0.0 2014-2015
## 519 471.1 47.2 26.5 30.0 0.0 2014-2015
## 520 474.3 66.0 46.9 30.0 0.0 2014-2015
## 521 468.8 42.8 22.0 7.6 0.0 2014-2015
## 522 474.9 62.2 40.2 7.7 0.0 2014-2015
## 523 451.4 53.1 32.8 53.4 0.0 2014-2015
## 524 476.4 53.3 32.6 31.4 0.0 2014-2015
## 525 451.7 78.8 56.2 54.5 0.0 2014-2015
## 526 477.6 56.8 36.0 31.7 0.0 2014-2015
## 527 470.7 54.6 31.5 74.4 0.0 2014-2015
## 528 476.2 48.7 27.5 29.4 0.0 2014-2015
## 529 470.4 45.4 25.2 52.2 0.0 2014-2015
## 530 464.6 53.7 29.2 29.9 0.0 2014-2015
## 531 459.6 50.4 30.7 51.1 0.0 2014-2015
## 532 471.7 60.3 39.5 78.4 0.0 2014-2015
## 533 476.1 56.8 34.4 50.6 0.0 2014-2015
## 534 457.2 52.3 29.0 79.3 0.0 2014-2015
## 535 472.0 46.9 25.1 32.9 0.0 2014-2015
## 536 474.6 52.6 31.3 30.6 0.0 2014-2015
## 537 479.5 57.2 33.5 29.7 0.0 2014-2015
## 538 496.2 49.1 25.4 32.2 0.0 2014-2015
## 539 474.5 75.6 48.0 74.7 0.0 2014-2015
## 540 473.8 54.9 30.8 54.0 0.0 2014-2015
## 541 480.0 64.1 41.4 31.2 0.0 2014-2015
## 542 479.6 47.1 26.1 30.4 0.0 2014-2015
## 543 488.2 71.1 49.9 31.1 0.0 2014-2015
## 544 484.6 48.3 25.3 57.1 0.0 2014-2015
## 545 492.0 62.8 39.5 55.6 0.0 2014-2015
## 546 475.7 53.3 31.2 52.2 0.0 2014-2015
## 547 490.1 63.3 40.7 54.8 0.0 2014-2015
## 548 489.9 68.2 46.3 53.6 0.0 2014-2015
## 549 470.4 74.1 53.7 77.2 0.0 2014-2015
## 550 490.7 57.8 35.6 33.3 0.0 2014-2015
## 551 463.9 47.5 25.9 55.8 0.0 2014-2015
## 552 486.9 59.9 38.7 56.8 0.0 2014-2015
## 553 475.0 65.9 44.0 100.6 0.0 2014-2015
## 554 485.3 64.9 42.7 54.0 0.0 2014-2015
## 555 494.8 70.0 48.3 55.9 0.0 2014-2015
## 556 485.5 67.2 45.1 54.7 0.0 2014-2015
## 557 482.7 61.5 36.7 56.0 0.0 2014-2015
## 558 481.6 51.8 28.2 106.4 0.0 2014-2015
## 559 475.5 62.3 42.5 100.4 0.0 2014-2015
## 560 491.6 60.2 36.8 56.9 0.0 2014-2015
## 561 482.3 67.1 46.3 77.4 0.0 2014-2015
## 562 491.1 52.0 28.0 58.9 0.0 2014-2015
## 563 496.0 52.1 29.3 33.2 0.0 2014-2015
## 564 465.7 64.2 40.3 78.8 0.0 2014-2015
## 565 478.3 52.9 32.3 76.9 0.0 2014-2015
## 566 497.5 54.2 29.2 56.0 0.0 2014-2015
## 567 498.1 47.5 23.9 54.3 0.0 2014-2015
## 568 518.0 64.8 41.7 32.1 0.0 2014-2015
## 569 510.5 50.4 28.1 56.8 0.0 2014-2015
## 570 479.3 75.1 50.8 78.3 0.0 2014-2015
## 571 496.4 65.4 39.4 53.5 0.0 2014-2015
## 572 486.0 52.8 29.6 102.4 0.0 2014-2015
## 573 518.7 47.8 20.6 59.7 0.0 2014-2015
## 574 511.9 62.1 39.4 83.2 0.0 2014-2015
## 575 499.8 84.4 62.2 101.8 0.0 2014-2015
## 576 486.0 55.9 32.8 55.2 0.0 2014-2015
## 577 490.0 58.0 32.9 113.1 0.0 2014-2015
## 578 517.4 54.0 31.3 58.4 0.0 2014-2015
## 579 513.9 58.4 37.3 57.0 0.0 2014-2015
## 580 505.8 65.7 39.7 84.6 0.0 2014-2015
## 581 507.1 56.3 33.5 85.3 0.0 2014-2015
## 582 511.3 73.9 47.3 83.3 0.0 2014-2015
## 583 478.6 89.6 64.4 102.0 0.0 2014-2015
## 584 520.5 52.0 28.5 58.3 0.0 2014-2015
## 585 519.3 63.2 35.1 55.9 0.0 2014-2015
## 586 539.7 67.7 39.7 8.6 0.0 2014-2015
## 587 530.0 72.8 47.5 35.4 0.0 2014-2015
## 588 500.8 63.4 40.7 106.6 0.0 2014-2015
## 589 536.1 71.2 46.3 59.1 0.0 2014-2015
## 590 499.3 64.0 41.8 140.5 0.0 2014-2015
## 591 556.9 58.0 31.8 33.7 0.0 2014-2015
## 592 518.1 70.9 47.1 115.1 0.0 2014-2015
## 593 538.9 115.9 91.5 35.9 0.0 2014-2015
## 594 540.8 72.6 50.9 87.0 0.0 2014-2015
## 595 516.1 73.1 47.6 88.7 0.0 2014-2015
## 596 539.8 73.7 49.0 34.6 0.0 2014-2015
## 597 520.2 83.9 59.0 35.1 0.0 2014-2015
## 598 565.3 61.5 36.2 64.9 0.0 2014-2015
## 599 547.5 64.9 38.8 94.8 0.0 2014-2015
## 600 501.6 59.6 37.5 230.4 0.0 2014-2015
## 601 566.5 65.5 43.3 88.5 0.0 2014-2015
## 602 543.2 89.8 64.6 60.5 0.0 2014-2015
## 603 571.9 76.0 52.7 65.7 0.0 2014-2015
## 604 555.1 65.2 36.9 36.9 0.0 2014-2015
## 605 538.8 76.7 53.5 142.1 0.0 2014-2015
## 606 541.1 70.8 44.5 90.6 0.0 2014-2015
## 607 543.1 85.6 57.8 94.4 0.0 2014-2015
## 608 529.6 46.7 NA 0.0 2281.8 2014-2015
## 609 547.7 54.9 NA 0.0 2345.3 2014-2015
## 610 534.1 50.6 NA 0.0 2313.5 2014-2015
## 611 545.3 52.8 NA 0.0 2359.6 2014-2015
## 612 540.7 48.1 NA 0.0 2326.2 2014-2015
## 613 553.2 44.8 NA 0.0 2326.8 2014-2015
## 614 542.0 47.8 NA 0.0 2342.3 2014-2015
## 615 532.7 49.5 NA 0.0 2302.3 2014-2015
## 616 572.0 49.6 NA 0.0 2404.3 2014-2015
## 617 541.7 63.2 NA 60.0 2324.9 2014-2015
## 618 541.3 49.1 NA 60.0 2315.1 2014-2015
## 619 551.4 50.8 NA 0.0 2361.5 2014-2015
## 620 560.7 42.2 NA 60.0 2389.6 2014-2015
## 621 524.9 52.7 NA 60.0 2280.2 2014-2015
## 622 545.1 49.4 NA 0.0 2385.7 2014-2015
## 623 534.8 53.2 NA 60.0 2335.8 2014-2015
## 624 565.2 62.8 NA 0.0 2430.9 2014-2015
## 625 563.3 53.3 NA 60.0 2376.5 2014-2015
## 626 537.0 53.6 NA 0.0 2351.3 2014-2015
## 627 534.5 49.2 NA 60.0 2312.0 2014-2015
## 628 558.8 50.5 NA 0.0 2432.8 2014-2015
## 629 541.5 56.5 NA 120.0 2325.5 2014-2015
## 630 537.0 52.3 NA 0.0 2332.5 2014-2015
## 631 546.9 51.8 NA 0.0 2385.4 2014-2015
## 632 558.7 50.2 NA 60.0 2388.1 2014-2015
## 633 563.1 56.1 NA 0.0 2437.0 2014-2015
## 634 542.8 51.2 NA 120.0 2341.1 2014-2015
## 635 555.2 57.9 NA 60.0 2396.8 2014-2015
## 636 557.5 54.1 NA 120.0 2413.7 2014-2015
## 637 550.1 56.4 NA 60.0 2367.5 2014-2015
## 638 547.2 50.2 NA 120.0 2329.6 2014-2015
## 639 564.0 63.5 NA 120.0 2425.1 2014-2015
## 640 553.8 48.4 NA 60.0 2360.5 2014-2015
## 641 545.2 51.6 NA 60.0 2368.0 2014-2015
## 642 545.4 48.2 NA 120.0 2328.7 2014-2015
## 643 554.3 58.4 NA 120.0 2388.3 2014-2015
## 644 561.2 53.9 NA 0.0 2385.7 2014-2015
## 645 556.2 61.6 NA 120.0 2398.7 2014-2015
## 646 571.1 59.7 NA 60.0 2425.8 2014-2015
## 647 559.9 50.8 NA 0.0 2393.0 2014-2015
## 648 552.5 48.4 NA 60.0 2390.8 2014-2015
## 649 553.5 48.7 NA 60.0 2409.6 2014-2015
## 650 590.7 68.7 NA 0.0 2557.8 2014-2015
## 651 546.1 47.8 NA 120.0 2323.1 2014-2015
## 652 560.8 55.9 NA 0.0 2434.8 2014-2015
## 653 569.6 54.1 NA 0.0 2476.8 2014-2015
## 654 563.5 51.1 NA 0.0 2441.5 2014-2015
## 655 533.2 51.9 NA 60.0 2334.2 2014-2015
## 656 582.8 59.3 NA 120.0 2483.1 2014-2015
## 657 551.7 55.3 NA 120.0 2350.3 2014-2015
## 658 567.7 60.1 NA 60.0 2440.2 2014-2015
## 659 582.0 52.5 NA 0.0 2500.3 2014-2015
## 660 581.8 52.6 NA 60.0 2499.1 2014-2015
## 661 554.2 49.6 NA 120.0 2359.0 2014-2015
## 662 569.4 55.7 NA 60.0 2463.8 2014-2015
## 663 592.4 49.6 NA 0.0 2505.2 2014-2015
## 664 595.1 48.3 NA 0.0 2482.9 2014-2015
## 665 575.1 47.4 NA 0.0 2405.8 2014-2015
## 666 570.5 53.6 NA 0.0 2417.1 2014-2015
## 667 584.9 53.5 NA 120.0 2488.2 2014-2015
## 668 566.3 53.0 NA 120.0 2391.2 2014-2015
## 669 549.8 48.0 NA 60.0 2374.1 2014-2015
## 670 561.7 55.6 NA 60.0 2438.8 2014-2015
## 671 575.2 58.7 NA 120.0 2445.7 2014-2015
## 672 576.6 50.5 NA 0.0 2484.5 2014-2015
## 673 582.3 64.7 NA 0.0 2500.1 2014-2015
## 674 539.1 54.7 NA 120.0 2346.6 2014-2015
## 675 594.5 48.5 NA 60.0 2473.4 2014-2015
## 676 566.7 56.3 NA 0.0 2453.8 2014-2015
## 677 596.5 51.9 NA 60.0 2543.5 2014-2015
## 678 584.2 57.7 NA 60.0 2490.5 2014-2015
## 679 578.6 60.5 NA 60.0 2502.8 2014-2015
## 680 560.2 52.4 NA 0.0 2415.1 2014-2015
## 681 575.0 47.1 NA 60.0 2457.2 2014-2015
## 682 575.9 51.3 NA 60.0 2407.1 2014-2015
## 683 603.7 61.9 NA 120.0 2572.0 2014-2015
## 684 576.0 57.6 NA 120.0 2481.8 2014-2015
## 685 595.7 57.8 NA 0.0 2580.7 2014-2015
## 686 574.9 55.6 NA 60.0 2421.4 2014-2015
## 687 614.9 66.8 NA 60.0 2605.8 2014-2015
## 688 577.7 72.4 NA 120.0 2500.6 2014-2015
## 689 567.7 50.2 NA 0.0 2494.1 2014-2015
## 690 586.6 52.0 NA 60.0 2496.0 2014-2015
## 691 620.3 62.9 NA 0.0 2640.6 2014-2015
## 692 571.9 57.4 NA 60.0 2467.5 2014-2015
## 693 590.8 62.1 NA 120.0 2492.3 2014-2015
## 694 582.5 60.5 NA 60.0 2474.9 2014-2015
## 695 575.6 52.9 NA 120.0 2429.2 2014-2015
## 696 604.1 58.4 NA 0.0 2583.4 2014-2015
## 697 595.3 64.8 NA 180.0 2555.4 2014-2015
## 698 559.5 48.5 NA 120.0 2401.0 2014-2015
## 699 575.4 54.7 NA 120.0 2458.0 2014-2015
## 700 581.5 56.7 NA 180.0 2464.6 2014-2015
## 701 633.7 79.0 NA 60.0 2731.2 2014-2015
## 702 603.1 54.9 NA 0.0 2587.5 2014-2015
## 703 610.8 63.1 NA 60.0 2595.1 2014-2015
## 704 569.9 55.8 NA 60.0 2458.7 2014-2015
## 705 599.6 57.2 NA 60.0 2570.8 2014-2015
## 706 590.2 57.8 NA 180.0 2520.2 2014-2015
## 707 626.2 76.0 NA 60.0 2744.5 2014-2015
## 708 588.2 58.3 NA 0.0 2552.0 2014-2015
## 709 600.5 57.8 NA 120.0 2552.2 2014-2015
## 710 596.0 63.2 NA 180.0 2536.7 2014-2015
## 711 602.6 59.9 NA 60.0 2592.5 2014-2015
## 712 618.0 72.4 NA 180.0 2655.2 2014-2015
## 713 575.4 55.3 NA 180.0 2469.1 2014-2015
## 714 631.9 53.6 NA 0.0 2724.3 2014-2015
## 715 585.6 66.6 NA 120.0 2551.6 2014-2015
## 716 595.0 50.4 NA 120.0 2522.1 2014-2015
## 717 617.5 60.2 NA 120.0 2660.8 2014-2015
## 718 665.4 61.0 NA 60.0 2847.3 2014-2015
## 719 587.0 61.5 NA 180.0 2519.9 2014-2015
## 720 639.6 53.5 NA 60.0 2713.6 2014-2015
## 721 619.1 52.7 NA 120.0 2620.8 2014-2015
## 722 614.2 60.0 NA 0.0 2690.4 2014-2015
## 723 594.1 59.7 NA 120.0 2581.1 2014-2015
## 724 628.6 56.8 NA 180.0 2668.0 2014-2015
## 725 654.0 57.8 NA 60.0 2818.6 2014-2015
## 726 607.0 64.2 NA 300.0 2576.9 2014-2015
## 727 625.0 57.6 NA 120.0 2655.9 2014-2015
## 728 393.5 43.8 23.3 6.8 0.0 2014-2015
## 729 405.5 46.0 23.8 7.3 0.0 2014-2015
## 730 393.3 40.0 22.2 6.7 0.0 2014-2015
## 731 413.4 41.5 20.6 7.3 0.0 2014-2015
## 732 385.6 45.4 25.0 6.4 0.0 2014-2015
## 733 389.8 42.0 19.9 6.9 0.0 2014-2015
## 734 392.7 39.8 18.5 6.9 0.0 2014-2015
## 735 398.4 42.3 22.1 6.7 0.0 2014-2015
## 736 413.1 40.4 18.2 27.4 0.0 2014-2015
## 737 388.6 39.5 16.8 26.1 0.0 2014-2015
## 738 397.3 42.5 22.0 28.5 0.0 2014-2015
## 739 402.1 49.9 28.6 6.9 0.0 2014-2015
## 740 404.6 50.9 28.9 6.4 0.0 2014-2015
## 741 399.0 45.4 24.9 26.2 0.0 2014-2015
## 742 387.2 43.8 23.0 29.4 0.0 2014-2015
## 743 399.4 49.8 28.3 27.4 0.0 2014-2015
## 744 397.4 46.8 26.3 6.8 0.0 2014-2015
## 745 402.7 42.9 20.3 26.6 0.0 2014-2015
## 746 410.3 45.5 23.1 49.4 0.0 2014-2015
## 747 407.1 58.2 37.5 28.1 0.0 2014-2015
## 748 415.8 50.1 27.0 26.6 0.0 2014-2015
## 749 405.6 44.1 24.9 6.6 0.0 2014-2015
## 750 415.8 42.6 21.1 6.7 0.0 2014-2015
## 751 405.2 48.2 25.5 27.8 0.0 2014-2015
## 752 404.5 46.9 25.4 27.5 0.0 2014-2015
## 753 420.3 43.9 22.3 30.5 0.0 2014-2015
## 754 407.1 44.2 25.0 29.0 0.0 2014-2015
## 755 421.4 45.3 26.5 7.0 0.0 2014-2015
## 756 419.1 43.4 23.1 28.9 0.0 2014-2015
## 757 422.5 47.0 27.2 51.6 0.0 2014-2015
## 758 327.9 47.5 27.3 7.3 0.0 2014-2015
## 759 322.6 45.6 24.5 6.6 0.0 2014-2015
## 760 331.0 44.2 22.6 7.5 0.0 2014-2015
## 761 325.9 50.9 28.6 6.7 0.0 2014-2015
## 762 324.2 43.9 22.8 27.2 0.0 2014-2015
## 763 327.5 47.2 26.7 28.4 0.0 2014-2015
## 764 324.7 39.6 20.2 28.9 0.0 2014-2015
## 765 323.9 47.2 26.4 6.9 0.0 2014-2015
## 766 328.9 47.8 27.6 6.9 0.0 2014-2015
## 767 328.4 44.1 24.2 50.8 0.0 2014-2015
## 768 328.7 43.5 23.7 6.5 0.0 2014-2015
## 769 322.9 42.2 22.0 6.9 0.0 2014-2015
## 770 325.2 45.1 23.9 27.8 0.0 2014-2015
## 771 322.5 46.8 24.7 28.7 0.0 2014-2015
## 772 320.2 46.5 25.2 28.0 0.0 2014-2015
## 773 337.5 46.9 27.1 27.5 0.0 2014-2015
## 774 327.8 51.9 31.4 28.6 0.0 2014-2015
## 775 329.7 43.4 23.9 6.9 0.0 2014-2015
## 776 320.9 46.9 24.5 28.7 0.0 2014-2015
## 777 334.8 46.2 26.5 48.5 0.0 2014-2015
## 778 322.3 47.0 25.7 28.9 0.0 2014-2015
## 779 326.2 45.1 24.8 28.8 0.0 2014-2015
## 780 341.8 43.8 24.5 49.2 0.0 2014-2015
## 781 328.6 46.9 27.5 27.5 0.0 2014-2015
## 782 327.1 44.1 23.1 7.6 0.0 2014-2015
## 783 332.4 45.5 25.2 8.0 0.0 2014-2015
## 784 332.9 46.6 27.2 7.2 0.0 2014-2015
## 785 322.0 50.5 30.4 70.0 0.0 2014-2015
## 786 329.1 52.9 30.7 52.4 0.0 2014-2015
## 787 326.4 53.9 36.2 29.0 0.0 2014-2015
## 788 334.3 43.4 21.6 52.5 0.0 2014-2015
## 789 340.0 46.8 26.8 30.8 0.0 2014-2015
## 790 330.6 43.6 21.4 29.3 0.0 2014-2015
## 791 331.0 46.5 24.9 29.6 0.0 2014-2015
## 792 333.4 44.8 26.7 48.9 0.0 2014-2015
## 793 343.0 47.0 24.0 29.7 0.0 2014-2015
## 794 319.5 46.2 27.0 50.4 0.0 2014-2015
## 795 330.8 46.2 26.8 29.3 0.0 2014-2015
## 796 324.3 51.0 30.1 77.8 0.0 2014-2015
## 797 334.9 45.6 24.6 51.5 0.0 2014-2015
## 798 337.9 55.7 34.4 74.8 0.0 2014-2015
## 799 338.6 43.4 24.6 30.0 0.0 2014-2015
## 800 343.1 44.1 22.9 29.7 0.0 2014-2015
## 801 336.6 48.1 27.4 30.1 0.0 2014-2015
## 802 335.7 44.0 24.0 29.8 0.0 2014-2015
## 803 326.9 53.7 28.5 29.9 0.0 2014-2015
## 804 337.4 47.5 27.4 52.0 0.0 2014-2015
## 805 329.8 45.2 22.4 52.5 0.0 2014-2015
## 806 343.6 48.3 25.3 7.3 0.0 2014-2015
## 807 337.0 56.5 35.0 55.0 0.0 2014-2015
## 808 328.7 49.1 27.7 56.9 0.0 2014-2015
## 809 344.8 47.7 25.9 6.8 0.0 2014-2015
## 810 339.3 50.8 30.6 77.9 0.0 2014-2015
## 811 347.8 53.7 31.5 30.9 0.0 2014-2015
## 812 358.6 46.8 25.2 7.5 0.0 2014-2015
## 813 351.9 45.2 23.9 51.0 0.0 2014-2015
## 814 351.8 48.6 28.0 52.2 0.0 2014-2015
## 815 355.9 41.1 20.1 76.9 0.0 2014-2015
## 816 360.0 43.8 22.8 31.1 0.0 2014-2015
## 817 353.2 50.1 30.7 30.8 0.0 2014-2015
## 818 461.2 50.1 33.0 4.4 0.0 2014-2015
## 819 469.7 43.3 28.0 4.2 0.0 2014-2015
## 820 473.2 39.7 23.0 4.3 0.0 2014-2015
## 821 464.4 51.2 36.0 24.3 0.0 2014-2015
## 822 474.2 48.4 30.0 4.7 0.0 2014-2015
## 823 475.9 45.0 29.0 4.3 0.0 2014-2015
## 824 479.4 41.0 23.0 4.4 0.0 2014-2015
## 825 478.5 48.6 32.0 4.4 0.0 2014-2015
## 826 473.6 42.8 26.0 24.4 0.0 2014-2015
## 827 462.6 43.4 25.0 45.4 0.0 2014-2015
## 828 479.5 43.7 27.0 4.7 0.0 2014-2015
## 829 475.8 51.7 34.0 24.4 0.0 2014-2015
## 830 477.9 45.8 28.0 26.3 0.0 2014-2015
## 831 485.3 45.4 28.0 4.5 0.0 2014-2015
## 832 473.8 44.5 27.0 4.4 0.0 2014-2015
## 833 479.2 44.5 28.0 24.9 0.0 2014-2015
## 834 483.4 36.6 20.0 4.5 0.0 2014-2015
## 835 483.9 42.1 26.0 4.2 0.0 2014-2015
## 836 478.7 38.5 20.0 25.0 0.0 2014-2015
## 837 474.1 44.9 27.0 25.6 0.0 2014-2015
## 838 477.1 46.7 29.0 26.0 0.0 2014-2015
## 839 479.1 44.5 27.0 25.2 0.0 2014-2015
## 840 481.1 42.7 25.0 26.2 0.0 2014-2015
## 841 484.2 44.7 27.0 25.8 0.0 2014-2015
## 842 484.9 46.7 29.0 26.5 0.0 2014-2015
## 843 484.0 36.2 20.0 26.1 0.0 2014-2015
## 844 477.1 44.9 26.0 25.4 0.0 2014-2015
## 845 482.1 46.4 28.0 4.8 0.0 2014-2015
## 846 479.3 43.8 27.0 27.1 0.0 2014-2015
## 847 491.1 42.6 23.0 4.4 0.0 2014-2015
## 848 494.5 41.6 24.0 4.5 0.0 2014-2015
## 849 489.4 50.5 33.0 4.0 0.0 2014-2015
## 850 493.1 51.4 33.0 4.7 0.0 2014-2015
## 851 496.2 43.1 28.0 24.5 0.0 2014-2015
## 852 480.3 37.4 21.0 45.3 0.0 2014-2015
## 853 474.8 47.6 31.0 25.0 0.0 2014-2015
## 854 487.2 45.0 27.0 25.5 0.0 2014-2015
## 855 473.5 42.6 25.0 4.3 0.0 2014-2015
## 856 490.7 42.9 25.0 27.3 0.0 2014-2015
## 857 481.0 49.8 31.0 45.4 0.0 2014-2015
## 858 491.2 45.7 30.0 25.5 0.0 2014-2015
## 859 472.1 48.3 30.0 24.3 0.0 2014-2015
## 860 471.9 38.6 21.0 47.6 0.0 2014-2015
## 861 484.1 49.3 32.0 46.9 0.0 2014-2015
## 862 489.3 42.8 23.0 25.8 0.0 2014-2015
## 863 493.2 51.2 32.0 25.9 0.0 2014-2015
## 864 490.4 45.7 28.0 49.2 0.0 2014-2015
## 865 485.9 45.2 28.0 47.0 0.0 2014-2015
## 866 480.1 50.5 33.0 70.0 0.0 2014-2015
## 867 483.0 51.6 32.0 49.5 0.0 2014-2015
## 868 481.8 51.3 33.0 44.8 0.0 2014-2015
## 869 503.3 45.2 25.0 4.8 0.0 2014-2015
## 870 479.7 47.1 29.0 47.9 0.0 2014-2015
## 871 502.4 51.3 30.0 4.7 0.0 2014-2015
## 872 506.7 45.1 27.0 26.2 0.0 2014-2015
## 873 475.0 42.6 26.0 24.9 0.0 2014-2015
## 874 489.0 43.0 25.0 4.4 0.0 2014-2015
## 875 485.3 44.9 27.0 72.3 0.0 2014-2015
## 876 487.2 45.0 28.0 47.6 0.0 2014-2015
## 877 494.4 42.9 25.0 48.1 0.0 2014-2015
## 878 497.0 48.3 25.0 48.4 0.0 2014-2015
## 879 505.0 53.0 34.0 25.9 0.0 2014-2015
## 880 498.4 50.1 31.0 4.2 0.0 2014-2015
## 881 505.1 46.4 28.0 4.7 0.0 2014-2015
## 882 494.9 54.3 36.0 25.9 0.0 2014-2015
## 883 495.2 59.9 43.0 27.5 0.0 2014-2015
## 884 492.6 43.9 27.0 28.9 0.0 2014-2015
## 885 499.4 50.6 33.0 26.5 0.0 2014-2015
## 886 499.9 49.3 31.0 26.3 0.0 2014-2015
## 887 487.8 51.5 32.0 49.4 0.0 2014-2015
## 888 499.9 51.8 33.0 72.6 0.0 2014-2015
## 889 504.9 46.9 29.0 26.2 0.0 2014-2015
## 890 510.9 53.9 35.0 48.9 0.0 2014-2015
## 891 532.6 44.5 26.0 4.6 0.0 2014-2015
## 892 503.9 47.9 29.0 28.4 0.0 2014-2015
## 893 496.0 47.9 28.0 49.3 0.0 2014-2015
## 894 516.3 47.9 28.0 51.4 0.0 2014-2015
## 895 519.4 52.8 34.0 26.8 0.0 2014-2015
## 896 497.6 46.8 28.0 4.6 0.0 2014-2015
## 897 521.5 41.4 23.0 26.7 0.0 2014-2015
## 898 499.6 46.9 27.0 73.8 0.0 2014-2015
## 899 512.6 48.1 27.0 48.1 0.0 2014-2015
## 900 524.8 48.5 29.0 52.6 0.0 2014-2015
## 901 512.2 63.8 44.0 74.0 0.0 2014-2015
## 902 492.8 48.0 28.0 75.8 0.0 2014-2015
## 903 487.3 61.4 43.0 75.5 0.0 2014-2015
## 904 529.6 41.4 23.0 56.8 0.0 2014-2015
## 905 518.8 42.6 24.0 29.5 0.0 2014-2015
## 906 533.6 56.1 36.0 52.9 0.0 2014-2015
## 907 522.3 55.3 34.0 102.7 0.0 2014-2015
## 908 543.4 50.8 30.0 53.2 0.0 2014-2015
## 909 556.1 49.6 29.0 28.2 0.0 2014-2015
## 910 571.9 58.4 38.0 30.4 0.0 2014-2015
## 911 531.6 50.2 29.0 78.4 0.0 2014-2015
## 912 410.8 41.6 25.0 28.4 0.0 2014-2015
## 913 406.6 44.1 27.0 5.1 0.0 2014-2015
## 914 419.8 48.9 31.0 6.6 0.0 2014-2015
## 915 405.3 44.7 26.0 5.8 0.0 2014-2015
## 916 410.0 43.7 25.0 5.5 0.0 2014-2015
## 917 407.5 44.0 27.0 28.7 0.0 2014-2015
## 918 416.3 45.1 26.0 5.2 0.0 2014-2015
## 919 407.2 48.5 29.0 28.5 0.0 2014-2015
## 920 419.4 45.4 27.0 4.8 0.0 2014-2015
## 921 419.6 45.6 25.0 4.9 0.0 2014-2015
## 922 412.4 51.3 32.0 27.8 0.0 2014-2015
## 923 416.5 45.8 27.0 29.0 0.0 2014-2015
## 924 419.8 47.2 28.0 28.5 0.0 2014-2015
## 925 415.6 46.8 29.0 5.0 0.0 2014-2015
## 926 418.7 46.3 27.0 51.7 0.0 2014-2015
## 927 428.8 47.8 28.0 29.1 0.0 2014-2015
## 928 426.6 49.1 30.0 31.1 0.0 2014-2015
## 929 418.6 50.5 30.0 29.4 0.0 2014-2015
## 930 422.3 43.8 28.0 30.0 0.0 2014-2015
## 931 424.5 46.3 31.0 29.9 0.0 2014-2015
## 932 417.3 47.3 28.0 28.3 0.0 2014-2015
## 933 420.4 51.2 33.0 28.1 0.0 2014-2015
## 934 416.5 46.1 25.0 30.4 0.0 2014-2015
## 935 417.5 54.1 36.0 27.5 0.0 2014-2015
## 936 435.2 39.1 21.0 27.0 0.0 2014-2015
## 937 429.8 44.1 26.0 27.9 0.0 2014-2015
## 938 422.5 45.4 26.0 83.4 0.0 2014-2015
## 939 434.2 49.8 31.0 5.8 0.0 2014-2015
## 940 420.8 58.9 40.0 5.6 0.0 2014-2015
## 941 426.3 46.3 28.0 53.7 0.0 2014-2015
## 942 422.9 53.1 33.0 5.6 0.0 2014-2015
## 943 441.1 41.7 23.0 29.9 0.0 2014-2015
## 944 431.2 49.1 31.0 30.7 0.0 2014-2015
## 945 431.1 50.2 31.0 78.9 0.0 2014-2015
## 946 425.9 37.5 19.0 5.0 0.0 2014-2015
## 947 407.3 48.2 30.0 30.5 0.0 2014-2015
## 948 416.8 52.1 32.0 4.8 0.0 2014-2015
## 949 421.4 48.1 28.0 30.7 0.0 2014-2015
## 950 424.0 46.3 26.0 30.0 0.0 2014-2015
## 951 419.6 44.7 25.0 29.5 0.0 2014-2015
## 952 412.1 51.5 33.0 77.1 0.0 2014-2015
## 953 421.2 55.2 33.0 79.4 0.0 2014-2015
## 954 420.6 48.2 28.0 28.3 0.0 2014-2015
## 955 426.6 47.4 28.0 4.7 0.0 2014-2015
## 956 429.2 42.5 25.0 29.1 0.0 2014-2015
## 957 450.7 44.8 25.0 31.0 0.0 2014-2015
## 958 439.7 55.5 34.0 60.1 0.0 2014-2015
## 959 436.4 51.5 32.0 56.7 0.0 2014-2015
## 960 443.4 46.1 27.0 5.0 0.0 2014-2015
## 961 433.0 43.4 24.0 55.8 0.0 2014-2015
## 962 427.7 55.3 34.0 55.8 0.0 2014-2015
## 963 447.6 43.7 25.0 31.2 0.0 2014-2015
## 964 446.6 43.1 23.0 32.4 0.0 2014-2015
## 965 438.1 53.1 32.0 62.0 0.0 2014-2015
## 966 757.3 45.9 24.0 3.7 0.0 2014-2015
## 967 755.2 49.7 29.0 25.9 0.0 2014-2015
## 968 756.4 62.8 41.0 24.9 0.0 2014-2015
## 969 753.1 56.5 34.0 50.6 0.0 2014-2015
## 970 751.0 55.3 33.0 3.9 0.0 2014-2015
## 971 743.0 58.6 37.0 25.7 0.0 2014-2015
## 972 754.3 48.9 27.0 27.1 0.0 2014-2015
## 973 762.9 47.2 26.0 27.0 0.0 2014-2015
## 974 762.1 49.1 28.0 4.0 0.0 2014-2015
## 975 796.6 67.4 46.0 3.2 0.0 2014-2015
## 976 767.8 52.2 30.0 3.5 0.0 2014-2015
## 977 786.7 40.4 19.0 3.4 0.0 2014-2015
## 978 759.8 48.0 27.0 49.6 0.0 2014-2015
## 979 751.5 49.4 28.0 51.8 0.0 2014-2015
## 980 758.1 55.1 32.0 54.4 0.0 2014-2015
## 981 766.8 48.0 26.0 3.5 0.0 2014-2015
## 982 747.2 51.2 30.0 50.6 0.0 2014-2015
## 983 785.9 63.8 42.0 27.1 0.0 2014-2015
## 984 761.8 57.3 35.0 51.1 0.0 2014-2015
## 985 761.9 46.4 25.0 26.5 0.0 2014-2015
## 986 788.0 49.6 27.0 3.6 0.0 2014-2015
## 987 775.9 55.5 34.0 50.9 0.0 2014-2015
## 988 761.8 47.5 25.0 3.5 0.0 2014-2015
## 989 798.4 55.5 32.0 28.7 0.0 2014-2015
## 990 774.3 48.0 27.0 27.9 0.0 2014-2015
## 991 787.0 64.9 43.0 28.2 0.0 2014-2015
## 992 771.6 54.0 31.0 54.0 0.0 2014-2015
## 993 781.7 46.1 26.0 26.2 0.0 2014-2015
## 994 787.3 53.4 33.0 27.6 0.0 2014-2015
## 995 750.8 65.7 45.0 47.2 0.0 2014-2015
## 996 772.4 52.6 27.0 52.4 0.0 2014-2015
## 997 783.4 69.8 50.0 50.6 0.0 2014-2015
## 998 766.5 61.0 42.0 49.2 0.0 2014-2015
## 999 776.6 50.3 28.0 79.1 0.0 2014-2015
## 1000 776.1 49.7 28.0 76.3 0.0 2014-2015
## 1001 780.2 49.9 28.0 3.7 0.0 2014-2015
## 1002 793.9 53.4 31.0 3.5 0.0 2014-2015
## 1003 787.0 48.3 30.0 51.1 0.0 2014-2015
## 1004 799.2 54.6 34.0 53.8 0.0 2014-2015
## 1005 807.9 52.8 29.0 29.3 0.0 2014-2015
## 1006 794.9 56.3 34.0 49.3 0.0 2014-2015
## 1007 763.5 62.8 42.0 72.2 0.0 2014-2015
## 1008 772.1 58.7 37.0 53.1 0.0 2014-2015
## 1009 792.8 59.7 38.0 52.0 0.0 2014-2015
## 1010 762.1 51.1 27.0 80.8 0.0 2014-2015
## 1011 784.4 54.7 31.0 28.8 0.0 2014-2015
## 1012 785.2 54.0 31.0 53.2 0.0 2014-2015
## 1013 801.0 73.6 51.0 29.3 0.0 2014-2015
## 1014 822.1 43.6 22.0 29.7 0.0 2014-2015
## 1015 785.9 49.9 28.0 27.2 0.0 2014-2015
## 1016 822.0 50.8 28.0 53.1 0.0 2014-2015
## 1017 835.5 51.7 30.0 3.9 0.0 2014-2015
## 1018 812.7 76.9 55.0 77.9 0.0 2014-2015
## 1019 793.3 54.2 32.0 52.4 0.0 2014-2015
## 1020 791.8 52.1 30.0 50.9 0.0 2014-2015
## 1021 764.0 50.1 26.0 81.0 0.0 2014-2015
## 1022 792.0 56.2 32.0 29.6 0.0 2014-2015
## 1023 768.5 60.1 37.0 81.1 0.0 2014-2015
## 1024 784.5 52.7 32.0 52.2 0.0 2014-2015
## 1025 807.0 53.9 32.0 3.6 0.0 2014-2015
## 1026 762.0 54.9 32.0 105.3 0.0 2014-2015
## 1027 822.6 48.4 25.0 3.7 0.0 2014-2015
## 1028 817.6 64.0 42.0 26.3 0.0 2014-2015
## 1029 777.9 55.8 34.0 104.6 0.0 2014-2015
## 1030 783.8 51.5 30.0 27.4 0.0 2014-2015
## 1031 780.9 65.0 42.0 54.3 0.0 2014-2015
## 1032 812.8 51.2 31.0 3.6 0.0 2014-2015
## 1033 818.8 59.2 37.0 28.5 0.0 2014-2015
## 1034 790.4 60.4 36.0 83.3 0.0 2014-2015
## 1035 780.0 69.8 50.0 97.8 0.0 2014-2015
## 1036 783.9 61.9 39.0 108.0 0.0 2014-2015
## 1037 789.7 67.6 44.0 77.6 0.0 2014-2015
## 1038 826.2 61.2 36.0 55.9 0.0 2014-2015
## 1039 791.7 62.6 40.0 80.7 0.0 2014-2015
## 1040 818.6 59.6 37.0 26.8 0.0 2014-2015
## 1041 795.5 64.1 39.0 85.4 0.0 2014-2015
## 1042 820.1 47.9 24.0 31.4 0.0 2014-2015
## 1043 857.7 64.8 41.0 4.0 0.0 2014-2015
## 1044 804.3 60.5 38.0 54.5 0.0 2014-2015
## 1045 791.0 59.6 40.0 26.2 0.0 2014-2015
## 1046 796.3 81.6 59.0 3.6 0.0 2014-2015
## 1047 827.8 57.0 35.0 58.8 0.0 2014-2015
## 1048 855.0 53.0 29.0 52.6 0.0 2014-2015
## 1049 848.2 75.7 53.0 80.4 0.0 2014-2015
## 1050 844.6 56.7 34.0 51.0 0.0 2014-2015
## 1051 847.4 59.5 35.0 87.2 0.0 2014-2015
## 1052 815.3 72.7 49.0 79.0 0.0 2014-2015
## 1053 823.8 74.1 50.0 109.2 0.0 2014-2015
## 1054 827.7 61.9 40.0 84.9 0.0 2014-2015
## 1055 865.7 78.3 54.0 29.0 0.0 2014-2015
## 1056 864.0 48.3 22.0 32.2 0.0 2014-2015
## 1057 847.7 58.2 35.0 58.8 0.0 2014-2015
## 1058 821.6 56.4 35.0 27.6 0.0 2014-2015
## 1059 846.5 73.2 48.0 86.1 0.0 2014-2015
## 1060 849.2 60.2 36.0 114.7 0.0 2014-2015
## 1061 958.2 104.4 81.0 3.7 0.0 2014-2015
## 1062 835.6 55.4 32.0 30.7 0.0 2014-2015
## 1063 833.6 68.5 43.0 87.4 0.0 2014-2015
## 1064 887.0 79.2 54.0 91.5 0.0 2014-2015
## 1065 397.6 93.6 68.0 4.4 0.0 2014-2015
## 1066 390.2 49.3 27.0 27.4 0.0 2014-2015
## 1067 410.0 46.3 22.0 50.8 0.0 2014-2015
## 1068 400.1 54.9 33.0 28.1 0.0 2014-2015
## 1069 400.3 52.4 29.0 52.3 0.0 2014-2015
## 1070 378.0 58.3 29.0 48.3 0.0 2014-2015
## 1071 393.4 52.2 25.0 51.2 0.0 2014-2015
## 1072 404.5 55.7 33.0 52.2 0.0 2014-2015
## 1073 397.1 55.5 33.0 51.0 0.0 2014-2015
## 1074 389.9 63.8 38.0 51.1 0.0 2014-2015
## 1075 406.5 48.0 24.0 28.9 0.0 2014-2015
## 1076 407.2 52.5 28.0 77.3 0.0 2014-2015
## 1077 405.8 72.7 51.0 55.6 0.0 2014-2015
## 1078 401.6 70.0 48.0 28.0 0.0 2014-2015
## 1079 421.6 53.5 32.0 3.9 0.0 2014-2015
## 1080 415.0 96.8 71.0 27.7 0.0 2014-2015
## 1081 412.0 52.6 31.0 77.7 0.0 2014-2015
## 1082 402.7 70.0 48.0 29.5 0.0 2014-2015
## 1083 406.3 49.1 27.0 27.5 0.0 2014-2015
## 1084 424.1 50.9 29.0 28.5 0.0 2014-2015
## 1085 404.6 54.1 32.0 78.3 0.0 2014-2015
## 1086 402.8 66.6 44.0 30.4 0.0 2014-2015
## 1087 391.6 83.8 60.0 80.5 0.0 2014-2015
## 1088 435.5 58.1 35.0 3.6 0.0 2014-2015
## 1089 401.8 77.1 54.0 76.4 0.0 2014-2015
## 1090 415.6 46.1 23.0 28.9 0.0 2014-2015
## 1091 402.6 69.8 47.0 57.5 0.0 2014-2015
## 1092 428.7 55.9 31.0 29.8 0.0 2014-2015
## 1093 422.3 52.3 30.0 81.4 0.0 2014-2015
## 1094 469.0 41.0 23.7 5.6 0.0 2014-2015
## 1095 477.7 45.2 26.1 5.9 0.0 2014-2015
## 1096 480.8 43.8 24.0 5.8 0.0 2014-2015
## 1097 479.3 47.7 30.0 5.9 0.0 2014-2015
## 1098 477.9 43.7 24.9 6.2 0.0 2014-2015
## 1099 475.1 48.6 28.1 6.1 0.0 2014-2015
## 1100 473.9 42.3 23.0 29.1 0.0 2014-2015
## 1101 468.8 42.9 23.7 28.9 0.0 2014-2015
## 1102 485.6 45.3 25.7 6.3 0.0 2014-2015
## 1103 486.4 42.5 22.2 29.8 0.0 2014-2015
## 1104 476.8 45.1 25.2 28.9 0.0 2014-2015
## 1105 485.8 46.1 25.8 6.1 0.0 2014-2015
## 1106 474.8 52.1 32.3 5.8 0.0 2014-2015
## 1107 489.8 44.9 25.1 6.0 0.0 2014-2015
## 1108 480.3 41.1 20.2 52.2 0.0 2014-2015
## 1109 483.0 43.1 22.5 6.1 0.0 2014-2015
## 1110 475.9 44.7 27.0 28.1 0.0 2014-2015
## 1111 477.9 50.5 31.0 6.4 0.0 2014-2015
## 1112 476.9 50.0 30.7 50.2 0.0 2014-2015
## 1113 483.9 45.9 25.0 29.7 0.0 2014-2015
## 1114 490.5 44.6 24.7 5.8 0.0 2014-2015
## 1115 484.6 44.5 24.2 6.2 0.0 2014-2015
## 1116 479.9 44.9 25.5 50.6 0.0 2014-2015
## 1117 487.3 49.2 29.5 28.4 0.0 2014-2015
## 1118 482.5 47.2 27.6 29.9 0.0 2014-2015
## 1119 484.8 48.5 28.8 6.2 0.0 2014-2015
## 1120 481.7 42.8 22.6 28.9 0.0 2014-2015
## 1121 487.5 45.6 25.7 29.2 0.0 2014-2015
## 1122 476.7 50.5 29.6 30.4 0.0 2014-2015
## 1123 485.8 48.9 27.7 29.5 0.0 2014-2015
## 1124 491.6 45.5 24.7 6.0 0.0 2014-2015
## 1125 498.4 52.1 32.9 6.0 0.0 2014-2015
## 1126 488.1 44.7 26.0 29.2 0.0 2014-2015
## 1127 482.7 57.3 36.5 30.0 0.0 2014-2015
## 1128 492.7 46.4 25.4 6.0 0.0 2014-2015
## 1129 487.8 51.2 29.3 31.8 0.0 2014-2015
## 1130 489.1 48.5 27.2 6.6 0.0 2014-2015
## 1131 496.5 47.8 25.9 30.8 0.0 2014-2015
## 1132 476.2 45.9 24.7 54.8 0.0 2014-2015
## 1133 494.3 45.4 23.9 54.9 0.0 2014-2015
## 1134 484.4 45.6 26.2 53.4 0.0 2014-2015
## 1135 482.9 46.7 26.4 54.3 0.0 2014-2015
## 1136 496.7 48.2 30.5 6.2 0.0 2014-2015
## 1137 503.9 47.3 24.6 6.6 0.0 2014-2015
## 1138 488.6 50.3 29.9 31.0 0.0 2014-2015
## 1139 486.8 43.6 25.7 52.3 0.0 2014-2015
## 1140 499.8 46.3 25.8 30.9 0.0 2014-2015
## 1141 493.7 52.6 30.5 30.1 0.0 2014-2015
## 1142 487.1 44.3 25.8 53.8 0.0 2014-2015
## 1143 503.5 44.4 23.9 30.7 0.0 2014-2015
## 1144 506.5 42.4 23.5 6.1 0.0 2014-2015
## 1145 478.9 49.4 28.8 105.3 0.0 2014-2015
## 1146 479.5 42.1 23.4 77.5 0.0 2014-2015
## 1147 503.8 55.7 36.2 6.7 0.0 2014-2015
## 1148 484.0 53.2 31.6 56.4 0.0 2014-2015
## 1149 487.8 54.1 33.5 76.8 0.0 2014-2015
## 1150 500.5 44.9 26.0 29.6 0.0 2014-2015
## 1151 508.1 47.5 26.2 29.3 0.0 2014-2015
## 1152 490.6 55.5 32.9 54.2 0.0 2014-2015
## 1153 512.9 47.5 26.1 31.0 0.0 2014-2015
## 1154 516.5 53.1 30.7 6.6 0.0 2014-2015
## 1155 487.5 52.1 32.7 54.1 0.0 2014-2015
## 1156 491.5 66.5 47.0 29.3 0.0 2014-2015
## 1157 492.2 54.4 33.4 54.1 0.0 2014-2015
## 1158 501.7 48.7 27.2 30.0 0.0 2014-2015
## 1159 494.8 45.8 23.6 79.8 0.0 2014-2015
## 1160 513.5 53.0 29.2 29.6 0.0 2014-2015
## 1161 513.7 59.2 38.5 31.7 0.0 2014-2015
## 1162 518.3 43.1 22.5 31.1 0.0 2014-2015
## 1163 498.5 57.3 35.0 30.6 0.0 2014-2015
## 1164 491.3 46.8 24.1 54.2 0.0 2014-2015
## 1165 511.2 51.2 29.7 54.6 0.0 2014-2015
## 1166 530.6 51.7 29.0 31.4 0.0 2014-2015
## 1167 524.0 49.7 29.6 6.2 0.0 2014-2015
## 1168 508.4 42.6 21.7 31.0 0.0 2014-2015
## 1169 507.3 45.3 24.5 6.2 0.0 2014-2015
## 1170 518.3 50.2 28.3 6.5 0.0 2014-2015
## 1171 524.1 50.5 27.8 32.7 0.0 2014-2015
## 1172 500.0 53.6 32.9 80.7 0.0 2014-2015
## 1173 480.0 47.7 26.9 80.7 0.0 2014-2015
## 1174 492.9 42.3 21.6 81.2 0.0 2014-2015
## 1175 520.5 53.5 34.1 30.7 0.0 2014-2015
## 1176 523.7 47.7 26.1 59.4 0.0 2014-2015
## 1177 501.5 59.2 35.4 56.1 0.0 2014-2015
## 1178 518.9 54.2 31.9 57.2 0.0 2014-2015
## 1179 508.0 45.1 25.1 82.6 0.0 2014-2015
## 1180 510.9 48.8 28.2 56.8 0.0 2014-2015
## 1181 504.2 45.8 24.5 30.7 0.0 2014-2015
## 1182 504.6 46.4 26.3 30.7 0.0 2014-2015
## 1183 506.8 50.8 29.6 81.0 0.0 2014-2015
## 1184 524.5 69.8 47.3 57.6 0.0 2014-2015
## 1185 520.9 46.6 26.5 30.4 0.0 2014-2015
## 1186 511.5 56.3 34.4 56.6 0.0 2014-2015
## 1187 542.7 49.5 24.7 34.2 0.0 2014-2015
## 1188 551.6 55.0 26.4 6.7 0.0 2014-2015
## 1189 538.6 52.4 30.6 32.5 0.0 2014-2015
## 1190 548.1 44.2 21.3 60.2 0.0 2014-2015
## 1191 543.1 47.4 23.6 83.1 0.0 2014-2015
## 1192 524.8 47.0 26.1 83.1 0.0 2014-2015
## 1193 630.9 44.7 22.9 0.0 2607.4 2014-2015
## 1194 622.6 45.3 25.9 0.0 2619.9 2014-2015
## 1195 628.5 58.1 39.0 0.0 2679.5 2014-2015
## 1196 636.7 56.0 35.7 0.0 2678.5 2014-2015
## 1197 633.4 55.2 34.5 60.0 2631.9 2014-2015
## 1198 607.8 40.4 21.4 0.0 2576.4 2014-2015
## 1199 627.1 47.4 26.6 0.0 2667.2 2014-2015
## 1200 619.1 37.7 18.2 60.0 2551.8 2014-2015
## 1201 650.2 43.5 22.4 0.0 2693.8 2014-2015
## 1202 651.7 54.4 32.8 60.0 2723.9 2014-2015
## 1203 626.0 48.2 28.4 0.0 2639.2 2014-2015
## 1204 633.7 53.1 30.6 60.0 2646.8 2014-2015
## 1205 650.9 43.6 26.2 60.0 2677.1 2014-2015
## 1206 645.0 52.4 31.6 120.0 2694.8 2014-2015
## 1207 619.0 43.0 21.5 120.0 2610.5 2014-2015
## 1208 643.6 55.3 34.3 120.0 2661.0 2014-2015
## 1209 626.9 48.3 25.4 60.0 2625.6 2014-2015
## 1210 654.9 55.7 33.0 60.0 2738.0 2014-2015
## 1211 662.1 48.9 28.6 60.0 2802.9 2014-2015
## 1212 644.0 58.5 36.7 120.0 2700.7 2014-2015
## 1213 657.0 47.2 27.0 0.0 2714.5 2014-2015
## 1214 634.1 55.9 35.6 120.0 2648.7 2014-2015
## 1215 629.9 45.9 24.6 120.0 2640.9 2014-2015
## 1216 613.6 67.6 47.3 120.0 2608.3 2014-2015
## 1217 655.0 48.2 26.7 0.0 2701.4 2014-2015
## 1218 644.9 52.1 31.0 60.0 2774.8 2014-2015
## 1219 622.8 48.0 27.5 60.0 2606.9 2014-2015
## 1220 646.1 51.2 28.9 120.0 2713.9 2014-2015
## 1221 635.4 48.9 27.0 120.0 2612.0 2014-2015
## 1222 626.8 49.8 27.6 120.0 2626.2 2014-2015
## 1223 623.1 57.1 36.6 120.0 2643.4 2014-2015
## 1224 682.6 48.4 26.7 60.0 2831.9 2014-2015
## 1225 642.2 72.7 49.5 180.0 2695.3 2014-2015
## 1226 660.0 50.6 27.5 0.0 2753.5 2014-2015
## 1227 639.9 50.6 30.1 120.0 2668.8 2014-2015
## 1228 655.0 45.2 24.7 60.0 2738.5 2014-2015
## 1229 683.2 48.3 28.4 60.0 2841.5 2014-2015
## 1230 653.5 52.7 31.6 120.0 2734.6 2014-2015
## 1231 642.2 49.5 25.3 180.0 2678.8 2014-2015
## 1232 687.8 50.3 27.6 0.0 2841.5 2014-2015
## 1233 656.9 56.1 33.0 60.0 2743.2 2014-2015
## 1234 643.9 47.5 27.2 120.0 2658.5 2014-2015
## 1235 626.1 46.4 24.7 120.0 2650.2 2014-2015
## 1236 668.1 44.5 24.9 60.0 2753.9 2014-2015
## 1237 644.8 46.9 25.0 60.0 2707.3 2014-2015
## 1238 669.5 48.4 27.0 120.0 2799.9 2014-2015
## 1239 682.9 46.2 23.5 60.0 2758.4 2014-2015
## 1240 662.1 50.2 28.9 180.0 2725.8 2014-2015
## 1241 666.7 58.9 38.0 0.0 2777.4 2014-2015
## 1242 665.1 47.4 24.3 120.0 2753.5 2014-2015
## 1243 663.8 42.6 21.2 60.0 2780.0 2014-2015
## 1244 683.2 47.5 23.5 60.0 2829.9 2014-2015
## 1245 666.9 49.8 28.3 180.0 2727.3 2014-2015
## 1246 629.6 42.7 21.7 120.0 2655.7 2014-2015
## 1247 706.2 45.5 23.4 0.0 2837.4 2014-2015
## 1248 644.0 50.5 28.7 60.0 2759.5 2014-2015
## 1249 705.4 70.3 29.5 0.0 2925.0 2014-2015
## 1250 672.1 45.0 23.4 60.0 2755.9 2014-2015
## 1251 617.1 47.0 27.3 60.0 2634.5 2014-2015
## 1252 666.7 47.2 22.3 0.0 2776.6 2014-2015
## 1253 682.6 46.0 23.7 120.0 2843.4 2014-2015
## 1254 688.1 52.5 29.6 120.0 2791.5 2014-2015
## 1255 671.1 51.8 29.6 60.0 2841.8 2014-2015
## 1256 644.4 53.4 30.5 120.0 2699.5 2014-2015
## 1257 696.6 53.0 31.8 60.0 2904.1 2014-2015
## 1258 689.1 42.5 19.4 0.0 2830.1 2014-2015
## 1259 660.2 50.3 29.6 60.0 2814.4 2014-2015
## 1260 675.9 50.9 27.7 60.0 2801.2 2014-2015
## 1261 644.8 56.4 33.4 60.0 2662.6 2014-2015
## 1262 674.2 50.9 28.2 0.0 2823.5 2014-2015
## 1263 689.9 45.3 22.4 60.0 2851.9 2014-2015
## 1264 667.4 58.3 36.9 180.0 2786.6 2014-2015
## 1265 670.9 49.9 27.4 60.0 2763.9 2014-2015
## 1266 657.8 52.9 32.2 0.0 2751.5 2014-2015
## 1267 637.0 42.1 19.5 180.0 2634.4 2014-2015
## 1268 678.1 46.6 23.9 0.0 2782.7 2014-2015
## 1269 666.7 45.3 23.4 60.0 2803.4 2014-2015
## 1270 692.1 49.0 23.9 60.0 2854.2 2014-2015
## 1271 655.6 52.8 29.2 180.0 2762.6 2014-2015
## 1272 659.0 51.5 31.0 180.0 2754.9 2014-2015
## 1273 700.4 82.2 57.6 60.0 2739.2 2014-2015
## 1274 648.6 48.4 27.7 60.0 2712.2 2014-2015
## 1275 660.8 48.5 26.9 60.0 2746.5 2014-2015
## 1276 628.2 43.7 21.5 180.0 2657.0 2014-2015
## 1277 678.2 51.9 30.0 120.0 2815.3 2014-2015
## 1278 685.5 47.7 26.0 120.0 2848.6 2014-2015
## 1279 714.2 54.2 32.7 120.0 2915.3 2014-2015
## 1280 721.7 54.1 30.0 60.0 3033.8 2014-2015
## 1281 684.0 60.2 36.7 180.0 2860.0 2014-2015
## 1282 666.0 55.0 32.4 180.0 2759.3 2014-2015
## 1283 689.7 43.5 21.3 60.0 2845.4 2014-2015
## 1284 712.9 49.2 27.5 120.0 2949.2 2014-2015
## 1285 659.9 48.0 25.4 180.0 2823.7 2014-2015
## 1286 699.7 52.3 32.4 60.0 2908.8 2014-2015
## 1287 675.2 49.6 28.1 60.0 2838.6 2014-2015
## 1288 700.1 54.6 29.5 120.0 2920.5 2014-2015
## 1289 714.9 49.6 25.0 180.0 2901.2 2014-2015
## 1290 719.1 50.8 28.6 60.0 2974.9 2014-2015
## 1291 711.1 60.0 37.8 60.0 2959.4 2014-2015
## 1292 346.8 41.3 21.8 31.1 0.0 2014-2015
## 1293 349.8 47.5 28.0 6.3 0.0 2014-2015
## 1294 348.9 44.1 22.1 31.4 0.0 2014-2015
## 1295 356.2 48.6 28.0 53.6 0.0 2014-2015
## 1296 345.1 48.9 36.6 29.7 0.0 2014-2015
## 1297 348.9 50.4 30.7 29.6 0.0 2014-2015
## 1298 346.8 49.7 31.8 29.4 0.0 2014-2015
## 1299 349.4 46.5 26.9 31.6 0.0 2014-2015
## 1300 358.6 46.4 27.1 30.2 0.0 2014-2015
## 1301 356.5 45.5 25.1 30.2 0.0 2014-2015
## 1302 358.7 51.3 35.1 6.9 0.0 2014-2015
## 1303 353.3 52.5 32.1 30.5 0.0 2014-2015
## 1304 362.0 60.6 38.6 30.3 0.0 2014-2015
## 1305 354.0 45.1 31.2 54.3 0.0 2014-2015
## 1306 366.7 54.9 35.6 6.2 0.0 2014-2015
## 1307 361.6 49.7 28.3 81.2 0.0 2014-2015
## 1308 363.7 44.3 24.9 31.7 0.0 2014-2015
## 1309 352.1 59.3 38.6 54.7 0.0 2014-2015
## 1310 361.9 58.1 39.4 57.0 0.0 2014-2015
## 1311 360.8 50.2 39.4 57.3 0.0 2014-2015
## 1312 364.9 48.4 27.3 7.0 0.0 2014-2015
## 1313 368.5 50.7 29.5 7.8 0.0 2014-2015
## 1314 365.9 51.3 30.6 57.0 0.0 2014-2015
## 1315 369.1 41.9 20.1 31.7 0.0 2014-2015
## 1316 363.9 56.5 37.5 30.3 0.0 2014-2015
## 1317 352.5 53.0 32.7 31.3 0.0 2014-2015
## 1318 366.6 43.5 23.7 7.0 0.0 2014-2015
## 1319 357.0 48.2 26.9 54.8 0.0 2014-2015
## 1320 369.7 52.7 30.7 31.4 0.0 2014-2015
## 1321 354.6 49.3 31.3 82.3 0.0 2014-2015
## 1322 360.9 52.0 34.5 30.6 0.0 2014-2015
## 1323 362.8 63.5 47.2 53.7 0.0 2014-2015
## 1324 370.3 58.4 37.3 58.8 0.0 2014-2015
## 1325 352.8 67.4 46.8 57.6 0.0 2014-2015
## 1326 359.2 58.7 40.1 82.0 0.0 2014-2015
## 1327 359.0 59.4 37.7 81.8 0.0 2014-2015
## 1328 367.0 48.5 29.5 30.2 0.0 2014-2015
## 1329 365.9 45.9 26.5 6.5 0.0 2014-2015
## 1330 378.4 52.0 30.1 7.5 0.0 2014-2015
## 1331 375.7 45.9 24.5 6.6 0.0 2014-2015
## 1332 363.0 57.0 37.2 55.6 0.0 2014-2015
## 1333 369.8 56.9 35.4 30.3 0.0 2014-2015
## 1334 367.6 53.5 36.4 57.2 0.0 2014-2015
## 1335 363.1 48.9 27.0 56.8 0.0 2014-2015
## 1336 375.8 45.0 24.5 59.8 0.0 2014-2015
## 1337 362.4 54.1 35.3 57.7 0.0 2014-2015
## 1338 379.8 47.1 30.2 56.8 0.0 2014-2015
## 1339 371.5 58.2 40.4 32.1 0.0 2014-2015
## 1340 381.0 51.0 32.7 31.8 0.0 2014-2015
## 1341 367.3 53.0 32.2 58.0 0.0 2014-2015
## 1342 371.1 56.4 35.4 59.2 0.0 2014-2015
## 1343 382.8 54.1 37.0 31.6 0.0 2014-2015
## 1344 369.1 49.9 32.2 80.6 0.0 2014-2015
## 1345 373.7 50.9 31.2 55.4 0.0 2014-2015
## 1346 373.5 62.4 43.5 62.2 0.0 2014-2015
## 1347 375.6 72.1 52.3 113.4 0.0 2014-2015
## 1348 380.4 83.8 61.0 33.2 0.0 2014-2015
## 1349 371.9 49.8 28.1 117.6 0.0 2014-2015
## 1350 382.2 49.8 28.7 59.3 0.0 2014-2015
## 1351 454.1 43.4 34.9 8.3 0.0 2014-2015
## 1352 459.1 40.1 24.9 8.7 0.0 2014-2015
## 1353 457.7 44.1 28.7 8.3 0.0 2014-2015
## 1354 451.6 41.9 25.3 8.4 0.0 2014-2015
## 1355 458.0 37.6 22.3 8.7 0.0 2014-2015
## 1356 459.9 46.7 29.2 8.8 0.0 2014-2015
## 1357 462.2 42.8 27.3 8.8 0.0 2014-2015
## 1358 464.1 37.2 21.2 30.7 0.0 2014-2015
## 1359 475.4 41.5 25.9 7.9 0.0 2014-2015
## 1360 468.2 38.3 21.6 8.7 0.0 2014-2015
## 1361 456.5 40.9 22.9 30.6 0.0 2014-2015
## 1362 470.5 43.5 26.3 9.0 0.0 2014-2015
## 1363 455.8 42.3 26.2 29.0 0.0 2014-2015
## 1364 463.9 44.5 28.4 29.8 0.0 2014-2015
## 1365 462.2 41.7 24.7 30.3 0.0 2014-2015
## 1366 470.5 44.9 29.2 8.5 0.0 2014-2015
## 1367 469.6 42.6 26.1 8.8 0.0 2014-2015
## 1368 476.4 45.3 28.5 8.4 0.0 2014-2015
## 1369 454.7 41.5 25.8 28.7 0.0 2014-2015
## 1370 468.9 37.6 21.5 8.5 0.0 2014-2015
## 1371 464.4 44.8 28.2 8.9 0.0 2014-2015
## 1372 469.6 38.2 20.8 30.4 0.0 2014-2015
## 1373 460.7 40.7 24.5 51.1 0.0 2014-2015
## 1374 474.2 42.0 25.9 29.9 0.0 2014-2015
## 1375 468.2 39.9 22.9 30.6 0.0 2014-2015
## 1376 463.6 39.8 23.4 52.6 0.0 2014-2015
## 1377 462.1 44.3 29.6 29.9 0.0 2014-2015
## 1378 472.3 43.5 26.4 8.7 0.0 2014-2015
## 1379 468.3 40.8 25.0 8.5 0.0 2014-2015
## 1380 465.7 40.3 24.6 31.2 0.0 2014-2015
## 1381 476.8 38.7 22.5 52.2 0.0 2014-2015
## 1382 462.7 38.4 21.7 9.2 0.0 2014-2015
## 1383 478.9 46.4 29.8 30.8 0.0 2014-2015
## 1384 461.4 44.9 28.3 52.0 0.0 2014-2015
## 1385 469.4 40.3 22.8 30.7 0.0 2014-2015
## 1386 479.1 46.1 28.5 8.4 0.0 2014-2015
## 1387 458.4 42.2 25.1 79.8 0.0 2014-2015
## 1388 484.0 43.2 26.7 9.0 0.0 2014-2015
## 1389 476.2 42.6 24.8 8.7 0.0 2014-2015
## 1390 475.2 42.2 25.7 8.6 0.0 2014-2015
## 1391 473.5 42.5 25.1 9.0 0.0 2014-2015
## 1392 485.6 43.5 26.4 8.4 0.0 2014-2015
## 1393 485.1 38.2 21.5 8.8 0.0 2014-2015
## 1394 461.7 47.8 31.1 29.9 0.0 2014-2015
## 1395 487.6 40.2 25.2 8.3 0.0 2014-2015
## 1396 484.4 45.0 27.3 31.3 0.0 2014-2015
## 1397 471.8 48.4 32.0 54.1 0.0 2014-2015
## 1398 470.8 43.9 26.2 55.6 0.0 2014-2015
## 1399 468.1 41.9 24.6 31.0 0.0 2014-2015
## 1400 482.0 46.3 25.9 30.5 0.0 2014-2015
## 1401 467.1 43.8 27.2 8.6 0.0 2014-2015
## 1402 480.8 37.5 19.9 32.0 0.0 2014-2015
## 1403 493.7 37.4 21.9 8.7 0.0 2014-2015
## 1404 480.1 48.4 30.5 31.6 0.0 2014-2015
## 1405 487.4 45.5 27.7 9.2 0.0 2014-2015
## 1406 476.5 46.7 30.9 53.7 0.0 2014-2015
## 1407 485.6 41.8 26.0 8.8 0.0 2014-2015
## 1408 499.5 43.5 26.1 9.4 0.0 2014-2015
## 1409 481.5 44.3 27.2 31.9 0.0 2014-2015
## 1410 461.5 45.2 29.6 31.6 0.0 2014-2015
## 1411 479.1 44.3 27.0 31.9 0.0 2014-2015
## 1412 480.2 46.4 28.8 33.9 0.0 2014-2015
## 1413 481.1 44.5 25.4 55.0 0.0 2014-2015
## 1414 480.6 44.9 28.3 31.1 0.0 2014-2015
## 1415 486.7 45.9 28.2 32.3 0.0 2014-2015
## 1416 497.4 43.7 24.3 8.9 0.0 2014-2015
## 1417 491.3 43.1 25.4 9.2 0.0 2014-2015
## 1418 479.6 45.7 28.7 75.5 0.0 2014-2015
## 1419 479.6 46.0 28.1 31.5 0.0 2014-2015
## 1420 481.0 47.8 30.7 52.3 0.0 2014-2015
## 1421 470.7 46.2 28.8 77.7 0.0 2014-2015
## 1422 495.5 43.2 23.4 33.3 0.0 2014-2015
## 1423 497.1 46.2 28.2 33.7 0.0 2014-2015
## 1424 481.9 42.7 25.2 54.5 0.0 2014-2015
## 1425 486.1 53.5 35.3 55.0 0.0 2014-2015
## 1426 488.2 54.9 36.9 32.7 0.0 2014-2015
## 1427 493.0 44.6 28.0 32.3 0.0 2014-2015
## 1428 487.1 42.3 24.8 31.3 0.0 2014-2015
## 1429 479.8 43.0 26.9 33.3 0.0 2014-2015
## 1430 488.2 47.8 30.7 60.7 0.0 2014-2015
## 1431 497.8 51.7 33.7 32.6 0.0 2014-2015
## 1432 494.5 47.9 29.6 55.4 0.0 2014-2015
## 1433 496.0 40.8 23.8 54.9 0.0 2014-2015
## 1434 508.6 41.6 24.6 32.9 0.0 2014-2015
## 1435 478.3 45.6 24.3 80.8 0.0 2014-2015
## 1436 505.5 53.7 34.9 32.5 0.0 2014-2015
## 1437 477.8 42.8 27.0 50.7 0.0 2014-2015
## 1438 490.2 48.2 30.7 33.0 0.0 2014-2015
## 1439 500.6 50.1 31.4 9.3 0.0 2014-2015
## 1440 498.9 40.9 22.4 36.2 0.0 2014-2015
## 1441 500.7 42.5 21.9 55.6 0.0 2014-2015
## 1442 486.4 50.6 33.1 78.2 0.0 2014-2015
## 1443 536.0 36.3 18.2 10.0 0.0 2014-2015
## 1444 514.5 45.0 27.6 33.3 0.0 2014-2015
## 1445 524.6 49.3 29.2 35.5 0.0 2014-2015
## 1446 495.0 49.8 30.9 81.4 0.0 2014-2015
## 1447 514.7 48.0 30.4 55.9 0.0 2014-2015
## 1448 572.3 54.3 33.2 0.0 2473.7 2014-2015
## 1449 580.6 44.9 22.7 0.0 2477.7 2014-2015
## 1450 590.2 45.2 22.8 0.0 2501.7 2014-2015
## 1451 578.9 49.7 24.9 60.0 2450.6 2014-2015
## 1452 600.5 51.1 28.0 0.0 2552.6 2014-2015
## 1453 597.4 47.2 25.8 0.0 2505.1 2014-2015
## 1454 583.5 47.6 28.6 0.0 2453.8 2014-2015
## 1455 589.1 50.7 30.1 0.0 2529.5 2014-2015
## 1456 596.2 49.5 28.0 0.0 2520.5 2014-2015
## 1457 605.4 48.5 26.7 0.0 2584.8 2014-2015
## 1458 582.2 44.9 23.1 0.0 2481.3 2014-2015
## 1459 601.0 46.1 23.8 60.0 2548.3 2014-2015
## 1460 614.8 43.1 21.3 0.0 2543.2 2014-2015
## 1461 581.8 55.4 32.0 60.0 2499.8 2014-2015
## 1462 585.6 47.4 25.0 60.0 2495.0 2014-2015
## 1463 592.3 45.7 24.1 0.0 2502.4 2014-2015
## 1464 603.6 50.4 27.3 0.0 2563.0 2014-2015
## 1465 599.7 58.9 33.0 0.0 2560.1 2014-2015
## 1466 596.3 48.5 21.1 120.0 2499.2 2014-2015
## 1467 605.6 47.7 26.1 0.0 2556.4 2014-2015
## 1468 609.0 52.6 31.0 0.0 2625.5 2014-2015
## 1469 605.7 62.4 37.9 60.0 2567.9 2014-2015
## 1470 600.8 50.0 27.4 60.0 2529.3 2014-2015
## 1471 609.7 45.1 22.9 0.0 2582.7 2014-2015
## 1472 606.9 48.3 27.2 0.0 2540.7 2014-2015
## 1473 603.1 61.0 38.9 0.0 2594.4 2014-2015
## 1474 591.3 48.6 26.0 60.0 2488.0 2014-2015
## 1475 610.0 48.0 25.2 0.0 2567.4 2014-2015
## 1476 603.7 44.2 20.5 60.0 2550.8 2014-2015
## 1477 622.1 54.9 32.1 60.0 2608.5 2014-2015
## 1478 610.6 44.6 21.1 0.0 2553.1 2014-2015
## 1479 623.7 44.4 21.8 0.0 2606.5 2014-2015
## 1480 622.2 53.7 31.7 0.0 2630.6 2014-2015
## 1481 604.8 50.0 24.3 120.0 2561.7 2014-2015
## 1482 599.6 49.8 26.1 120.0 2533.9 2014-2015
## 1483 595.9 50.4 30.2 0.0 2533.2 2014-2015
## 1484 590.4 50.0 26.0 0.0 2533.0 2014-2015
## 1485 617.8 46.4 23.4 0.0 2581.5 2014-2015
## 1486 636.5 49.3 25.5 0.0 2640.2 2014-2015
## 1487 619.7 48.5 26.4 0.0 2595.8 2014-2015
## 1488 605.8 55.0 29.9 0.0 2544.7 2014-2015
## 1489 629.7 51.1 25.8 0.0 2595.5 2014-2015
## 1490 600.5 54.7 31.2 120.0 2558.2 2014-2015
## 1491 611.6 53.4 30.4 120.0 2567.8 2014-2015
## 1492 616.2 47.5 25.0 0.0 2608.2 2014-2015
## 1493 584.4 49.8 27.8 0.0 2518.8 2014-2015
## 1494 588.9 49.2 28.0 180.0 2525.5 2014-2015
## 1495 613.6 50.8 26.4 60.0 2562.9 2014-2015
## 1496 601.4 58.2 34.3 180.0 2567.7 2014-2015
## 1497 594.2 49.1 27.4 0.0 2534.2 2014-2015
## 1498 651.4 50.7 26.5 0.0 2710.8 2014-2015
## 1499 583.5 49.4 27.8 60.0 2546.2 2014-2015
## 1500 627.9 49.9 26.4 0.0 2642.8 2014-2015
## 1501 627.1 48.9 25.7 60.0 2589.7 2014-2015
## 1502 632.9 46.9 25.0 0.0 2641.9 2014-2015
## 1503 639.7 47.7 24.1 60.0 2656.8 2014-2015
## 1504 642.7 48.8 23.4 0.0 2704.7 2014-2015
## 1505 626.9 49.7 27.3 0.0 2649.3 2014-2015
## 1506 635.9 53.3 28.7 0.0 2716.2 2014-2015
## 1507 625.5 52.1 28.2 0.0 2630.0 2014-2015
## 1508 610.4 54.5 32.2 60.0 2585.4 2014-2015
## 1509 621.9 53.4 30.6 120.0 2639.1 2014-2015
## 1510 630.1 49.0 23.9 0.0 2662.2 2014-2015
## 1511 614.3 47.6 22.8 60.0 2605.7 2014-2015
## 1512 640.2 51.8 28.2 0.0 2650.0 2014-2015
## 1513 647.4 50.9 26.6 0.0 2668.6 2014-2015
## 1514 622.2 48.7 25.8 60.0 2629.4 2014-2015
## 1515 662.5 44.6 21.7 0.0 2714.2 2014-2015
## 1516 625.3 49.3 25.0 60.0 2591.1 2014-2015
## 1517 609.0 50.1 26.2 180.0 2545.9 2014-2015
## 1518 658.5 49.4 24.0 0.0 2724.1 2014-2015
## 1519 641.5 52.7 28.4 0.0 2701.1 2014-2015
## 1520 640.2 61.8 38.0 0.0 2717.4 2014-2015
## 1521 651.9 52.0 27.0 60.0 2710.9 2014-2015
## 1522 666.9 46.6 22.1 60.0 2808.2 2014-2015
## 1523 636.4 54.8 29.7 60.0 2677.9 2014-2015
## 1524 641.6 52.0 27.7 60.0 2702.9 2014-2015
## 1525 618.0 51.4 26.1 0.0 2598.6 2014-2015
## 1526 627.1 55.5 32.0 120.0 2652.9 2014-2015
## 1527 633.4 47.1 23.7 60.0 2655.5 2014-2015
## 1528 656.4 53.2 30.9 0.0 2713.7 2014-2015
## 1529 631.6 49.5 25.9 120.0 2627.6 2014-2015
## 1530 670.1 70.2 44.5 120.0 2782.9 2014-2015
## 1531 666.0 50.8 27.0 0.0 2793.8 2014-2015
## 1532 596.3 51.2 32.9 120.0 2565.9 2014-2015
## 1533 653.0 58.0 32.5 120.0 2742.0 2014-2015
## 1534 690.9 51.8 28.6 60.0 2883.6 2014-2015
## 1535 669.8 46.8 22.2 60.0 2800.8 2014-2015
## 1536 638.0 55.4 30.5 120.0 2703.8 2014-2015
## 1537 642.3 56.0 31.0 60.0 2695.4 2014-2015
## 1538 656.7 53.3 27.8 60.0 2758.6 2014-2015
## 1539 671.0 54.9 22.6 0.0 2829.8 2014-2015
## 1540 688.6 62.2 37.2 60.0 2871.4 2014-2015
## 1541 734.0 59.8 32.3 0.0 3004.4 2014-2015
## 1542 433.6 42.7 23.0 5.0 0.0 2014-2015
## 1543 432.1 45.8 27.0 5.2 0.0 2014-2015
## 1544 444.7 42.8 24.0 5.6 0.0 2014-2015
## 1545 435.5 46.2 28.0 27.2 0.0 2014-2015
## 1546 442.6 44.1 24.0 7.3 0.0 2014-2015
## 1547 448.7 43.0 25.0 5.7 0.0 2014-2015
## 1548 448.4 42.1 23.0 5.6 0.0 2014-2015
## 1549 446.7 45.3 26.0 5.5 0.0 2014-2015
## 1550 448.6 46.2 26.0 5.4 0.0 2014-2015
## 1551 439.9 37.4 19.0 51.1 0.0 2014-2015
## 1552 451.2 42.6 23.0 5.7 0.0 2014-2015
## 1553 449.3 39.0 23.0 25.9 0.0 2014-2015
## 1554 447.6 43.3 25.0 6.0 0.0 2014-2015
## 1555 439.7 41.6 23.0 47.8 0.0 2014-2015
## 1556 451.8 49.2 31.0 5.3 0.0 2014-2015
## 1557 450.1 43.5 26.0 5.3 0.0 2014-2015
## 1558 449.8 45.6 26.0 5.2 0.0 2014-2015
## 1559 442.3 46.1 26.0 5.3 0.0 2014-2015
## 1560 449.7 52.5 33.0 6.0 0.0 2014-2015
## 1561 449.0 49.3 31.0 27.5 0.0 2014-2015
## 1562 461.9 46.5 25.0 5.6 0.0 2014-2015
## 1563 445.2 48.4 29.0 28.1 0.0 2014-2015
## 1564 449.0 50.9 32.0 28.5 0.0 2014-2015
## 1565 439.1 40.0 22.0 49.9 0.0 2014-2015
## 1566 456.0 41.3 21.0 5.6 0.0 2014-2015
## 1567 444.4 43.4 24.0 49.3 0.0 2014-2015
## 1568 446.2 46.7 28.0 5.9 0.0 2014-2015
## 1569 454.5 51.6 32.0 26.4 0.0 2014-2015
## 1570 454.6 46.6 27.0 28.4 0.0 2014-2015
## 1571 448.8 50.1 32.0 5.6 0.0 2014-2015
## 1572 460.4 43.4 23.0 5.5 0.0 2014-2015
## 1573 456.5 50.7 32.0 5.8 0.0 2014-2015
## 1574 454.0 44.5 26.0 29.0 0.0 2014-2015
## 1575 452.2 47.3 28.0 27.9 0.0 2014-2015
## 1576 466.1 50.3 31.0 5.6 0.0 2014-2015
## 1577 446.4 46.0 27.0 53.0 0.0 2014-2015
## 1578 452.9 51.6 33.0 27.2 0.0 2014-2015
## 1579 446.9 43.8 26.0 50.2 0.0 2014-2015
## 1580 451.6 49.6 29.0 27.7 0.0 2014-2015
## 1581 456.6 45.6 25.0 28.5 0.0 2014-2015
## 1582 448.7 43.8 26.0 27.8 0.0 2014-2015
## 1583 461.9 42.4 24.0 5.3 0.0 2014-2015
## 1584 450.0 45.6 26.0 28.0 0.0 2014-2015
## 1585 448.4 44.3 25.0 28.9 0.0 2014-2015
## 1586 459.6 43.2 23.0 5.5 0.0 2014-2015
## 1587 470.3 40.4 21.0 5.7 0.0 2014-2015
## 1588 445.3 42.4 23.0 51.8 0.0 2014-2015
## 1589 445.1 52.8 33.0 29.1 0.0 2014-2015
## 1590 459.1 49.8 31.0 28.7 0.0 2014-2015
## 1591 459.8 44.3 25.0 6.0 0.0 2014-2015
## 1592 446.1 46.7 27.0 27.8 0.0 2014-2015
## 1593 465.8 44.9 27.0 28.3 0.0 2014-2015
## 1594 463.5 44.5 23.0 28.9 0.0 2014-2015
## 1595 448.9 42.3 26.0 29.5 0.0 2014-2015
## 1596 465.0 45.9 26.0 27.6 0.0 2014-2015
## 1597 455.0 50.3 30.0 51.9 0.0 2014-2015
## 1598 463.1 49.0 31.0 29.5 0.0 2014-2015
## 1599 460.8 49.5 31.0 28.6 0.0 2014-2015
## 1600 461.3 49.0 30.0 28.2 0.0 2014-2015
## 1601 462.7 46.6 28.0 28.6 0.0 2014-2015
## 1602 452.6 45.9 27.0 28.6 0.0 2014-2015
## 1603 447.3 44.4 25.0 5.8 0.0 2014-2015
## 1604 450.9 52.2 32.0 50.3 0.0 2014-2015
## 1605 460.6 50.7 31.0 5.9 0.0 2014-2015
## 1606 458.0 54.1 35.0 51.6 0.0 2014-2015
## 1607 475.2 42.6 24.0 29.9 0.0 2014-2015
## 1608 468.8 41.9 22.0 5.5 0.0 2014-2015
## 1609 465.3 45.1 26.0 28.6 0.0 2014-2015
## 1610 466.0 53.7 36.0 30.2 0.0 2014-2015
## 1611 465.7 42.5 24.0 52.0 0.0 2014-2015
## 1612 481.8 50.9 31.0 6.0 0.0 2014-2015
## 1613 455.5 51.9 33.0 73.4 0.0 2014-2015
## 1614 469.1 48.9 30.0 29.5 0.0 2014-2015
## 1615 467.7 49.2 30.0 55.5 0.0 2014-2015
## 1616 470.2 48.8 30.0 28.9 0.0 2014-2015
## 1617 454.7 49.8 32.0 28.7 0.0 2014-2015
## 1618 462.7 40.9 24.0 28.6 0.0 2014-2015
## 1619 485.5 43.7 23.0 31.5 0.0 2014-2015
## 1620 468.0 40.4 21.0 54.7 0.0 2014-2015
## 1621 471.5 46.7 27.0 29.7 0.0 2014-2015
## 1622 476.7 50.3 30.0 53.4 0.0 2014-2015
## 1623 474.5 63.5 42.0 30.5 0.0 2014-2015
## 1624 471.2 50.8 30.0 6.6 0.0 2014-2015
## 1625 472.3 45.7 26.0 53.3 0.0 2014-2015
## 1626 460.8 51.1 31.0 31.3 0.0 2014-2015
## 1627 475.3 65.4 46.0 51.3 0.0 2014-2015
## 1628 469.3 48.1 28.0 78.6 0.0 2014-2015
## 1629 462.3 49.8 31.0 55.1 0.0 2014-2015
## 1630 478.5 48.4 28.0 55.4 0.0 2014-2015
## 1631 492.4 51.0 30.0 30.6 0.0 2014-2015
## 1632 506.3 51.7 29.0 55.9 0.0 2014-2015
## 1633 465.7 44.4 25.0 54.0 0.0 2014-2015
## 1634 489.9 49.5 28.0 55.7 0.0 2014-2015
## 1635 489.3 57.5 37.0 5.8 0.0 2014-2015
## 1636 461.6 42.6 23.0 53.9 0.0 2014-2015
## 1637 485.7 46.8 26.0 55.7 0.0 2014-2015
## 1638 509.9 45.4 26.0 5.8 0.0 2014-2015
## 1639 494.9 50.0 30.0 29.6 0.0 2014-2015
## 1640 483.7 68.7 46.0 81.1 0.0 2014-2015
## 1641 486.6 44.8 24.0 87.8 0.0 2014-2015
## 1642 519.7 53.0 30.0 31.5 0.0 2014-2015
## 1643 494.9 59.1 37.0 102.7 0.0 2014-2015
## 1644 386.4 41.0 26.0 27.3 0.0 2014-2015
## 1645 389.1 35.3 18.0 27.1 0.0 2014-2015
## 1646 387.3 36.2 20.0 6.0 0.0 2014-2015
## 1647 387.9 43.7 28.0 6.2 0.0 2014-2015
## 1648 388.3 40.4 25.0 27.5 0.0 2014-2015
## 1649 374.6 56.3 24.0 5.5 0.0 2014-2015
## 1650 374.9 54.2 23.0 6.3 0.0 2014-2015
## 1651 370.5 54.8 26.0 5.4 0.0 2014-2015
## 1652 372.3 54.8 25.0 27.3 0.0 2014-2015
## 1653 369.1 52.0 26.0 5.3 0.0 2014-2015
## 1654 373.9 57.0 27.0 5.4 0.0 2014-2015
## 1655 372.4 56.8 25.0 5.6 0.0 2014-2015
## 1656 378.8 58.3 25.0 28.4 0.0 2014-2015
## 1657 377.1 55.5 25.0 5.5 0.0 2014-2015
## 1658 378.8 59.9 26.0 5.3 0.0 2014-2015
## 1659 378.2 59.0 26.0 5.8 0.0 2014-2015
## 1660 365.5 52.5 21.0 28.9 0.0 2014-2015
## 1661 382.6 60.2 26.0 28.6 0.0 2014-2015
## 1662 377.4 55.0 21.0 5.3 0.0 2014-2015
## 1663 380.6 61.1 27.0 5.4 0.0 2014-2015
## 1664 374.3 61.0 30.0 49.9 0.0 2014-2015
## 1665 382.5 56.7 24.0 27.8 0.0 2014-2015
## 1666 366.2 56.2 25.0 73.6 0.0 2014-2015
## 1667 380.5 56.8 22.0 5.8 0.0 2014-2015
## 1668 378.4 59.4 24.0 51.3 0.0 2014-2015
## 1669 391.6 61.4 24.0 28.1 0.0 2014-2015
## 1670 373.9 61.4 29.0 72.2 0.0 2014-2015
## 1671 372.6 61.3 29.0 72.8 0.0 2014-2015
## 1672 389.3 64.2 27.0 5.2 0.0 2014-2015
## 1673 393.1 64.2 27.0 52.1 0.0 2014-2015
## 1674 323.2 39.3 21.0 6.7 0.0 2014-2015
## 1675 326.9 40.2 25.0 6.5 0.0 2014-2015
## 1676 335.6 39.7 24.0 7.1 0.0 2014-2015
## 1677 339.9 45.3 28.0 27.5 0.0 2014-2015
## 1678 330.5 40.3 23.0 5.8 0.0 2014-2015
## 1679 329.6 39.5 23.0 5.8 0.0 2014-2015
## 1680 332.5 40.4 24.0 27.3 0.0 2014-2015
## 1681 333.9 40.7 24.0 5.8 0.0 2014-2015
## 1682 325.5 42.3 25.0 5.6 0.0 2014-2015
## 1683 337.2 42.7 29.0 27.6 0.0 2014-2015
## 1684 331.4 38.6 22.0 26.1 0.0 2014-2015
## 1685 329.0 43.3 28.0 27.2 0.0 2014-2015
## 1686 330.0 46.4 29.0 4.7 0.0 2014-2015
## 1687 326.4 42.4 28.0 26.9 0.0 2014-2015
## 1688 332.9 45.4 29.0 27.7 0.0 2014-2015
## 1689 331.2 45.0 27.0 5.5 0.0 2014-2015
## 1690 330.1 42.6 24.0 5.2 0.0 2014-2015
## 1691 335.0 43.0 27.0 47.6 0.0 2014-2015
## 1692 335.7 44.9 26.0 27.9 0.0 2014-2015
## 1693 333.2 42.2 23.0 5.7 0.0 2014-2015
## 1694 330.7 45.1 27.0 27.3 0.0 2014-2015
## 1695 336.6 39.4 21.0 48.7 0.0 2014-2015
## 1696 334.2 38.6 22.0 7.0 0.0 2014-2015
## 1697 337.4 38.2 20.0 6.2 0.0 2014-2015
## 1698 335.6 45.0 27.0 26.9 0.0 2014-2015
## 1699 339.0 46.0 28.0 26.9 0.0 2014-2015
## 1700 333.7 41.5 25.0 6.2 0.0 2014-2015
## 1701 337.0 40.2 22.0 28.6 0.0 2014-2015
## 1702 332.1 45.7 28.0 49.5 0.0 2014-2015
## 1703 329.7 48.7 30.0 27.4 0.0 2014-2015
## 1704 334.4 46.9 28.0 6.4 0.0 2014-2015
## 1705 335.9 39.8 24.0 5.5 0.0 2014-2015
## 1706 328.2 42.9 24.0 49.5 0.0 2014-2015
## 1707 336.2 42.7 28.0 5.8 0.0 2014-2015
## 1708 344.4 48.5 30.0 27.6 0.0 2014-2015
## 1709 343.8 42.4 24.0 6.5 0.0 2014-2015
## 1710 340.1 43.6 28.0 29.9 0.0 2014-2015
## 1711 330.9 42.6 26.0 6.9 0.0 2014-2015
## 1712 349.5 38.3 20.0 29.2 0.0 2014-2015
## 1713 352.1 41.5 22.0 5.8 0.0 2014-2015
## 1714 342.3 35.7 19.0 57.2 0.0 2014-2015
## 1715 346.8 39.5 22.0 29.7 0.0 2014-2015
## 1716 339.8 46.0 28.0 28.2 0.0 2014-2015
## 1717 341.9 43.7 24.0 28.8 0.0 2014-2015
## 1718 338.7 46.7 29.0 5.3 0.0 2014-2015
## 1719 327.4 43.7 25.0 5.5 0.0 2014-2015
## 1720 349.5 42.7 25.0 5.7 0.0 2014-2015
## 1721 343.6 49.0 32.0 31.2 0.0 2014-2015
## 1722 349.2 43.8 26.0 29.1 0.0 2014-2015
## 1723 327.0 55.6 31.0 102.1 0.0 2014-2015
## 1724 354.2 38.2 21.0 5.7 0.0 2014-2015
## 1725 337.7 42.9 25.0 28.9 0.0 2014-2015
## 1726 349.8 46.1 26.0 29.5 0.0 2014-2015
## 1727 346.5 39.7 19.0 27.8 0.0 2014-2015
## 1728 355.2 46.4 27.0 53.7 0.0 2014-2015
## 1729 337.6 44.7 26.0 28.5 0.0 2014-2015
## 1730 360.9 51.9 31.0 52.1 0.0 2014-2015
## 1731 351.8 45.1 28.0 78.1 0.0 2014-2015
## 1732 358.3 39.3 22.0 6.0 0.0 2014-2015
## 1733 455.8 42.4 24.0 3.2 0.0 2014-2015
## 1734 454.1 47.3 27.0 3.2 0.0 2014-2015
## 1735 456.8 53.1 33.0 24.6 0.0 2014-2015
## 1736 465.1 47.2 26.0 24.3 0.0 2014-2015
## 1737 460.7 47.5 28.0 3.1 0.0 2014-2015
## 1738 468.4 48.1 28.0 25.6 0.0 2014-2015
## 1739 465.6 46.5 26.0 3.5 0.0 2014-2015
## 1740 470.0 49.9 29.0 3.4 0.0 2014-2015
## 1741 468.4 50.6 28.0 3.6 0.0 2014-2015
## 1742 468.1 46.5 26.0 3.3 0.0 2014-2015
## 1743 459.2 45.9 23.0 50.0 0.0 2014-2015
## 1744 467.9 48.0 25.0 3.6 0.0 2014-2015
## 1745 460.6 52.9 31.0 3.2 0.0 2014-2015
## 1746 472.5 42.3 23.0 24.0 0.0 2014-2015
## 1747 467.5 41.5 23.0 46.4 0.0 2014-2015
## 1748 472.0 48.3 28.0 3.2 0.0 2014-2015
## 1749 473.8 47.5 27.0 3.9 0.0 2014-2015
## 1750 467.5 50.9 29.0 25.0 0.0 2014-2015
## 1751 471.6 47.5 28.0 3.3 0.0 2014-2015
## 1752 477.0 53.2 32.0 3.6 0.0 2014-2015
## 1753 473.6 50.1 27.0 3.5 0.0 2014-2015
## 1754 470.8 44.9 23.0 25.7 0.0 2014-2015
## 1755 481.0 39.9 20.0 3.3 0.0 2014-2015
## 1756 470.2 45.0 25.0 25.3 0.0 2014-2015
## 1757 469.4 49.4 28.0 26.0 0.0 2014-2015
## 1758 462.6 48.2 26.0 25.4 0.0 2014-2015
## 1759 490.5 52.4 29.0 3.4 0.0 2014-2015
## 1760 467.0 49.2 26.0 46.1 0.0 2014-2015
## 1761 481.6 51.4 30.0 3.3 0.0 2014-2015
## 1762 479.4 39.8 18.0 3.7 0.0 2014-2015
## 1763 462.0 57.5 37.0 73.3 0.0 2014-2015
## 1764 477.5 55.4 35.0 27.2 0.0 2014-2015
## 1765 498.8 49.8 28.0 3.0 0.0 2014-2015
## 1766 489.5 47.0 27.0 24.4 0.0 2014-2015
## 1767 475.9 44.9 24.0 25.6 0.0 2014-2015
## 1768 492.7 46.8 25.0 3.5 0.0 2014-2015
## 1769 466.7 53.0 32.0 25.5 0.0 2014-2015
## 1770 487.7 60.9 40.0 3.4 0.0 2014-2015
## 1771 488.3 45.5 25.0 3.7 0.0 2014-2015
## 1772 481.0 48.6 27.0 25.9 0.0 2014-2015
## 1773 485.1 49.9 28.0 26.5 0.0 2014-2015
## 1774 474.9 45.3 24.0 51.4 0.0 2014-2015
## 1775 488.2 53.4 31.0 3.4 0.0 2014-2015
## 1776 477.4 51.4 30.0 48.7 0.0 2014-2015
## 1777 472.0 53.9 34.0 69.3 0.0 2014-2015
## 1778 487.3 45.9 25.0 28.6 0.0 2014-2015
## 1779 488.9 45.9 25.0 26.2 0.0 2014-2015
## 1780 488.5 53.2 31.0 26.8 0.0 2014-2015
## 1781 472.1 55.9 34.0 72.8 0.0 2014-2015
## 1782 480.4 46.3 27.0 71.0 0.0 2014-2015
## 1783 500.0 43.8 23.0 25.8 0.0 2014-2015
## 1784 498.8 43.3 20.0 3.7 0.0 2014-2015
## 1785 484.8 52.3 31.0 26.0 0.0 2014-2015
## 1786 473.7 48.6 26.0 25.6 0.0 2014-2015
## 1787 501.2 46.6 24.0 27.3 0.0 2014-2015
## 1788 491.6 51.8 33.0 25.9 0.0 2014-2015
## 1789 470.8 48.2 26.0 25.6 0.0 2014-2015
## 1790 470.9 53.2 29.0 79.5 0.0 2014-2015
## 1791 502.7 55.3 32.0 3.5 0.0 2014-2015
## 1792 498.4 56.4 32.0 3.5 0.0 2014-2015
## 1793 511.7 49.1 28.0 3.6 0.0 2014-2015
## 1794 495.4 49.2 25.0 27.4 0.0 2014-2015
## 1795 506.3 56.3 35.0 3.5 0.0 2014-2015
## 1796 488.1 50.8 28.0 25.5 0.0 2014-2015
## 1797 486.4 54.6 32.0 53.2 0.0 2014-2015
## 1798 504.5 47.3 24.0 27.4 0.0 2014-2015
## 1799 510.0 54.0 31.0 3.7 0.0 2014-2015
## 1800 472.6 48.0 26.0 72.8 0.0 2014-2015
## 1801 499.0 55.5 34.0 27.3 0.0 2014-2015
## 1802 493.3 50.2 28.0 52.2 0.0 2014-2015
## 1803 506.6 50.2 29.0 52.8 0.0 2014-2015
## 1804 483.3 59.1 35.0 77.9 0.0 2014-2015
## 1805 493.8 55.4 32.0 27.5 0.0 2014-2015
## 1806 508.7 51.4 29.0 51.2 0.0 2014-2015
## 1807 485.1 51.2 30.0 52.1 0.0 2014-2015
## 1808 507.5 59.1 37.0 26.2 0.0 2014-2015
## 1809 485.5 54.5 32.0 49.9 0.0 2014-2015
## 1810 496.0 51.9 29.0 25.7 0.0 2014-2015
## 1811 509.6 46.2 22.0 54.9 0.0 2014-2015
## 1812 510.4 47.5 24.0 27.0 0.0 2014-2015
## 1813 515.0 48.9 25.0 3.8 0.0 2014-2015
## 1814 503.1 52.3 29.0 51.2 0.0 2014-2015
## 1815 505.5 49.1 26.0 3.7 0.0 2014-2015
## 1816 514.6 60.6 40.0 25.5 0.0 2014-2015
## 1817 505.0 49.7 28.0 50.6 0.0 2014-2015
## 1818 493.5 56.3 38.0 50.5 0.0 2014-2015
## 1819 513.2 55.0 31.0 28.1 0.0 2014-2015
## 1820 538.2 49.0 26.0 3.5 0.0 2014-2015
## 1821 494.0 43.1 23.0 26.4 0.0 2014-2015
## 1822 525.8 55.9 32.0 29.6 0.0 2014-2015
## 1823 506.6 47.0 25.0 51.8 0.0 2014-2015
## 1824 529.7 49.8 26.0 55.4 0.0 2014-2015
## 1825 509.1 52.7 31.0 78.1 0.0 2014-2015
## 1826 507.5 53.7 31.0 77.2 0.0 2014-2015
## 1827 537.2 55.3 34.0 3.4 0.0 2014-2015
## 1828 537.9 49.1 26.0 27.8 0.0 2014-2015
## 1829 520.6 62.3 38.0 52.7 0.0 2014-2015
## 1830 534.7 61.6 39.0 3.6 0.0 2014-2015
## 1831 536.5 62.7 40.0 3.7 0.0 2014-2015
## 1832 393.8 43.5 25.0 3.5 0.0 2014-2015
## 1833 393.3 43.5 26.0 3.6 0.0 2014-2015
## 1834 390.3 47.4 29.0 3.2 0.0 2014-2015
## 1835 383.8 42.5 23.0 3.3 0.0 2014-2015
## 1836 386.7 40.3 21.0 3.3 0.0 2014-2015
## 1837 389.4 46.1 29.0 23.0 0.0 2014-2015
## 1838 393.8 44.4 24.0 22.4 0.0 2014-2015
## 1839 395.5 40.0 20.0 23.9 0.0 2014-2015
## 1840 387.5 45.6 26.0 2.8 0.0 2014-2015
## 1841 389.1 45.7 27.0 3.4 0.0 2014-2015
## 1842 388.3 43.1 25.0 23.4 0.0 2014-2015
## 1843 387.1 44.9 25.0 23.4 0.0 2014-2015
## 1844 393.7 52.5 31.0 3.2 0.0 2014-2015
## 1845 395.8 47.8 29.0 3.3 0.0 2014-2015
## 1846 392.9 46.5 27.0 24.2 0.0 2014-2015
## 1847 397.3 44.5 24.0 24.4 0.0 2014-2015
## 1848 407.5 43.0 23.0 3.3 0.0 2014-2015
## 1849 414.2 46.6 27.0 3.2 0.0 2014-2015
## 1850 392.1 46.2 27.0 44.0 0.0 2014-2015
## 1851 395.8 46.4 26.0 63.4 0.0 2014-2015
## 1852 397.7 40.2 22.0 3.3 0.0 2014-2015
## 1853 389.4 46.2 27.0 66.5 0.0 2014-2015
## 1854 397.4 50.9 32.0 45.5 0.0 2014-2015
## 1855 404.5 50.1 31.0 23.0 0.0 2014-2015
## 1856 404.3 44.8 25.0 23.8 0.0 2014-2015
## 1857 399.9 40.5 22.0 24.9 0.0 2014-2015
## 1858 409.9 47.1 27.0 3.2 0.0 2014-2015
## 1859 411.8 43.8 25.0 23.9 0.0 2014-2015
## 1860 403.9 44.8 25.0 67.5 0.0 2014-2015
## 1861 412.0 46.1 27.0 44.0 0.0 2014-2015
## 1862 420.4 44.9 24.0 8.3 0.0 2015-2016
## 1863 424.5 42.6 21.0 8.5 0.0 2015-2016
## 1864 425.2 51.8 32.0 8.4 0.0 2015-2016
## 1865 425.4 45.8 25.0 7.5 0.0 2015-2016
## 1866 420.1 44.9 25.0 27.7 0.0 2015-2016
## 1867 429.4 48.1 27.0 8.3 0.0 2015-2016
## 1868 423.9 49.5 28.0 8.8 0.0 2015-2016
## 1869 416.4 46.0 27.0 28.2 0.0 2015-2016
## 1870 429.1 46.0 26.0 8.3 0.0 2015-2016
## 1871 428.4 47.5 27.0 8.2 0.0 2015-2016
## 1872 423.4 54.7 33.0 8.1 0.0 2015-2016
## 1873 422.7 63.4 38.0 19.7 0.0 2015-2016
## 1874 438.6 52.3 30.0 5.9 0.0 2015-2016
## 1875 421.0 50.7 29.0 27.7 0.0 2015-2016
## 1876 430.2 49.2 28.0 28.4 0.0 2015-2016
## 1877 431.2 54.2 34.0 8.9 0.0 2015-2016
## 1878 434.1 47.1 27.0 27.8 0.0 2015-2016
## 1879 422.3 44.3 24.0 28.1 0.0 2015-2016
## 1880 433.7 41.1 22.0 25.3 0.0 2015-2016
## 1881 430.8 45.5 25.0 28.3 0.0 2015-2016
## 1882 433.0 50.6 30.0 27.3 0.0 2015-2016
## 1883 419.8 44.8 25.0 28.2 0.0 2015-2016
## 1884 431.1 41.2 22.0 8.1 0.0 2015-2016
## 1885 438.5 45.5 25.0 28.1 0.0 2015-2016
## 1886 430.9 52.0 31.0 29.9 0.0 2015-2016
## 1887 437.7 48.9 27.0 9.2 0.0 2015-2016
## 1888 422.8 49.8 29.0 69.4 0.0 2015-2016
## 1889 422.3 46.0 25.0 28.9 0.0 2015-2016
## 1890 426.1 50.2 31.0 47.9 0.0 2015-2016
## 1891 437.5 52.8 30.0 8.6 0.0 2015-2016
## 1892 438.5 41.6 21.0 30.4 0.0 2015-2016
## 1893 427.3 47.3 25.0 50.1 0.0 2015-2016
## 1894 432.9 46.1 23.0 28.7 0.0 2015-2016
## 1895 422.3 54.5 31.0 26.8 0.0 2015-2016
## 1896 430.3 46.4 27.0 28.4 0.0 2015-2016
## 1897 424.3 61.5 41.0 47.1 0.0 2015-2016
## 1898 424.0 56.4 36.0 48.2 0.0 2015-2016
## 1899 429.0 48.5 27.0 50.1 0.0 2015-2016
## 1900 436.0 47.7 26.0 29.4 0.0 2015-2016
## 1901 428.9 51.7 31.0 51.4 0.0 2015-2016
## 1902 431.9 46.2 25.0 8.3 0.0 2015-2016
## 1903 441.8 57.1 35.0 8.6 0.0 2015-2016
## 1904 442.3 48.0 27.0 29.4 0.0 2015-2016
## 1905 436.2 48.2 27.0 29.0 0.0 2015-2016
## 1906 420.9 44.0 23.0 51.0 0.0 2015-2016
## 1907 435.1 50.0 30.0 49.5 0.0 2015-2016
## 1908 429.0 53.6 31.0 52.7 0.0 2015-2016
## 1909 438.5 48.1 27.0 28.4 0.0 2015-2016
## 1910 448.6 48.6 27.0 8.1 0.0 2015-2016
## 1911 442.8 61.9 39.0 29.0 0.0 2015-2016
## 1912 441.5 53.1 31.0 29.3 0.0 2015-2016
## 1913 443.4 53.4 32.0 30.2 0.0 2015-2016
## 1914 445.0 49.7 28.0 31.1 0.0 2015-2016
## 1915 440.4 44.3 24.0 8.1 0.0 2015-2016
## 1916 443.3 48.4 26.0 8.4 0.0 2015-2016
## 1917 437.7 44.9 22.0 30.2 0.0 2015-2016
## 1918 448.3 47.1 24.0 28.8 0.0 2015-2016
## 1919 438.1 46.4 25.0 29.6 0.0 2015-2016
## 1920 444.2 48.2 26.0 8.6 0.0 2015-2016
## 1921 452.9 54.7 30.0 9.1 0.0 2015-2016
## 1922 453.4 46.5 23.0 32.8 0.0 2015-2016
## 1923 427.4 49.8 28.0 29.9 0.0 2015-2016
## 1924 462.8 46.7 24.0 30.1 0.0 2015-2016
## 1925 449.4 51.0 29.0 29.5 0.0 2015-2016
## 1926 446.6 43.2 21.0 28.8 0.0 2015-2016
## 1927 445.5 45.4 24.0 51.3 0.0 2015-2016
## 1928 436.3 54.9 34.0 50.3 0.0 2015-2016
## 1929 462.1 48.4 26.0 8.5 0.0 2015-2016
## 1930 441.8 57.2 34.0 32.0 0.0 2015-2016
## 1931 428.5 55.3 34.0 91.7 0.0 2015-2016
## 1932 454.1 48.7 27.0 29.3 0.0 2015-2016
## 1933 452.9 52.6 29.0 28.9 0.0 2015-2016
## 1934 455.0 55.8 36.0 29.5 0.0 2015-2016
## 1935 453.4 48.6 25.0 29.5 0.0 2015-2016
## 1936 449.7 55.1 33.0 50.3 0.0 2015-2016
## 1937 450.8 54.3 31.0 51.0 0.0 2015-2016
## 1938 432.0 50.4 29.0 74.8 0.0 2015-2016
## 1939 443.6 52.0 31.0 52.6 0.0 2015-2016
## 1940 447.8 46.7 23.0 30.1 0.0 2015-2016
## 1941 428.6 51.1 29.0 74.1 0.0 2015-2016
## 1942 435.3 66.0 45.0 50.9 0.0 2015-2016
## 1943 463.6 45.5 25.0 8.6 0.0 2015-2016
## 1944 455.0 57.6 35.0 9.3 0.0 2015-2016
## 1945 462.8 48.0 27.0 9.3 0.0 2015-2016
## 1946 437.8 47.1 26.0 30.0 0.0 2015-2016
## 1947 456.9 51.4 29.0 31.3 0.0 2015-2016
## 1948 433.8 53.3 30.0 30.8 0.0 2015-2016
## 1949 460.7 52.0 28.0 31.8 0.0 2015-2016
## 1950 437.8 48.1 27.0 75.8 0.0 2015-2016
## 1951 449.3 50.1 29.0 50.1 0.0 2015-2016
## 1952 456.1 50.3 29.0 8.2 0.0 2015-2016
## 1953 448.6 58.0 36.0 29.0 0.0 2015-2016
## 1954 450.2 54.1 31.0 53.5 0.0 2015-2016
## 1955 454.9 48.1 25.0 50.8 0.0 2015-2016
## 1956 456.5 58.5 35.0 30.3 0.0 2015-2016
## 1957 468.1 51.0 27.0 29.8 0.0 2015-2016
## 1958 471.1 50.6 27.0 32.7 0.0 2015-2016
## 1959 456.4 56.9 33.0 77.7 0.0 2015-2016
## 1960 455.1 59.5 38.0 56.9 0.0 2015-2016
## 1961 471.1 51.0 27.0 53.8 0.0 2015-2016
## 1962 479.3 50.2 27.0 32.0 0.0 2015-2016
## 1963 489.4 49.8 28.0 8.8 0.0 2015-2016
## 1964 481.8 51.5 31.0 9.4 0.0 2015-2016
## 1965 472.0 60.6 36.0 54.7 0.0 2015-2016
## 1966 470.8 63.6 39.0 55.3 0.0 2015-2016
## 1967 495.0 70.8 48.0 8.8 0.0 2015-2016
## 1968 333.9 42.6 23.0 27.1 0.0 2015-2016
## 1969 338.4 48.2 29.0 28.7 0.0 2015-2016
## 1970 337.8 41.4 24.0 9.1 0.0 2015-2016
## 1971 329.6 41.9 24.0 8.6 0.0 2015-2016
## 1972 337.6 46.3 27.0 8.6 0.0 2015-2016
## 1973 346.3 43.3 23.0 30.0 0.0 2015-2016
## 1974 331.2 42.2 23.0 8.3 0.0 2015-2016
## 1975 342.6 47.6 29.0 28.4 0.0 2015-2016
## 1976 333.3 45.5 25.0 8.6 0.0 2015-2016
## 1977 330.1 46.4 27.0 28.0 0.0 2015-2016
## 1978 330.1 44.3 25.0 8.1 0.0 2015-2016
## 1979 338.6 49.3 29.0 8.8 0.0 2015-2016
## 1980 336.3 48.0 29.0 8.0 0.0 2015-2016
## 1981 336.4 48.0 26.0 8.2 0.0 2015-2016
## 1982 342.3 46.2 26.0 27.8 0.0 2015-2016
## 1983 331.2 48.2 29.0 28.4 0.0 2015-2016
## 1984 339.3 47.0 27.0 50.1 0.0 2015-2016
## 1985 341.7 42.4 23.0 28.8 0.0 2015-2016
## 1986 343.6 44.5 25.0 27.7 0.0 2015-2016
## 1987 327.3 46.9 27.0 8.0 0.0 2015-2016
## 1988 336.0 47.3 27.0 47.3 0.0 2015-2016
## 1989 338.2 46.4 27.0 28.3 0.0 2015-2016
## 1990 339.9 54.3 34.0 29.5 0.0 2015-2016
## 1991 340.6 49.4 30.0 9.5 0.0 2015-2016
## 1992 336.3 47.6 27.0 47.2 0.0 2015-2016
## 1993 332.1 40.9 21.0 29.5 0.0 2015-2016
## 1994 338.4 50.3 31.0 66.1 0.0 2015-2016
## 1995 339.9 45.8 26.0 30.4 0.0 2015-2016
## 1996 341.4 44.7 25.0 29.6 0.0 2015-2016
## 1997 338.9 42.2 23.0 28.5 0.0 2015-2016
## 1998 342.5 44.7 25.0 30.1 0.0 2015-2016
## 1999 343.2 44.9 25.0 8.8 0.0 2015-2016
## 2000 338.9 46.7 27.0 50.0 0.0 2015-2016
## 2001 349.2 48.9 30.0 48.5 0.0 2015-2016
## 2002 346.9 47.8 27.0 8.7 0.0 2015-2016
## 2003 339.2 44.9 24.0 30.8 0.0 2015-2016
## 2004 337.4 57.5 37.0 51.3 0.0 2015-2016
## 2005 338.8 50.4 30.0 8.8 0.0 2015-2016
## 2006 348.5 46.6 25.0 9.5 0.0 2015-2016
## 2007 346.7 44.5 23.0 30.6 0.0 2015-2016
## 2008 343.2 46.6 25.0 31.4 0.0 2015-2016
## 2009 341.1 47.8 27.0 8.8 0.0 2015-2016
## 2010 340.5 43.4 25.0 30.0 0.0 2015-2016
## 2011 349.7 44.9 25.0 31.5 0.0 2015-2016
## 2012 340.6 41.1 20.0 53.1 0.0 2015-2016
## 2013 339.1 43.7 23.0 29.6 0.0 2015-2016
## 2014 360.7 47.3 25.0 8.7 0.0 2015-2016
## 2015 361.4 44.3 23.0 8.5 0.0 2015-2016
## 2016 350.3 44.1 23.0 29.2 0.0 2015-2016
## 2017 373.2 45.9 24.0 31.8 0.0 2015-2016
## 2018 368.1 53.0 31.0 32.9 0.0 2015-2016
## 2019 361.7 55.9 34.0 74.7 0.0 2015-2016
## 2020 437.5 41.4 NA 8.1 0.0 2015-2016
## 2021 448.2 41.4 NA 7.9 0.0 2015-2016
## 2022 447.3 41.5 NA 8.3 0.0 2015-2016
## 2023 447.4 44.1 NA 27.5 0.0 2015-2016
## 2024 456.8 45.4 NA 26.7 0.0 2015-2016
## 2025 466.3 38.3 NA 7.9 0.0 2015-2016
## 2026 460.5 41.0 NA 9.1 0.0 2015-2016
## 2027 454.0 43.1 NA 7.4 0.0 2015-2016
## 2028 464.7 40.2 NA 8.5 0.0 2015-2016
## 2029 454.4 39.9 NA 27.9 0.0 2015-2016
## 2030 466.1 43.9 NA 9.1 0.0 2015-2016
## 2031 457.3 43.1 NA 30.3 0.0 2015-2016
## 2032 458.5 45.6 NA 8.5 0.0 2015-2016
## 2033 455.2 45.3 NA 29.5 0.0 2015-2016
## 2034 464.0 40.4 NA 28.5 0.0 2015-2016
## 2035 456.9 49.8 NA 28.7 0.0 2015-2016
## 2036 463.1 48.5 NA 8.7 0.0 2015-2016
## 2037 488.7 47.9 NA 27.6 0.0 2015-2016
## 2038 474.2 45.7 NA 9.1 0.0 2015-2016
## 2039 471.9 40.9 NA 8.8 0.0 2015-2016
## 2040 459.1 39.4 NA 50.8 0.0 2015-2016
## 2041 472.2 40.6 NA 9.4 0.0 2015-2016
## 2042 457.3 50.1 NA 47.4 0.0 2015-2016
## 2043 460.2 45.6 NA 50.5 0.0 2015-2016
## 2044 478.4 48.9 NA 9.9 0.0 2015-2016
## 2045 471.1 42.7 NA 8.2 0.0 2015-2016
## 2046 465.0 46.0 NA 27.9 0.0 2015-2016
## 2047 447.8 45.7 NA 30.5 0.0 2015-2016
## 2048 470.9 46.8 NA 29.4 0.0 2015-2016
## 2049 469.2 45.3 NA 9.2 0.0 2015-2016
## 2050 468.7 44.2 NA 8.9 0.0 2015-2016
## 2051 469.3 46.8 NA 8.7 0.0 2015-2016
## 2052 462.6 46.7 NA 29.5 0.0 2015-2016
## 2053 476.1 42.7 NA 8.9 0.0 2015-2016
## 2054 468.5 42.3 NA 28.7 0.0 2015-2016
## 2055 467.5 43.7 NA 28.8 0.0 2015-2016
## 2056 470.7 46.9 NA 29.1 0.0 2015-2016
## 2057 474.4 43.1 NA 27.9 0.0 2015-2016
## 2058 462.5 44.6 NA 49.6 0.0 2015-2016
## 2059 478.6 42.5 NA 29.7 0.0 2015-2016
## 2060 465.2 45.2 NA 48.4 0.0 2015-2016
## 2061 473.7 47.1 NA 30.5 0.0 2015-2016
## 2062 469.2 52.1 NA 28.5 0.0 2015-2016
## 2063 493.9 38.7 NA 9.3 0.0 2015-2016
## 2064 456.9 45.2 NA 50.1 0.0 2015-2016
## 2065 458.1 41.6 NA 72.0 0.0 2015-2016
## 2066 471.3 45.0 NA 31.1 0.0 2015-2016
## 2067 474.2 45.3 NA 31.0 0.0 2015-2016
## 2068 474.6 47.3 NA 29.5 0.0 2015-2016
## 2069 470.2 46.7 NA 52.2 0.0 2015-2016
## 2070 478.5 46.0 NA 31.9 0.0 2015-2016
## 2071 482.9 44.5 NA 29.9 0.0 2015-2016
## 2072 489.1 43.0 NA 30.8 0.0 2015-2016
## 2073 476.6 49.4 NA 32.2 0.0 2015-2016
## 2074 470.8 48.9 NA 8.8 0.0 2015-2016
## 2075 470.9 44.4 NA 50.1 0.0 2015-2016
## 2076 482.3 48.4 NA 31.6 0.0 2015-2016
## 2077 491.7 47.6 NA 49.9 0.0 2015-2016
## 2078 501.3 48.9 NA 9.8 0.0 2015-2016
## 2079 481.9 45.9 NA 9.0 0.0 2015-2016
## 2080 480.3 43.9 NA 32.4 0.0 2015-2016
## 2081 471.5 47.5 NA 29.6 0.0 2015-2016
## 2082 490.1 49.8 NA 50.7 0.0 2015-2016
## 2083 488.4 43.5 NA 9.1 0.0 2015-2016
## 2084 494.6 44.0 NA 8.3 0.0 2015-2016
## 2085 464.5 52.1 NA 97.7 0.0 2015-2016
## 2086 506.7 44.7 NA 9.6 0.0 2015-2016
## 2087 487.2 42.7 NA 31.2 0.0 2015-2016
## 2088 502.4 42.3 NA 9.4 0.0 2015-2016
## 2089 488.1 50.3 NA 56.9 0.0 2015-2016
## 2090 501.6 44.2 NA 33.1 0.0 2015-2016
## 2091 490.9 45.5 NA 33.0 0.0 2015-2016
## 2092 493.7 47.8 NA 31.8 0.0 2015-2016
## 2093 493.4 49.5 NA 56.0 0.0 2015-2016
## 2094 480.3 47.0 NA 53.3 0.0 2015-2016
## 2095 493.8 47.8 NA 31.3 0.0 2015-2016
## 2096 487.4 43.3 NA 55.1 0.0 2015-2016
## 2097 489.7 60.9 NA 56.2 0.0 2015-2016
## 2098 486.6 79.8 NA 55.5 0.0 2015-2016
## 2099 515.2 46.7 NA 32.3 0.0 2015-2016
## 2100 517.3 48.3 NA 32.8 0.0 2015-2016
## 2101 511.9 48.1 NA 58.2 0.0 2015-2016
## 2102 521.5 50.4 NA 10.5 0.0 2015-2016
## 2103 484.1 60.5 NA 98.8 0.0 2015-2016
## 2104 527.5 47.8 NA 9.5 0.0 2015-2016
## 2105 523.3 60.3 NA 60.8 0.0 2015-2016
## 2106 548.1 50.4 NA 67.1 0.0 2015-2016
## 2107 433.2 41.2 24.1 27.9 0.0 2015-2016
## 2108 433.3 44.9 28.3 31.1 0.0 2015-2016
## 2109 433.3 40.7 26.0 34.0 0.0 2015-2016
## 2110 438.8 45.9 27.6 32.0 0.0 2015-2016
## 2111 431.2 49.3 31.6 30.2 0.0 2015-2016
## 2112 424.4 40.4 39.6 31.3 0.0 2015-2016
## 2113 438.1 47.7 47.2 30.3 0.0 2015-2016
## 2114 437.6 45.1 25.4 31.1 0.0 2015-2016
## 2115 450.9 42.5 22.7 9.8 0.0 2015-2016
## 2116 454.3 45.9 25.0 8.9 0.0 2015-2016
## 2117 442.6 43.2 23.4 9.5 0.0 2015-2016
## 2118 433.1 45.0 25.8 53.4 0.0 2015-2016
## 2119 437.7 45.2 25.2 32.8 0.0 2015-2016
## 2120 443.8 44.3 24.5 33.1 0.0 2015-2016
## 2121 431.0 42.3 22.1 53.9 0.0 2015-2016
## 2122 449.2 41.8 24.5 32.5 0.0 2015-2016
## 2123 433.9 45.2 20.4 55.9 0.0 2015-2016
## 2124 442.4 45.5 26.8 32.1 0.0 2015-2016
## 2125 456.2 37.8 19.8 9.3 0.0 2015-2016
## 2126 454.6 45.3 25.8 32.1 0.0 2015-2016
## 2127 447.6 43.4 25.4 53.2 0.0 2015-2016
## 2128 437.7 47.5 29.1 9.4 0.0 2015-2016
## 2129 456.3 48.0 26.8 32.4 0.0 2015-2016
## 2130 458.1 44.4 22.8 33.5 0.0 2015-2016
## 2131 450.6 45.7 26.3 54.9 0.0 2015-2016
## 2132 447.6 55.9 38.0 31.5 0.0 2015-2016
## 2133 462.6 41.8 23.6 9.6 0.0 2015-2016
## 2134 467.2 49.2 30.4 57.3 0.0 2015-2016
## 2135 478.2 42.5 24.0 10.2 0.0 2015-2016
## 2136 457.8 46.7 28.3 59.2 0.0 2015-2016
## 2137 453.9 49.5 26.0 4.7 0.0 2015-2016
## 2138 442.2 48.2 26.0 4.5 0.0 2015-2016
## 2139 453.8 47.0 25.0 4.7 0.0 2015-2016
## 2140 447.6 46.6 24.0 4.5 0.0 2015-2016
## 2141 460.7 46.5 22.0 4.8 0.0 2015-2016
## 2142 456.8 45.3 22.0 4.8 0.0 2015-2016
## 2143 459.4 46.6 23.0 26.5 0.0 2015-2016
## 2144 457.2 48.8 26.0 26.8 0.0 2015-2016
## 2145 462.5 55.8 31.0 4.6 0.0 2015-2016
## 2146 452.2 47.9 23.0 5.4 0.0 2015-2016
## 2147 448.2 43.7 20.0 25.5 0.0 2015-2016
## 2148 462.0 48.8 23.0 4.9 0.0 2015-2016
## 2149 452.7 54.4 30.0 27.0 0.0 2015-2016
## 2150 457.4 46.1 22.0 26.8 0.0 2015-2016
## 2151 462.5 55.3 32.0 4.7 0.0 2015-2016
## 2152 455.5 50.2 27.0 26.1 0.0 2015-2016
## 2153 460.4 51.5 27.0 5.0 0.0 2015-2016
## 2154 458.9 45.4 22.0 26.3 0.0 2015-2016
## 2155 461.4 46.3 23.0 5.0 0.0 2015-2016
## 2156 460.9 47.0 24.0 5.0 0.0 2015-2016
## 2157 462.5 49.5 27.0 4.7 0.0 2015-2016
## 2158 455.3 49.3 25.0 25.9 0.0 2015-2016
## 2159 460.2 56.4 34.0 25.0 0.0 2015-2016
## 2160 465.9 47.9 25.0 5.0 0.0 2015-2016
## 2161 457.5 48.5 25.0 26.7 0.0 2015-2016
## 2162 460.2 49.9 25.0 48.1 0.0 2015-2016
## 2163 459.7 49.9 27.0 45.7 0.0 2015-2016
## 2164 467.6 51.2 28.0 27.4 0.0 2015-2016
## 2165 468.5 50.0 25.0 5.0 0.0 2015-2016
## 2166 458.8 46.8 23.0 46.2 0.0 2015-2016
## 2167 479.3 51.2 27.0 4.4 0.0 2015-2016
## 2168 463.4 50.7 26.0 50.7 0.0 2015-2016
## 2169 481.1 51.9 26.0 4.6 0.0 2015-2016
## 2170 463.3 52.9 29.0 26.7 0.0 2015-2016
## 2171 465.5 48.0 25.0 26.9 0.0 2015-2016
## 2172 456.4 56.0 31.0 46.8 0.0 2015-2016
## 2173 471.5 52.8 28.0 46.8 0.0 2015-2016
## 2174 470.8 48.0 23.0 5.0 0.0 2015-2016
## 2175 467.4 53.3 30.0 26.3 0.0 2015-2016
## 2176 458.5 49.2 25.0 50.1 0.0 2015-2016
## 2177 464.6 53.0 29.0 50.4 0.0 2015-2016
## 2178 461.1 51.3 29.0 25.0 0.0 2015-2016
## 2179 464.2 56.6 33.0 50.4 0.0 2015-2016
## 2180 463.4 56.6 31.0 26.2 0.0 2015-2016
## 2181 462.3 54.7 30.0 51.6 0.0 2015-2016
## 2182 478.5 51.5 27.0 28.1 0.0 2015-2016
## 2183 466.2 53.5 28.0 28.1 0.0 2015-2016
## 2184 483.6 46.1 22.0 5.1 0.0 2015-2016
## 2185 475.5 57.0 34.0 27.1 0.0 2015-2016
## 2186 474.7 50.5 26.0 26.7 0.0 2015-2016
## 2187 475.7 49.5 25.0 4.9 0.0 2015-2016
## 2188 477.4 54.9 29.0 26.4 0.0 2015-2016
## 2189 484.7 49.7 25.0 5.7 0.0 2015-2016
## 2190 476.5 52.5 27.0 27.4 0.0 2015-2016
## 2191 471.5 49.9 27.0 48.9 0.0 2015-2016
## 2192 465.5 51.7 27.0 27.6 0.0 2015-2016
## 2193 477.6 55.3 32.0 4.9 0.0 2015-2016
## 2194 471.8 50.3 25.0 48.9 0.0 2015-2016
## 2195 473.5 61.9 35.0 5.3 0.0 2015-2016
## 2196 479.8 54.1 28.0 27.3 0.0 2015-2016
## 2197 469.1 54.3 32.0 46.3 0.0 2015-2016
## 2198 472.4 62.3 37.0 27.3 0.0 2015-2016
## 2199 469.8 52.5 29.0 28.1 0.0 2015-2016
## 2200 475.3 51.4 25.0 48.4 0.0 2015-2016
## 2201 477.9 61.2 34.0 29.8 0.0 2015-2016
## 2202 466.6 52.9 26.0 27.4 0.0 2015-2016
## 2203 478.4 51.7 27.0 49.6 0.0 2015-2016
## 2204 476.5 57.0 33.0 28.9 0.0 2015-2016
## 2205 473.0 58.0 31.0 27.9 0.0 2015-2016
## 2206 470.0 54.7 29.0 74.4 0.0 2015-2016
## 2207 482.6 57.8 33.0 26.7 0.0 2015-2016
## 2208 457.4 65.2 42.0 70.9 0.0 2015-2016
## 2209 471.9 57.6 34.0 4.6 0.0 2015-2016
## 2210 490.0 56.9 31.0 29.1 0.0 2015-2016
## 2211 464.2 60.9 37.0 49.2 0.0 2015-2016
## 2212 462.7 52.6 27.0 70.8 0.0 2015-2016
## 2213 465.9 55.0 30.0 75.0 0.0 2015-2016
## 2214 477.6 58.7 32.0 49.6 0.0 2015-2016
## 2215 484.3 52.7 27.0 52.0 0.0 2015-2016
## 2216 469.4 54.8 29.0 49.2 0.0 2015-2016
## 2217 487.8 53.9 27.0 54.0 0.0 2015-2016
## 2218 477.4 57.4 33.0 28.7 0.0 2015-2016
## 2219 472.5 52.0 27.0 75.5 0.0 2015-2016
## 2220 484.0 50.6 25.0 53.8 0.0 2015-2016
## 2221 465.5 53.9 29.0 52.1 0.0 2015-2016
## 2222 480.6 52.1 28.0 51.9 0.0 2015-2016
## 2223 470.6 49.3 27.0 28.1 0.0 2015-2016
## 2224 478.2 58.3 32.0 75.6 0.0 2015-2016
## 2225 478.6 53.0 28.0 27.8 0.0 2015-2016
## 2226 480.1 47.2 23.0 26.4 0.0 2015-2016
## 2227 480.1 55.4 30.0 51.7 0.0 2015-2016
## 2228 496.6 58.2 33.0 50.7 0.0 2015-2016
## 2229 480.4 56.1 29.0 73.1 0.0 2015-2016
## 2230 494.9 62.5 37.0 28.8 0.0 2015-2016
## 2231 492.0 52.5 27.0 28.2 0.0 2015-2016
## 2232 486.2 54.5 27.0 52.2 0.0 2015-2016
## 2233 486.1 68.9 42.0 50.0 0.0 2015-2016
## 2234 495.7 55.1 30.0 27.0 0.0 2015-2016
## 2235 485.2 47.3 21.0 78.2 0.0 2015-2016
## 2236 494.1 50.1 24.0 29.6 0.0 2015-2016
## 2237 499.5 56.1 29.0 31.2 0.0 2015-2016
## 2238 489.7 54.9 28.0 51.3 0.0 2015-2016
## 2239 481.3 68.6 41.0 28.6 0.0 2015-2016
## 2240 498.7 52.6 27.0 55.9 0.0 2015-2016
## 2241 498.1 81.4 54.0 74.2 0.0 2015-2016
## 2242 502.8 59.2 33.0 74.3 0.0 2015-2016
## 2243 496.1 54.2 25.0 31.3 0.0 2015-2016
## 2244 549.7 56.2 30.0 80.7 0.0 2015-2016
## 2245 330.4 42.9 20.0 5.7 0.0 2015-2016
## 2246 335.4 47.9 25.0 5.1 0.0 2015-2016
## 2247 330.2 46.9 24.0 5.0 0.0 2015-2016
## 2248 330.3 47.0 23.0 26.1 0.0 2015-2016
## 2249 328.1 50.1 25.0 5.4 0.0 2015-2016
## 2250 334.0 48.1 25.0 26.6 0.0 2015-2016
## 2251 332.8 52.3 30.0 27.4 0.0 2015-2016
## 2252 333.8 44.0 21.0 5.2 0.0 2015-2016
## 2253 343.3 49.5 26.0 4.8 0.0 2015-2016
## 2254 332.7 48.5 26.0 25.1 0.0 2015-2016
## 2255 337.0 49.0 25.0 5.2 0.0 2015-2016
## 2256 336.5 45.5 21.0 49.1 0.0 2015-2016
## 2257 339.1 51.0 24.0 5.0 0.0 2015-2016
## 2258 336.6 48.7 27.0 27.8 0.0 2015-2016
## 2259 340.1 46.5 24.0 4.9 0.0 2015-2016
## 2260 336.5 46.0 22.0 27.0 0.0 2015-2016
## 2261 339.2 53.3 29.0 27.1 0.0 2015-2016
## 2262 332.2 45.5 25.0 49.5 0.0 2015-2016
## 2263 335.1 57.3 34.0 47.8 0.0 2015-2016
## 2264 341.0 48.4 27.0 4.7 0.0 2015-2016
## 2265 342.9 52.8 33.0 4.3 0.0 2015-2016
## 2266 348.4 48.4 28.0 4.5 0.0 2015-2016
## 2267 336.3 45.6 23.0 49.9 0.0 2015-2016
## 2268 337.5 49.7 30.0 4.9 0.0 2015-2016
## 2269 346.2 49.3 29.0 4.5 0.0 2015-2016
## 2270 341.8 62.8 38.0 25.9 0.0 2015-2016
## 2271 340.5 49.2 26.0 47.9 0.0 2015-2016
## 2272 338.8 49.7 28.0 5.7 0.0 2015-2016
## 2273 333.2 48.3 28.0 26.2 0.0 2015-2016
## 2274 334.6 49.5 27.0 88.1 0.0 2015-2016
## 2275 345.9 46.6 26.0 50.2 0.0 2015-2016
## 2276 347.0 47.4 27.0 48.1 0.0 2015-2016
## 2277 352.9 60.1 36.0 5.4 0.0 2015-2016
## 2278 345.6 51.9 27.0 5.5 0.0 2015-2016
## 2279 339.2 48.3 24.0 51.3 0.0 2015-2016
## 2280 349.5 47.9 23.0 4.9 0.0 2015-2016
## 2281 349.1 49.8 28.0 51.4 0.0 2015-2016
## 2282 340.0 51.1 26.0 27.1 0.0 2015-2016
## 2283 349.5 53.3 29.0 4.9 0.0 2015-2016
## 2284 342.8 48.4 24.0 26.2 0.0 2015-2016
## 2285 355.3 51.9 27.0 27.5 0.0 2015-2016
## 2286 353.5 54.6 30.0 4.6 0.0 2015-2016
## 2287 343.0 47.6 23.0 46.6 0.0 2015-2016
## 2288 354.7 49.4 26.0 53.7 0.0 2015-2016
## 2289 351.1 49.1 26.0 4.7 0.0 2015-2016
## 2290 356.4 48.6 26.0 4.4 0.0 2015-2016
## 2291 348.9 50.2 24.0 28.0 0.0 2015-2016
## 2292 348.7 54.0 31.0 50.3 0.0 2015-2016
## 2293 350.5 52.0 26.0 50.2 0.0 2015-2016
## 2294 349.9 52.0 30.0 29.6 0.0 2015-2016
## 2295 354.2 51.5 32.0 28.1 0.0 2015-2016
## 2296 359.9 42.6 20.0 29.8 0.0 2015-2016
## 2297 356.7 48.2 25.0 27.8 0.0 2015-2016
## 2298 354.6 55.2 30.0 77.8 0.0 2015-2016
## 2299 367.6 52.8 29.0 29.2 0.0 2015-2016
## 2300 371.9 48.2 24.0 55.0 0.0 2015-2016
## 2301 359.9 52.2 29.0 28.9 0.0 2015-2016
## 2302 369.1 53.7 31.0 31.4 0.0 2015-2016
## 2303 369.8 53.0 30.0 86.0 0.0 2015-2016
## 2304 466.4 41.1 24.8 7.1 0.0 2015-2016
## 2305 457.5 40.2 24.9 6.9 0.0 2015-2016
## 2306 472.9 44.8 25.9 7.1 0.0 2015-2016
## 2307 466.9 50.3 33.9 7.2 0.0 2015-2016
## 2308 473.7 47.5 30.4 6.9 0.0 2015-2016
## 2309 471.3 48.0 30.6 28.2 0.0 2015-2016
## 2310 471.3 41.5 25.3 7.3 0.0 2015-2016
## 2311 472.3 45.3 27.9 28.6 0.0 2015-2016
## 2312 464.4 55.2 39.1 27.6 0.0 2015-2016
## 2313 477.4 40.1 25.2 26.7 0.0 2015-2016
## 2314 469.5 46.8 27.3 30.3 0.0 2015-2016
## 2315 472.3 47.2 29.4 7.2 0.0 2015-2016
## 2316 481.6 52.7 35.2 7.9 0.0 2015-2016
## 2317 475.2 43.2 25.8 29.3 0.0 2015-2016
## 2318 467.0 44.0 29.0 50.8 0.0 2015-2016
## 2319 490.6 41.5 24.4 6.5 0.0 2015-2016
## 2320 463.0 46.6 30.2 27.6 0.0 2015-2016
## 2321 485.0 45.1 25.4 7.5 0.0 2015-2016
## 2322 489.3 47.7 30.3 28.1 0.0 2015-2016
## 2323 483.7 44.1 25.8 7.6 0.0 2015-2016
## 2324 466.8 45.9 27.0 6.9 0.0 2015-2016
## 2325 481.7 44.3 26.0 28.8 0.0 2015-2016
## 2326 466.0 47.9 29.2 50.6 0.0 2015-2016
## 2327 494.5 39.9 22.1 31.2 0.0 2015-2016
## 2328 479.8 44.6 27.0 29.5 0.0 2015-2016
## 2329 479.8 43.0 25.8 50.8 0.0 2015-2016
## 2330 477.1 52.3 32.5 30.6 0.0 2015-2016
## 2331 485.2 51.6 34.7 28.9 0.0 2015-2016
## 2332 479.6 41.3 22.9 7.9 0.0 2015-2016
## 2333 492.0 48.3 31.8 7.2 0.0 2015-2016
## 2334 478.8 46.9 27.6 29.4 0.0 2015-2016
## 2335 492.7 46.0 28.3 6.6 0.0 2015-2016
## 2336 494.9 45.7 28.6 6.4 0.0 2015-2016
## 2337 485.8 40.9 24.4 53.1 0.0 2015-2016
## 2338 480.7 43.9 26.3 50.3 0.0 2015-2016
## 2339 478.7 49.3 28.7 52.6 0.0 2015-2016
## 2340 495.2 46.0 29.5 28.7 0.0 2015-2016
## 2341 478.7 41.8 25.1 28.5 0.0 2015-2016
## 2342 479.5 50.1 32.2 28.7 0.0 2015-2016
## 2343 473.3 39.4 20.2 29.6 0.0 2015-2016
## 2344 488.2 38.1 23.1 30.0 0.0 2015-2016
## 2345 477.1 47.8 30.3 53.9 0.0 2015-2016
## 2346 480.4 46.4 27.3 30.4 0.0 2015-2016
## 2347 492.6 44.7 26.2 53.5 0.0 2015-2016
## 2348 492.7 44.8 25.9 30.6 0.0 2015-2016
## 2349 484.3 46.5 27.8 52.7 0.0 2015-2016
## 2350 485.0 52.6 34.8 48.9 0.0 2015-2016
## 2351 483.0 45.1 27.1 52.6 0.0 2015-2016
## 2352 506.9 46.8 27.8 7.3 0.0 2015-2016
## 2353 508.2 49.4 30.2 8.1 0.0 2015-2016
## 2354 490.3 52.4 34.9 50.4 0.0 2015-2016
## 2355 510.8 52.3 33.7 7.4 0.0 2015-2016
## 2356 493.3 43.6 25.7 30.4 0.0 2015-2016
## 2357 492.6 51.5 32.4 54.0 0.0 2015-2016
## 2358 475.8 41.5 24.3 51.0 0.0 2015-2016
## 2359 489.0 46.1 28.8 52.9 0.0 2015-2016
## 2360 499.2 45.7 26.6 7.7 0.0 2015-2016
## 2361 497.2 39.5 23.1 7.8 0.0 2015-2016
## 2362 514.6 50.6 31.0 8.2 0.0 2015-2016
## 2363 486.5 45.9 26.3 52.7 0.0 2015-2016
## 2364 510.9 48.7 29.5 8.3 0.0 2015-2016
## 2365 505.4 52.3 31.5 30.8 0.0 2015-2016
## 2366 501.8 46.5 27.1 31.4 0.0 2015-2016
## 2367 514.8 46.4 27.6 7.5 0.0 2015-2016
## 2368 492.7 53.5 35.2 78.9 0.0 2015-2016
## 2369 514.6 45.6 28.5 30.9 0.0 2015-2016
## 2370 499.2 47.2 28.2 54.1 0.0 2015-2016
## 2371 509.2 51.3 31.8 29.6 0.0 2015-2016
## 2372 498.2 44.3 26.8 29.2 0.0 2015-2016
## 2373 498.8 43.5 25.1 54.1 0.0 2015-2016
## 2374 517.2 55.0 35.0 30.7 0.0 2015-2016
## 2375 488.4 48.6 30.0 77.1 0.0 2015-2016
## 2376 502.3 55.2 35.0 57.7 0.0 2015-2016
## 2377 491.5 52.9 33.3 79.2 0.0 2015-2016
## 2378 488.5 48.9 31.3 75.3 0.0 2015-2016
## 2379 488.2 45.6 23.6 79.5 0.0 2015-2016
## 2380 508.7 49.1 29.5 57.5 0.0 2015-2016
## 2381 511.4 45.2 25.3 30.6 0.0 2015-2016
## 2382 523.8 39.3 19.4 32.4 0.0 2015-2016
## 2383 519.8 50.0 31.3 57.8 0.0 2015-2016
## 2384 515.7 47.0 28.3 34.7 0.0 2015-2016
## 2385 541.0 51.0 32.4 33.7 0.0 2015-2016
## 2386 516.9 55.5 36.5 80.3 0.0 2015-2016
## 2387 563.6 53.8 32.4 8.3 0.0 2015-2016
## 2388 360.8 45.9 27.8 28.1 0.0 2015-2016
## 2389 360.5 41.3 23.9 29.9 0.0 2015-2016
## 2390 361.0 43.5 25.7 31.0 0.0 2015-2016
## 2391 360.6 49.9 32.2 7.5 0.0 2015-2016
## 2392 357.0 44.2 28.1 7.0 0.0 2015-2016
## 2393 363.1 46.3 29.3 27.4 0.0 2015-2016
## 2394 360.7 46.1 28.8 7.2 0.0 2015-2016
## 2395 362.0 47.7 30.4 52.2 0.0 2015-2016
## 2396 358.4 44.1 26.5 51.1 0.0 2015-2016
## 2397 362.3 50.8 36.3 7.1 0.0 2015-2016
## 2398 358.4 38.2 21.6 7.3 0.0 2015-2016
## 2399 358.7 41.6 25.2 29.3 0.0 2015-2016
## 2400 366.2 53.4 35.2 28.4 0.0 2015-2016
## 2401 359.7 39.1 21.5 7.5 0.0 2015-2016
## 2402 374.2 42.8 26.7 7.4 0.0 2015-2016
## 2403 363.7 46.0 27.6 29.1 0.0 2015-2016
## 2404 365.6 44.7 29.8 7.0 0.0 2015-2016
## 2405 353.7 39.7 24.0 50.8 0.0 2015-2016
## 2406 368.0 46.4 27.8 32.1 0.0 2015-2016
## 2407 360.6 44.0 31.1 29.6 0.0 2015-2016
## 2408 367.6 42.9 28.1 6.9 0.0 2015-2016
## 2409 377.9 43.5 26.9 7.3 0.0 2015-2016
## 2410 369.6 43.1 26.7 6.7 0.0 2015-2016
## 2411 369.6 39.9 25.2 30.9 0.0 2015-2016
## 2412 366.0 41.7 25.3 29.8 0.0 2015-2016
## 2413 367.1 50.0 31.0 30.3 0.0 2015-2016
## 2414 359.2 50.2 32.7 7.4 0.0 2015-2016
## 2415 374.0 46.8 29.8 8.3 0.0 2015-2016
## 2416 366.5 43.6 26.9 53.0 0.0 2015-2016
## 2417 385.1 43.3 25.2 30.9 0.0 2015-2016
## 2418 375.2 38.7 21.7 32.4 0.0 2015-2016
## 2419 362.1 43.9 24.1 31.4 0.0 2015-2016
## 2420 364.0 40.9 22.4 7.3 0.0 2015-2016
## 2421 361.3 48.5 30.7 30.3 0.0 2015-2016
## 2422 370.0 40.9 23.1 8.4 0.0 2015-2016
## 2423 377.9 44.0 26.7 30.7 0.0 2015-2016
## 2424 370.3 48.7 29.0 53.4 0.0 2015-2016
## 2425 365.2 43.9 26.2 54.1 0.0 2015-2016
## 2426 376.3 45.5 27.0 32.2 0.0 2015-2016
## 2427 371.2 42.1 25.2 7.7 0.0 2015-2016
## 2428 369.1 48.7 30.2 31.4 0.0 2015-2016
## 2429 383.0 47.9 30.4 7.3 0.0 2015-2016
## 2430 364.6 45.2 27.8 29.2 0.0 2015-2016
## 2431 391.3 44.1 28.3 7.5 0.0 2015-2016
## 2432 368.2 48.3 29.1 54.0 0.0 2015-2016
## 2433 372.9 40.7 23.2 29.2 0.0 2015-2016
## 2434 368.0 46.2 29.5 80.5 0.0 2015-2016
## 2435 388.9 44.4 25.4 7.5 0.0 2015-2016
## 2436 383.3 45.3 32.1 7.4 0.0 2015-2016
## 2437 392.4 42.7 24.6 7.6 0.0 2015-2016
## 2438 383.3 49.1 36.0 52.7 0.0 2015-2016
## 2439 400.8 48.1 30.0 31.6 0.0 2015-2016
## 2440 396.4 42.9 25.3 57.8 0.0 2015-2016
## 2441 435.8 43.6 24.4 28.0 0.0 2015-2016
## 2442 456.4 57.1 39.4 27.0 0.0 2015-2016
## 2443 453.0 49.4 30.1 27.5 0.0 2015-2016
## 2444 454.7 47.4 27.7 29.1 0.0 2015-2016
## 2445 450.1 52.5 33.1 74.9 0.0 2015-2016
## 2446 454.2 61.4 41.7 29.4 0.0 2015-2016
## 2447 451.5 74.1 55.2 50.8 0.0 2015-2016
## 2448 455.0 57.0 35.8 52.5 0.0 2015-2016
## 2449 470.1 59.0 39.6 27.7 0.0 2015-2016
## 2450 467.6 71.2 52.3 6.2 0.0 2015-2016
## 2451 467.7 55.7 36.5 53.1 0.0 2015-2016
## 2452 459.0 62.7 42.2 52.8 0.0 2015-2016
## 2453 469.0 58.7 42.1 28.5 0.0 2015-2016
## 2454 470.7 75.9 53.9 29.4 0.0 2015-2016
## 2455 469.0 62.3 42.4 55.9 0.0 2015-2016
## 2456 470.0 76.2 55.3 28.2 0.0 2015-2016
## 2457 468.2 63.7 44.5 28.5 0.0 2015-2016
## 2458 448.6 66.9 47.2 77.7 0.0 2015-2016
## 2459 464.7 73.5 53.4 51.0 0.0 2015-2016
## 2460 460.8 68.3 48.1 54.2 0.0 2015-2016
## 2461 457.6 57.0 40.4 27.6 0.0 2015-2016
## 2462 464.2 51.8 32.2 78.6 0.0 2015-2016
## 2463 480.5 53.9 36.9 28.9 0.0 2015-2016
## 2464 461.5 59.0 39.7 27.8 0.0 2015-2016
## 2465 476.6 50.7 30.4 53.9 0.0 2015-2016
## 2466 473.3 69.0 49.1 52.7 0.0 2015-2016
## 2467 454.7 142.2 125.6 27.6 0.0 2015-2016
## 2468 474.0 74.0 53.6 50.3 0.0 2015-2016
## 2469 443.0 88.0 69.9 99.2 0.0 2015-2016
## 2470 462.9 57.3 37.7 53.4 0.0 2015-2016
## 2471 446.1 70.7 50.9 75.9 0.0 2015-2016
## 2472 458.9 97.0 76.8 27.7 0.0 2015-2016
## 2473 492.2 50.8 33.3 5.9 0.0 2015-2016
## 2474 459.9 52.9 34.8 74.6 0.0 2015-2016
## 2475 472.3 47.7 34.0 78.1 0.0 2015-2016
## 2476 478.4 47.1 26.4 54.3 0.0 2015-2016
## 2477 484.8 56.2 35.1 54.7 0.0 2015-2016
## 2478 464.6 76.4 58.5 76.5 0.0 2015-2016
## 2479 474.2 61.9 42.8 78.8 0.0 2015-2016
## 2480 459.6 99.5 81.3 77.4 0.0 2015-2016
## 2481 468.2 56.3 38.1 54.5 0.0 2015-2016
## 2482 465.7 62.6 42.4 55.5 0.0 2015-2016
## 2483 458.5 65.5 45.7 28.6 0.0 2015-2016
## 2484 472.6 87.1 69.1 53.3 0.0 2015-2016
## 2485 469.0 70.6 51.8 77.6 0.0 2015-2016
## 2486 488.9 64.8 44.2 55.3 0.0 2015-2016
## 2487 462.8 54.8 38.0 53.2 0.0 2015-2016
## 2488 463.9 67.8 46.9 78.4 0.0 2015-2016
## 2489 456.3 59.6 40.1 101.0 0.0 2015-2016
## 2490 466.4 88.1 68.2 28.7 0.0 2015-2016
## 2491 473.1 67.4 46.7 54.0 0.0 2015-2016
## 2492 467.8 91.8 72.2 52.5 0.0 2015-2016
## 2493 450.3 66.2 46.9 130.8 0.0 2015-2016
## 2494 472.0 82.5 63.0 52.9 0.0 2015-2016
## 2495 471.7 53.2 33.7 76.8 0.0 2015-2016
## 2496 473.7 68.9 49.5 77.2 0.0 2015-2016
## 2497 463.8 55.0 34.8 80.3 0.0 2015-2016
## 2498 467.6 47.4 27.1 80.9 0.0 2015-2016
## 2499 477.7 62.8 44.8 54.9 0.0 2015-2016
## 2500 498.8 54.4 34.6 5.5 0.0 2015-2016
## 2501 466.9 75.4 55.6 82.5 0.0 2015-2016
## 2502 470.1 107.1 86.9 83.8 0.0 2015-2016
## 2503 487.7 69.5 49.9 54.6 0.0 2015-2016
## 2504 479.1 77.7 57.3 57.5 0.0 2015-2016
## 2505 478.8 64.0 43.7 28.9 0.0 2015-2016
## 2506 480.3 52.8 33.3 84.5 0.0 2015-2016
## 2507 475.3 74.5 56.8 52.8 0.0 2015-2016
## 2508 471.2 55.2 34.5 129.7 0.0 2015-2016
## 2509 472.8 72.4 53.5 55.4 0.0 2015-2016
## 2510 480.1 65.1 45.7 81.5 0.0 2015-2016
## 2511 476.5 110.0 92.1 101.2 0.0 2015-2016
## 2512 488.3 75.5 57.9 81.0 0.0 2015-2016
## 2513 468.5 77.1 59.4 123.6 0.0 2015-2016
## 2514 482.7 75.6 52.8 81.0 0.0 2015-2016
## 2515 471.5 66.6 47.5 107.8 0.0 2015-2016
## 2516 459.2 62.2 41.7 103.9 0.0 2015-2016
## 2517 451.7 75.1 56.1 104.0 0.0 2015-2016
## 2518 466.3 71.0 50.5 86.3 0.0 2015-2016
## 2519 493.7 65.1 42.4 82.9 0.0 2015-2016
## 2520 472.0 73.4 53.6 109.4 0.0 2015-2016
## 2521 510.7 51.1 28.8 33.7 0.0 2015-2016
## 2522 494.1 57.4 33.9 59.3 0.0 2015-2016
## 2523 477.2 100.8 80.8 107.0 0.0 2015-2016
## 2524 498.6 69.1 48.2 84.4 0.0 2015-2016
## 2525 481.8 72.8 54.1 106.2 0.0 2015-2016
## 2526 493.2 82.1 62.5 106.8 0.0 2015-2016
## 2527 498.1 49.8 28.3 56.2 0.0 2015-2016
## 2528 485.1 70.4 49.4 108.3 0.0 2015-2016
## 2529 502.3 55.2 32.7 82.1 0.0 2015-2016
## 2530 512.0 46.4 25.6 85.8 0.0 2015-2016
## 2531 514.7 57.4 34.3 61.2 0.0 2015-2016
## 2532 484.2 102.7 82.0 82.0 0.0 2015-2016
## 2533 494.6 51.5 32.5 86.7 0.0 2015-2016
## 2534 503.9 66.5 44.9 111.5 0.0 2015-2016
## 2535 504.8 75.6 54.7 83.8 0.0 2015-2016
## 2536 493.9 121.9 102.8 54.3 0.0 2015-2016
## 2537 506.3 63.8 43.0 57.1 0.0 2015-2016
## 2538 483.4 60.3 38.9 86.6 0.0 2015-2016
## 2539 497.0 84.2 62.5 110.2 0.0 2015-2016
## 2540 521.0 102.1 81.1 54.7 0.0 2015-2016
## 2541 531.5 58.2 37.5 86.4 0.0 2015-2016
## 2542 494.8 56.9 31.7 145.2 0.0 2015-2016
## 2543 506.0 91.1 67.8 112.9 0.0 2015-2016
## 2544 573.0 58.5 39.3 0.0 2467.5 2015-2016
## 2545 567.2 49.9 30.7 0.0 2443.5 2015-2016
## 2546 583.3 48.0 29.4 0.0 2486.3 2015-2016
## 2547 572.4 47.8 20.8 0.0 2460.9 2015-2016
## 2548 563.5 46.5 26.5 0.0 2448.2 2015-2016
## 2549 576.8 48.7 28.8 60.0 2465.4 2015-2016
## 2550 574.9 50.3 30.3 60.0 2468.3 2015-2016
## 2551 561.9 55.2 33.9 120.0 2483.6 2015-2016
## 2552 589.1 42.2 23.9 0.0 2472.4 2015-2016
## 2553 577.5 44.4 24.8 0.0 2476.8 2015-2016
## 2554 585.7 52.1 32.1 60.0 2489.1 2015-2016
## 2555 595.5 46.3 27.4 0.0 2537.5 2015-2016
## 2556 610.3 44.8 24.4 60.0 2560.1 2015-2016
## 2557 588.8 48.6 28.6 0.0 2518.3 2015-2016
## 2558 580.2 44.4 25.2 0.0 2474.5 2015-2016
## 2559 579.0 44.2 24.5 0.0 2461.0 2015-2016
## 2560 592.9 43.6 24.5 0.0 2535.0 2015-2016
## 2561 598.8 45.2 25.9 0.0 2521.0 2015-2016
## 2562 584.8 43.2 23.9 60.0 2480.9 2015-2016
## 2563 583.2 47.4 27.0 60.0 2530.1 2015-2016
## 2564 562.7 44.1 22.9 180.0 2374.7 2015-2016
## 2565 564.4 45.8 31.0 60.0 2439.1 2015-2016
## 2566 598.4 49.0 29.9 0.0 2547.5 2015-2016
## 2567 599.7 44.5 24.5 120.0 2541.1 2015-2016
## 2568 583.5 49.4 29.4 60.0 2494.8 2015-2016
## 2569 577.3 46.5 26.7 60.0 2515.3 2015-2016
## 2570 573.7 43.1 23.2 60.0 2451.0 2015-2016
## 2571 587.9 49.3 28.5 60.0 2515.7 2015-2016
## 2572 590.8 44.7 26.5 0.0 2548.3 2015-2016
## 2573 574.1 58.5 38.6 120.0 2449.2 2015-2016
## 2574 571.7 49.2 30.1 120.0 2460.8 2015-2016
## 2575 577.8 40.5 21.2 0.0 2464.4 2015-2016
## 2576 601.0 54.5 34.6 0.0 2574.8 2015-2016
## 2577 570.8 45.6 28.3 120.0 2463.9 2015-2016
## 2578 591.9 50.5 30.9 60.0 2539.8 2015-2016
## 2579 579.1 43.0 24.6 0.0 2498.6 2015-2016
## 2580 598.2 45.7 26.3 0.0 2538.2 2015-2016
## 2581 597.0 45.9 27.8 60.0 2556.1 2015-2016
## 2582 586.3 46.9 27.6 120.0 2497.9 2015-2016
## 2583 604.3 48.9 26.5 0.0 2557.3 2015-2016
## 2584 594.5 63.8 42.8 60.0 2553.5 2015-2016
## 2585 592.0 63.1 43.5 60.0 2545.7 2015-2016
## 2586 620.5 46.3 25.6 0.0 2597.8 2015-2016
## 2587 606.0 48.7 26.7 60.0 2608.7 2015-2016
## 2588 614.1 43.9 26.3 60.0 2577.7 2015-2016
## 2589 560.9 57.4 38.0 180.0 2430.8 2015-2016
## 2590 633.1 44.9 24.4 0.0 2681.9 2015-2016
## 2591 606.4 64.2 44.6 60.0 2627.1 2015-2016
## 2592 593.6 53.1 32.4 0.0 2533.2 2015-2016
## 2593 616.5 58.2 37.3 60.0 2622.6 2015-2016
## 2594 591.5 53.9 34.2 60.0 2526.3 2015-2016
## 2595 582.4 53.3 31.1 120.0 2536.6 2015-2016
## 2596 578.2 46.8 29.5 0.0 2495.4 2015-2016
## 2597 616.2 42.2 22.2 60.0 2564.4 2015-2016
## 2598 602.2 48.5 30.9 0.0 2588.0 2015-2016
## 2599 622.4 50.9 30.9 60.0 2636.3 2015-2016
## 2600 576.7 48.1 27.8 120.0 2454.7 2015-2016
## 2601 607.0 59.3 37.5 60.0 2594.1 2015-2016
## 2602 608.3 53.9 34.8 120.0 2592.5 2015-2016
## 2603 589.4 46.6 26.4 120.0 2526.1 2015-2016
## 2604 603.2 44.9 25.6 120.0 2562.0 2015-2016
## 2605 610.3 93.5 72.8 60.0 2625.5 2015-2016
## 2606 593.9 50.8 30.3 180.0 2534.4 2015-2016
## 2607 630.5 48.1 27.4 0.0 2699.5 2015-2016
## 2608 626.0 52.1 31.4 120.0 2636.3 2015-2016
## 2609 572.1 49.2 27.5 120.0 2465.6 2015-2016
## 2610 621.4 47.3 25.6 0.0 2653.3 2015-2016
## 2611 616.3 58.2 36.3 0.0 2617.1 2015-2016
## 2612 637.6 47.1 25.1 0.0 2645.5 2015-2016
## 2613 591.7 53.7 32.9 120.0 2530.9 2015-2016
## 2614 633.4 55.1 32.7 60.0 2670.6 2015-2016
## 2615 607.2 54.2 30.4 120.0 2620.2 2015-2016
## 2616 630.5 55.7 33.6 60.0 2673.5 2015-2016
## 2617 599.9 58.3 37.7 60.0 2608.0 2015-2016
## 2618 603.7 56.0 35.6 60.0 2591.7 2015-2016
## 2619 597.9 52.8 31.3 120.0 2548.2 2015-2016
## 2620 606.3 48.8 31.6 120.0 2540.6 2015-2016
## 2621 586.8 59.0 38.0 180.0 2514.4 2015-2016
## 2622 617.9 58.2 38.7 180.0 2661.5 2015-2016
## 2623 635.5 47.5 26.1 120.0 2664.2 2015-2016
## 2624 600.6 52.4 74.3 60.0 2592.3 2015-2016
## 2625 628.8 46.4 25.0 60.0 2610.6 2015-2016
## 2626 671.6 44.7 23.8 60.0 2779.5 2015-2016
## 2627 619.9 54.7 32.7 120.0 2615.6 2015-2016
## 2628 636.3 48.0 24.1 120.0 2641.8 2015-2016
## 2629 586.4 50.3 28.0 120.0 2587.5 2015-2016
## 2630 619.3 51.0 28.0 120.0 2616.0 2015-2016
## 2631 636.4 56.2 32.8 0.0 2629.1 2015-2016
## 2632 587.4 45.2 25.1 180.0 2557.4 2015-2016
## 2633 623.3 54.5 32.3 180.0 2659.9 2015-2016
## 2634 650.1 68.1 46.4 60.0 2779.1 2015-2016
## 2635 608.5 41.6 22.9 60.0 2586.2 2015-2016
## 2636 645.9 58.3 33.4 120.0 2731.1 2015-2016
## 2637 628.5 52.1 32.1 120.0 2678.8 2015-2016
## 2638 606.3 51.4 30.2 240.0 2608.6 2015-2016
## 2639 622.3 57.2 35.3 120.0 2677.5 2015-2016
## 2640 633.3 45.7 24.0 0.0 2720.5 2015-2016
## 2641 657.6 51.9 29.9 120.0 2760.1 2015-2016
## 2642 655.9 50.7 29.9 120.0 2806.2 2015-2016
## 2643 691.1 63.6 40.6 60.0 2964.8 2015-2016
## 2644 659.9 57.5 35.1 120.0 2801.4 2015-2016
## 2645 650.6 57.5 35.8 240.0 2694.3 2015-2016
## 2646 691.5 49.3 28.0 120.0 2890.8 2015-2016
## 2647 609.8 50.2 30.1 60.0 2649.8 2015-2016
## 2648 317.1 44.1 25.0 30.5 0.0 2015-2016
## 2649 331.9 43.6 25.3 5.8 0.0 2015-2016
## 2650 328.2 41.4 22.1 29.5 0.0 2015-2016
## 2651 318.1 40.9 19.9 5.6 0.0 2015-2016
## 2652 325.2 43.7 25.0 28.5 0.0 2015-2016
## 2653 323.6 52.1 32.3 28.1 0.0 2015-2016
## 2654 318.0 43.0 22.6 5.3 0.0 2015-2016
## 2655 330.7 45.1 27.4 5.7 0.0 2015-2016
## 2656 332.4 43.9 23.2 6.0 0.0 2015-2016
## 2657 324.4 44.4 27.8 27.4 0.0 2015-2016
## 2658 322.9 39.6 22.1 5.4 0.0 2015-2016
## 2659 330.7 41.5 21.2 29.3 0.0 2015-2016
## 2660 314.6 46.5 26.4 28.6 0.0 2015-2016
## 2661 320.2 45.8 27.4 5.5 0.0 2015-2016
## 2662 329.4 44.9 26.1 29.0 0.0 2015-2016
## 2663 319.8 39.6 19.7 5.4 0.0 2015-2016
## 2664 324.9 44.8 24.6 4.9 0.0 2015-2016
## 2665 322.0 43.5 25.1 5.0 0.0 2015-2016
## 2666 332.9 44.0 25.9 5.1 0.0 2015-2016
## 2667 319.6 53.3 35.3 50.3 0.0 2015-2016
## 2668 330.4 50.2 31.0 27.6 0.0 2015-2016
## 2669 331.5 43.9 23.9 5.4 0.0 2015-2016
## 2670 329.2 46.4 28.2 28.4 0.0 2015-2016
## 2671 335.8 44.3 26.2 27.9 0.0 2015-2016
## 2672 322.7 41.4 21.8 6.5 0.0 2015-2016
## 2673 327.5 49.5 29.5 28.1 0.0 2015-2016
## 2674 324.9 49.9 31.2 53.1 0.0 2015-2016
## 2675 321.1 51.0 32.9 49.8 0.0 2015-2016
## 2676 333.1 44.1 24.0 28.3 0.0 2015-2016
## 2677 340.7 46.7 24.4 29.9 0.0 2015-2016
## 2678 332.1 47.7 28.8 28.4 0.0 2015-2016
## 2679 331.6 47.0 26.9 52.9 0.0 2015-2016
## 2680 337.0 45.8 24.8 5.6 0.0 2015-2016
## 2681 342.5 46.7 29.1 5.8 0.0 2015-2016
## 2682 339.6 50.6 31.5 28.7 0.0 2015-2016
## 2683 328.0 53.0 33.9 28.5 0.0 2015-2016
## 2684 324.8 62.3 41.1 52.1 0.0 2015-2016
## 2685 332.4 49.4 33.1 5.3 0.0 2015-2016
## 2686 338.1 43.9 26.7 5.3 0.0 2015-2016
## 2687 336.4 49.7 31.5 5.6 0.0 2015-2016
## 2688 331.2 49.4 28.8 5.4 0.0 2015-2016
## 2689 331.5 49.0 28.4 27.4 0.0 2015-2016
## 2690 326.1 51.6 31.6 75.3 0.0 2015-2016
## 2691 336.8 48.4 29.3 6.0 0.0 2015-2016
## 2692 322.6 46.9 26.3 101.5 0.0 2015-2016
## 2693 331.5 45.2 23.2 53.6 0.0 2015-2016
## 2694 337.8 46.9 23.4 56.5 0.0 2015-2016
## 2695 352.1 43.1 22.4 5.9 0.0 2015-2016
## 2696 331.5 53.4 32.6 75.4 0.0 2015-2016
## 2697 341.0 48.5 27.5 105.4 0.0 2015-2016
## 2698 341.5 45.5 27.1 5.3 0.0 2015-2016
## 2699 338.5 49.3 29.9 29.1 0.0 2015-2016
## 2700 334.1 46.6 27.0 5.4 0.0 2015-2016
## 2701 319.7 48.9 30.4 27.2 0.0 2015-2016
## 2702 328.1 44.0 24.5 27.6 0.0 2015-2016
## 2703 332.0 53.9 35.0 30.0 0.0 2015-2016
## 2704 338.3 42.7 20.7 5.6 0.0 2015-2016
## 2705 340.0 46.9 25.6 29.9 0.0 2015-2016
## 2706 348.3 43.1 22.0 30.9 0.0 2015-2016
## 2707 342.8 47.7 26.2 80.1 0.0 2015-2016
## 2708 467.8 38.3 22.3 8.4 0.0 2015-2016
## 2709 476.9 38.5 22.7 8.5 0.0 2015-2016
## 2710 476.6 43.4 27.4 8.6 0.0 2015-2016
## 2711 471.8 39.5 23.5 32.3 0.0 2015-2016
## 2712 473.1 40.6 25.9 7.9 0.0 2015-2016
## 2713 470.0 40.6 24.9 31.5 0.0 2015-2016
## 2714 478.9 43.3 27.1 8.9 0.0 2015-2016
## 2715 473.6 40.3 24.3 8.8 0.0 2015-2016
## 2716 466.7 50.4 33.3 9.2 0.0 2015-2016
## 2717 473.7 43.4 26.2 31.0 0.0 2015-2016
## 2718 478.6 40.7 23.8 33.3 0.0 2015-2016
## 2719 481.2 46.5 30.0 31.2 0.0 2015-2016
## 2720 485.8 48.3 32.6 8.6 0.0 2015-2016
## 2721 478.2 44.3 27.0 31.3 0.0 2015-2016
## 2722 484.7 44.8 27.7 8.7 0.0 2015-2016
## 2723 476.8 42.7 25.9 9.0 0.0 2015-2016
## 2724 474.3 42.3 25.0 33.2 0.0 2015-2016
## 2725 489.5 44.0 28.2 9.2 0.0 2015-2016
## 2726 474.9 47.8 31.8 56.8 0.0 2015-2016
## 2727 468.2 54.4 37.8 52.6 0.0 2015-2016
## 2728 480.1 45.6 28.7 31.2 0.0 2015-2016
## 2729 482.2 46.9 29.9 32.3 0.0 2015-2016
## 2730 495.1 39.8 22.6 9.6 0.0 2015-2016
## 2731 486.9 46.1 30.2 8.9 0.0 2015-2016
## 2732 492.5 44.5 27.7 31.8 0.0 2015-2016
## 2733 490.7 42.4 26.9 8.5 0.0 2015-2016
## 2734 475.6 38.8 19.1 53.5 0.0 2015-2016
## 2735 495.5 44.4 26.6 9.6 0.0 2015-2016
## 2736 484.8 42.6 25.8 8.8 0.0 2015-2016
## 2737 485.3 48.9 31.7 32.6 0.0 2015-2016
## 2738 480.5 44.9 27.7 56.0 0.0 2015-2016
## 2739 491.1 39.4 23.2 34.3 0.0 2015-2016
## 2740 475.2 48.7 31.1 55.8 0.0 2015-2016
## 2741 478.8 50.1 32.2 54.9 0.0 2015-2016
## 2742 488.6 48.4 29.0 32.7 0.0 2015-2016
## 2743 467.9 41.7 25.7 54.3 0.0 2015-2016
## 2744 489.1 48.6 32.4 32.2 0.0 2015-2016
## 2745 500.1 48.1 31.4 8.8 0.0 2015-2016
## 2746 486.9 42.5 24.2 32.2 0.0 2015-2016
## 2747 492.2 45.2 31.9 9.2 0.0 2015-2016
## 2748 495.2 42.4 24.8 32.7 0.0 2015-2016
## 2749 494.8 45.3 27.6 32.8 0.0 2015-2016
## 2750 489.9 43.2 27.0 33.2 0.0 2015-2016
## 2751 487.3 46.0 28.0 9.9 0.0 2015-2016
## 2752 489.8 43.4 24.1 33.6 0.0 2015-2016
## 2753 473.8 40.0 22.9 79.1 0.0 2015-2016
## 2754 488.6 51.7 34.1 56.1 0.0 2015-2016
## 2755 486.3 43.7 26.4 56.6 0.0 2015-2016
## 2756 493.8 42.5 24.3 9.1 0.0 2015-2016
## 2757 472.5 45.8 25.6 61.3 0.0 2015-2016
## 2758 504.4 43.8 24.7 9.7 0.0 2015-2016
## 2759 485.6 45.2 28.5 33.2 0.0 2015-2016
## 2760 480.7 39.9 22.9 9.3 0.0 2015-2016
## 2761 472.6 41.4 24.4 78.9 0.0 2015-2016
## 2762 494.6 51.2 32.9 33.3 0.0 2015-2016
## 2763 486.0 42.2 24.6 54.2 0.0 2015-2016
## 2764 489.5 41.4 24.8 32.4 0.0 2015-2016
## 2765 503.3 49.1 31.0 34.1 0.0 2015-2016
## 2766 492.8 49.2 32.3 81.2 0.0 2015-2016
## 2767 483.7 49.0 30.6 58.5 0.0 2015-2016
## 2768 506.8 42.5 24.7 33.3 0.0 2015-2016
## 2769 503.4 49.8 31.2 35.1 0.0 2015-2016
## 2770 492.8 41.7 24.5 9.2 0.0 2015-2016
## 2771 501.0 49.6 32.3 32.4 0.0 2015-2016
## 2772 511.8 42.6 24.7 34.5 0.0 2015-2016
## 2773 496.6 47.3 30.6 33.3 0.0 2015-2016
## 2774 497.2 48.5 30.3 34.1 0.0 2015-2016
## 2775 524.5 46.3 29.3 9.5 0.0 2015-2016
## 2776 493.3 47.8 30.9 58.2 0.0 2015-2016
## 2777 512.2 41.3 23.6 34.0 0.0 2015-2016
## 2778 504.6 38.3 21.5 60.6 0.0 2015-2016
## 2779 520.0 50.0 29.4 9.7 0.0 2015-2016
## 2780 510.6 49.0 29.7 35.4 0.0 2015-2016
## 2781 492.1 49.8 32.5 59.8 0.0 2015-2016
## 2782 480.4 43.9 26.8 56.5 0.0 2015-2016
## 2783 509.6 42.5 24.6 34.8 0.0 2015-2016
## 2784 528.9 42.7 25.3 10.4 0.0 2015-2016
## 2785 503.6 46.8 28.9 34.0 0.0 2015-2016
## 2786 500.8 53.0 35.9 62.2 0.0 2015-2016
## 2787 520.0 47.1 28.5 61.0 0.0 2015-2016
## 2788 525.5 46.7 28.0 34.3 0.0 2015-2016
## 2789 526.0 50.0 31.2 61.5 0.0 2015-2016
## 2790 510.2 51.0 31.9 58.8 0.0 2015-2016
## 2791 527.4 48.5 30.1 9.3 0.0 2015-2016
## 2792 500.1 44.2 26.4 59.5 0.0 2015-2016
## 2793 525.8 45.8 27.4 35.8 0.0 2015-2016
## 2794 499.5 48.9 32.8 106.0 0.0 2015-2016
## 2795 512.0 45.4 28.2 59.5 0.0 2015-2016
## 2796 524.0 46.7 27.7 62.2 0.0 2015-2016
## 2797 531.1 52.8 35.2 62.2 0.0 2015-2016
## 2798 560.0 49.4 31.9 34.8 0.0 2015-2016
## 2799 542.5 48.4 28.7 10.9 0.0 2015-2016
## 2800 522.1 48.3 28.5 85.1 0.0 2015-2016
## 2801 537.1 49.6 29.8 9.4 0.0 2015-2016
## 2802 517.1 49.9 30.9 87.9 0.0 2015-2016
## 2803 560.4 51.0 32.8 66.2 0.0 2015-2016
## 2804 590.7 55.1 35.2 10.5 0.0 2015-2016
## 2805 533.3 52.6 33.7 61.3 0.0 2015-2016
## 2806 557.8 57.4 37.3 68.0 0.0 2015-2016
## 2807 558.0 43.9 24.9 66.3 0.0 2015-2016
## 2808 590.6 42.5 24.4 39.1 0.0 2015-2016
## 2809 552.9 54.0 35.2 36.6 0.0 2015-2016
## 2810 535.1 41.4 25.4 0.8 2315.2 2015-2016
## 2811 551.1 43.4 27.9 0.0 2381.3 2015-2016
## 2812 546.8 36.8 21.8 0.3 2374.9 2015-2016
## 2813 549.8 40.4 24.1 60.6 2357.0 2015-2016
## 2814 562.7 47.4 31.8 0.3 2434.6 2015-2016
## 2815 553.8 44.5 26.5 0.7 2400.6 2015-2016
## 2816 565.5 40.4 24.2 0.7 2412.3 2015-2016
## 2817 553.3 42.0 25.6 1.0 2369.4 2015-2016
## 2818 563.9 41.6 24.8 0.5 2412.4 2015-2016
## 2819 549.3 39.0 23.6 60.3 2378.5 2015-2016
## 2820 579.7 43.8 27.4 61.1 2428.2 2015-2016
## 2821 562.6 49.5 31.0 1.0 2433.4 2015-2016
## 2822 548.2 53.8 38.3 61.1 2354.6 2015-2016
## 2823 556.8 44.7 27.5 60.7 2389.6 2015-2016
## 2824 571.5 46.3 30.1 0.7 2446.0 2015-2016
## 2825 550.0 44.8 28.0 0.7 2381.6 2015-2016
## 2826 559.9 43.0 27.1 60.3 2402.7 2015-2016
## 2827 577.1 42.2 24.6 121.0 2427.6 2015-2016
## 2828 565.2 41.1 23.5 61.2 2400.9 2015-2016
## 2829 551.1 46.6 31.6 60.4 2385.1 2015-2016
## 2830 546.0 43.7 28.3 120.3 2373.8 2015-2016
## 2831 549.7 44.4 27.7 120.4 2388.4 2015-2016
## 2832 559.3 48.2 32.2 61.0 2443.3 2015-2016
## 2833 587.3 53.3 34.7 1.1 2491.7 2015-2016
## 2834 596.8 41.6 24.1 1.2 2531.0 2015-2016
## 2835 592.3 49.1 32.8 1.3 2545.4 2015-2016
## 2836 563.5 42.5 25.9 61.0 2437.3 2015-2016
## 2837 579.5 45.6 28.3 60.7 2444.4 2015-2016
## 2838 575.3 47.9 30.9 0.6 2469.9 2015-2016
## 2839 575.3 45.1 27.7 61.1 2461.0 2015-2016
## 2840 557.8 48.2 31.7 0.1 2413.6 2015-2016
## 2841 575.5 44.3 24.4 61.7 2450.5 2015-2016
## 2842 601.3 44.2 26.8 1.3 2503.2 2015-2016
## 2843 573.4 44.8 27.7 0.8 2470.8 2015-2016
## 2844 565.8 41.0 24.5 1.2 2432.2 2015-2016
## 2845 570.2 55.5 37.5 1.9 2475.1 2015-2016
## 2846 606.6 48.6 32.2 0.7 2579.0 2015-2016
## 2847 576.3 45.7 29.1 0.8 2486.4 2015-2016
## 2848 576.3 37.5 18.0 1.3 2441.8 2015-2016
## 2849 568.7 44.4 27.3 1.6 2458.2 2015-2016
## 2850 583.0 42.7 26.0 61.2 2470.8 2015-2016
## 2851 542.4 39.9 23.5 120.9 2359.4 2015-2016
## 2852 608.7 36.7 21.2 0.8 2565.6 2015-2016
## 2853 558.0 47.6 30.3 180.2 2407.3 2015-2016
## 2854 590.3 53.8 35.7 61.4 2516.2 2015-2016
## 2855 584.8 45.1 27.0 61.5 2473.6 2015-2016
## 2856 579.8 41.9 24.2 60.6 2475.5 2015-2016
## 2857 599.4 47.5 29.5 2.1 2573.1 2015-2016
## 2858 582.5 48.0 29.9 61.6 2474.4 2015-2016
## 2859 556.5 46.0 28.5 120.9 2449.5 2015-2016
## 2860 590.3 47.0 31.5 60.6 2509.8 2015-2016
## 2861 626.8 44.9 28.3 1.6 2628.2 2015-2016
## 2862 582.3 42.6 26.3 121.3 2453.0 2015-2016
## 2863 588.6 41.6 25.2 0.7 2464.8 2015-2016
## 2864 569.8 40.5 23.1 61.2 2412.2 2015-2016
## 2865 543.5 40.0 24.0 61.5 2375.4 2015-2016
## 2866 623.5 46.9 29.3 0.9 2622.2 2015-2016
## 2867 553.7 50.2 34.8 180.9 2402.5 2015-2016
## 2868 564.4 48.3 34.0 120.9 2389.7 2015-2016
## 2869 560.7 44.1 29.4 60.4 2392.4 2015-2016
## 2870 565.2 51.1 34.1 120.9 2466.6 2015-2016
## 2871 622.9 54.3 35.9 1.0 2643.0 2015-2016
## 2872 599.7 50.9 33.9 180.4 2525.6 2015-2016
## 2873 584.6 39.2 21.4 0.9 2466.6 2015-2016
## 2874 603.1 41.1 23.9 61.8 2498.5 2015-2016
## 2875 601.7 45.7 26.6 1.0 2521.4 2015-2016
## 2876 601.5 51.8 32.8 61.3 2572.6 2015-2016
## 2877 600.4 46.4 28.1 1.9 2578.9 2015-2016
## 2878 588.9 53.0 35.0 61.2 2532.3 2015-2016
## 2879 588.1 49.1 31.4 61.1 2486.4 2015-2016
## 2880 614.8 52.9 35.6 61.2 2637.7 2015-2016
## 2881 596.1 49.5 31.4 1.2 2560.6 2015-2016
## 2882 583.7 40.9 25.1 60.7 2510.5 2015-2016
## 2883 581.4 48.6 32.3 181.6 2457.8 2015-2016
## 2884 603.0 47.8 31.0 61.8 2566.4 2015-2016
## 2885 600.8 53.8 37.3 61.1 2557.7 2015-2016
## 2886 592.6 45.6 29.0 0.9 2575.8 2015-2016
## 2887 617.2 53.2 35.7 61.5 2608.2 2015-2016
## 2888 614.7 55.1 35.2 61.4 2648.3 2015-2016
## 2889 599.8 45.6 28.3 61.4 2552.5 2015-2016
## 2890 606.7 45.1 25.5 62.5 2555.4 2015-2016
## 2891 576.0 49.7 31.6 60.8 2505.3 2015-2016
## 2892 574.7 41.8 22.3 181.5 2498.0 2015-2016
## 2893 611.8 50.0 32.3 61.1 2657.3 2015-2016
## 2894 595.0 50.6 31.3 121.7 2547.4 2015-2016
## 2895 656.2 45.7 27.7 61.9 2724.8 2015-2016
## 2896 602.5 49.2 31.6 61.4 2564.7 2015-2016
## 2897 580.8 51.3 33.0 121.8 2513.1 2015-2016
## 2898 654.1 49.0 30.6 121.4 2708.1 2015-2016
## 2899 611.0 43.2 25.2 1.8 2628.3 2015-2016
## 2900 601.2 49.5 31.4 121.7 2590.3 2015-2016
## 2901 641.4 53.1 33.9 181.8 2729.9 2015-2016
## 2902 640.0 51.3 31.8 123.2 2728.7 2015-2016
## 2903 586.6 45.3 27.8 61.5 2473.4 2015-2016
## 2904 647.6 47.4 29.7 61.3 2678.5 2015-2016
## 2905 679.0 57.2 38.0 2.1 2905.8 2015-2016
## 2906 646.5 48.6 30.3 182.3 2738.9 2015-2016
## 2907 645.2 48.2 29.7 61.3 2702.6 2015-2016
## 2908 700.1 51.4 30.9 122.6 2888.8 2015-2016
## 2909 402.9 37.5 21.5 8.8 0.0 2015-2016
## 2910 405.1 34.1 21.0 10.9 0.0 2015-2016
## 2911 412.2 35.9 22.3 10.1 0.0 2015-2016
## 2912 404.0 39.0 24.0 27.8 0.0 2015-2016
## 2913 407.5 42.1 27.6 8.8 0.0 2015-2016
## 2914 400.5 39.5 23.3 8.8 0.0 2015-2016
## 2915 405.7 41.8 23.4 8.8 0.0 2015-2016
## 2916 407.3 40.1 22.6 8.9 0.0 2015-2016
## 2917 394.5 38.6 23.1 30.4 0.0 2015-2016
## 2918 407.2 44.1 28.9 30.7 0.0 2015-2016
## 2919 407.4 35.7 22.3 52.6 0.0 2015-2016
## 2920 400.5 42.4 27.8 30.2 0.0 2015-2016
## 2921 406.8 44.7 27.5 8.6 0.0 2015-2016
## 2922 410.3 39.1 22.7 54.9 0.0 2015-2016
## 2923 405.2 44.1 27.5 9.4 0.0 2015-2016
## 2924 410.3 40.9 29.1 33.0 0.0 2015-2016
## 2925 405.0 44.1 29.8 30.8 0.0 2015-2016
## 2926 400.9 45.7 27.7 52.7 0.0 2015-2016
## 2927 406.1 40.7 22.7 52.8 0.0 2015-2016
## 2928 398.4 38.9 22.3 31.6 0.0 2015-2016
## 2929 405.3 43.8 28.5 52.4 0.0 2015-2016
## 2930 416.2 44.7 27.6 32.8 0.0 2015-2016
## 2931 403.7 39.9 24.8 32.4 0.0 2015-2016
## 2932 417.4 41.4 24.1 33.0 0.0 2015-2016
## 2933 407.8 46.4 29.5 56.6 0.0 2015-2016
## 2934 427.3 45.0 28.6 9.3 0.0 2015-2016
## 2935 425.2 42.9 27.0 33.1 0.0 2015-2016
## 2936 408.2 40.9 24.1 84.6 0.0 2015-2016
## 2937 434.3 44.7 27.9 56.3 0.0 2015-2016
## 2938 330.8 37.3 23.6 53.5 0.0 2015-2016
## 2939 339.0 35.3 21.7 32.2 0.0 2015-2016
## 2940 335.9 40.4 23.5 32.1 0.0 2015-2016
## 2941 333.7 39.0 21.7 31.8 0.0 2015-2016
## 2942 339.1 43.1 27.8 8.8 0.0 2015-2016
## 2943 339.8 49.6 33.7 8.3 0.0 2015-2016
## 2944 340.4 37.3 21.0 54.8 0.0 2015-2016
## 2945 340.6 40.0 24.4 32.8 0.0 2015-2016
## 2946 340.6 42.5 27.5 30.2 0.0 2015-2016
## 2947 339.8 39.7 24.1 9.1 0.0 2015-2016
## 2948 336.5 38.4 23.2 51.6 0.0 2015-2016
## 2949 339.0 48.6 31.6 8.6 0.0 2015-2016
## 2950 341.5 42.7 26.6 55.2 0.0 2015-2016
## 2951 344.4 42.5 26.2 52.8 0.0 2015-2016
## 2952 342.4 38.0 22.6 8.7 0.0 2015-2016
## 2953 340.5 38.5 22.2 8.7 0.0 2015-2016
## 2954 339.6 42.5 27.6 52.0 0.0 2015-2016
## 2955 347.4 41.0 25.5 31.5 0.0 2015-2016
## 2956 349.5 40.8 23.9 9.3 0.0 2015-2016
## 2957 344.0 46.5 28.2 57.3 0.0 2015-2016
## 2958 350.6 39.2 23.3 34.3 0.0 2015-2016
## 2959 349.6 45.0 29.8 32.4 0.0 2015-2016
## 2960 340.6 48.1 31.0 79.0 0.0 2015-2016
## 2961 341.2 44.2 27.0 31.6 0.0 2015-2016
## 2962 345.9 42.3 25.8 32.8 0.0 2015-2016
## 2963 327.9 37.6 22.6 9.3 0.0 2015-2016
## 2964 344.1 46.0 30.0 53.6 0.0 2015-2016
## 2965 341.5 39.9 24.4 52.1 0.0 2015-2016
## 2966 344.7 47.6 31.4 55.1 0.0 2015-2016
## 2967 345.9 45.6 29.4 33.6 0.0 2015-2016
## 2968 342.5 41.8 25.8 33.4 0.0 2015-2016
## 2969 347.9 41.8 25.0 10.2 0.0 2015-2016
## 2970 345.3 43.1 27.4 9.8 0.0 2015-2016
## 2971 348.4 54.9 40.2 33.8 0.0 2015-2016
## 2972 355.1 45.2 29.0 10.5 0.0 2015-2016
## 2973 345.0 42.4 25.1 78.4 0.0 2015-2016
## 2974 344.5 47.0 30.9 9.2 0.0 2015-2016
## 2975 353.0 48.3 30.7 80.7 0.0 2015-2016
## 2976 335.0 44.8 29.7 33.0 0.0 2015-2016
## 2977 338.4 39.2 22.7 33.3 0.0 2015-2016
## 2978 346.1 50.2 32.7 34.2 0.0 2015-2016
## 2979 361.5 41.1 24.9 9.9 0.0 2015-2016
## 2980 349.9 47.7 31.1 57.9 0.0 2015-2016
## 2981 353.5 54.5 38.2 8.8 0.0 2015-2016
## 2982 340.5 41.0 24.8 59.1 0.0 2015-2016
## 2983 356.2 37.6 22.3 81.7 0.0 2015-2016
## 2984 352.7 43.9 27.8 32.7 0.0 2015-2016
## 2985 343.6 47.9 29.3 58.9 0.0 2015-2016
## 2986 351.2 40.4 24.3 57.3 0.0 2015-2016
## 2987 356.6 57.2 40.4 58.4 0.0 2015-2016
## 2988 351.4 49.1 34.7 85.2 0.0 2015-2016
## 2989 354.7 38.9 21.8 61.9 0.0 2015-2016
## 2990 363.9 41.9 23.5 61.5 0.0 2015-2016
## 2991 344.0 46.2 24.3 33.9 0.0 2015-2016
## 2992 348.0 47.6 30.1 59.1 0.0 2015-2016
## 2993 374.6 45.5 29.2 60.5 0.0 2015-2016
## 2994 371.8 47.8 29.9 84.6 0.0 2015-2016
## 2995 433.0 41.2 26.0 5.1 0.0 2015-2016
## 2996 436.5 43.1 28.0 5.0 0.0 2015-2016
## 2997 440.9 40.6 23.0 5.1 0.0 2015-2016
## 2998 435.2 38.3 22.0 4.8 0.0 2015-2016
## 2999 431.6 40.2 24.0 26.6 0.0 2015-2016
## 3000 432.2 41.0 24.0 26.3 0.0 2015-2016
## 3001 434.5 42.5 25.0 5.4 0.0 2015-2016
## 3002 433.3 42.9 26.0 27.9 0.0 2015-2016
## 3003 430.4 41.4 25.0 25.9 0.0 2015-2016
## 3004 441.4 42.3 25.0 5.2 0.0 2015-2016
## 3005 427.5 41.6 22.0 26.8 0.0 2015-2016
## 3006 444.1 41.0 23.0 5.5 0.0 2015-2016
## 3007 451.8 47.4 32.0 4.8 0.0 2015-2016
## 3008 444.0 43.8 26.0 25.6 0.0 2015-2016
## 3009 452.3 43.6 23.0 5.0 0.0 2015-2016
## 3010 438.2 44.0 26.0 25.3 0.0 2015-2016
## 3011 443.5 44.8 29.0 4.9 0.0 2015-2016
## 3012 434.6 41.9 24.0 26.6 0.0 2015-2016
## 3013 445.0 44.3 26.0 27.3 0.0 2015-2016
## 3014 441.6 42.6 25.0 5.6 0.0 2015-2016
## 3015 440.7 43.0 27.0 27.5 0.0 2015-2016
## 3016 439.5 42.1 26.0 5.5 0.0 2015-2016
## 3017 429.6 51.4 35.0 68.2 0.0 2015-2016
## 3018 450.5 42.0 25.0 5.3 0.0 2015-2016
## 3019 449.6 45.3 25.0 28.3 0.0 2015-2016
## 3020 451.7 40.9 23.0 4.8 0.0 2015-2016
## 3021 449.0 38.3 22.0 27.6 0.0 2015-2016
## 3022 439.3 47.6 28.0 5.3 0.0 2015-2016
## 3023 447.6 50.2 33.0 5.4 0.0 2015-2016
## 3024 444.5 45.3 27.0 48.4 0.0 2015-2016
## 3025 440.0 49.7 32.0 26.8 0.0 2015-2016
## 3026 436.9 43.1 26.0 46.2 0.0 2015-2016
## 3027 446.4 46.1 28.0 5.3 0.0 2015-2016
## 3028 455.4 46.4 28.0 6.0 0.0 2015-2016
## 3029 456.4 44.6 26.0 27.0 0.0 2015-2016
## 3030 455.8 41.5 24.0 26.5 0.0 2015-2016
## 3031 453.2 42.0 23.0 5.5 0.0 2015-2016
## 3032 439.3 50.0 33.0 48.1 0.0 2015-2016
## 3033 439.5 46.7 29.0 25.0 0.0 2015-2016
## 3034 445.2 48.1 30.0 27.0 0.0 2015-2016
## 3035 451.3 51.7 35.0 26.6 0.0 2015-2016
## 3036 462.9 43.5 26.0 5.3 0.0 2015-2016
## 3037 443.3 46.5 29.0 5.5 0.0 2015-2016
## 3038 459.9 41.7 26.0 5.0 0.0 2015-2016
## 3039 447.7 56.5 39.0 27.6 0.0 2015-2016
## 3040 441.9 44.8 27.0 49.3 0.0 2015-2016
## 3041 460.0 42.6 25.0 5.1 0.0 2015-2016
## 3042 472.2 36.8 20.0 4.6 0.0 2015-2016
## 3043 452.0 42.6 23.0 27.1 0.0 2015-2016
## 3044 430.7 55.3 38.0 89.3 0.0 2015-2016
## 3045 460.4 46.3 29.0 27.0 0.0 2015-2016
## 3046 456.0 41.8 25.0 27.4 0.0 2015-2016
## 3047 455.3 48.6 32.0 27.5 0.0 2015-2016
## 3048 452.9 48.9 31.0 27.9 0.0 2015-2016
## 3049 447.2 44.2 27.0 27.7 0.0 2015-2016
## 3050 453.5 47.6 28.0 51.4 0.0 2015-2016
## 3051 449.4 46.2 27.0 49.9 0.0 2015-2016
## 3052 447.6 44.9 26.0 49.7 0.0 2015-2016
## 3053 470.6 42.9 24.0 5.5 0.0 2015-2016
## 3054 459.5 46.1 28.0 27.3 0.0 2015-2016
## 3055 466.0 45.4 27.0 5.5 0.0 2015-2016
## 3056 473.8 43.4 26.0 5.4 0.0 2015-2016
## 3057 454.2 44.6 26.0 50.5 0.0 2015-2016
## 3058 438.9 42.1 24.0 72.1 0.0 2015-2016
## 3059 466.0 50.5 32.0 5.2 0.0 2015-2016
## 3060 471.7 42.3 25.0 6.3 0.0 2015-2016
## 3061 444.3 43.6 26.0 28.3 0.0 2015-2016
## 3062 460.0 46.8 30.0 28.4 0.0 2015-2016
## 3063 466.1 42.2 25.0 27.4 0.0 2015-2016
## 3064 471.0 42.9 26.0 4.4 0.0 2015-2016
## 3065 452.0 43.7 26.0 26.9 0.0 2015-2016
## 3066 456.2 54.2 35.0 50.7 0.0 2015-2016
## 3067 456.9 48.7 33.0 29.6 0.0 2015-2016
## 3068 470.6 53.6 37.0 5.8 0.0 2015-2016
## 3069 465.3 47.8 27.0 5.3 0.0 2015-2016
## 3070 453.3 46.8 29.0 50.3 0.0 2015-2016
## 3071 445.9 50.9 31.0 74.3 0.0 2015-2016
## 3072 457.8 51.3 33.0 29.2 0.0 2015-2016
## 3073 487.6 45.8 28.0 5.5 0.0 2015-2016
## 3074 463.7 46.9 29.0 50.2 0.0 2015-2016
## 3075 470.5 52.8 35.0 5.5 0.0 2015-2016
## 3076 458.7 45.4 28.0 72.5 0.0 2015-2016
## 3077 444.5 51.8 32.0 69.7 0.0 2015-2016
## 3078 487.6 49.7 32.0 5.4 0.0 2015-2016
## 3079 474.3 46.1 27.0 28.0 0.0 2015-2016
## 3080 459.9 50.9 30.0 75.1 0.0 2015-2016
## 3081 473.7 46.1 28.0 51.0 0.0 2015-2016
## 3082 475.3 49.7 29.0 5.8 0.0 2015-2016
## 3083 464.8 45.3 26.0 54.0 0.0 2015-2016
## 3084 466.9 51.4 34.0 27.8 0.0 2015-2016
## 3085 483.8 47.2 29.0 30.1 0.0 2015-2016
## 3086 475.7 48.1 28.0 51.0 0.0 2015-2016
## 3087 469.8 45.2 24.0 56.4 0.0 2015-2016
## 3088 485.3 49.1 31.0 5.9 0.0 2015-2016
## 3089 496.5 54.3 32.0 6.8 0.0 2015-2016
## 3090 476.9 56.5 36.0 53.7 0.0 2015-2016
## 3091 498.3 51.2 32.0 28.7 0.0 2015-2016
## 3092 494.9 55.0 37.0 26.5 0.0 2015-2016
## 3093 508.6 46.7 28.0 28.7 0.0 2015-2016
## 3094 478.0 67.1 48.0 53.7 0.0 2015-2016
## 3095 488.7 67.8 48.0 53.4 0.0 2015-2016
## 3096 504.8 46.2 30.0 78.6 0.0 2015-2016
## 3097 396.3 39.7 24.0 6.1 0.0 2015-2016
## 3098 378.3 37.9 22.0 5.5 0.0 2015-2016
## 3099 375.5 37.0 23.0 5.4 0.0 2015-2016
## 3100 380.6 39.0 23.0 5.1 0.0 2015-2016
## 3101 379.5 39.0 26.0 5.2 0.0 2015-2016
## 3102 392.7 43.4 29.0 5.5 0.0 2015-2016
## 3103 379.4 37.1 21.0 5.3 0.0 2015-2016
## 3104 384.4 37.1 21.0 5.6 0.0 2015-2016
## 3105 389.0 39.8 26.0 4.7 0.0 2015-2016
## 3106 400.3 35.8 22.0 28.5 0.0 2015-2016
## 3107 375.8 39.6 24.0 25.9 0.0 2015-2016
## 3108 379.7 38.5 23.0 26.0 0.0 2015-2016
## 3109 381.5 43.0 27.0 5.5 0.0 2015-2016
## 3110 392.9 38.6 23.0 47.8 0.0 2015-2016
## 3111 375.3 42.4 25.0 27.0 0.0 2015-2016
## 3112 396.1 44.2 27.0 5.4 0.0 2015-2016
## 3113 378.7 42.3 26.0 27.3 0.0 2015-2016
## 3114 389.8 43.0 26.0 5.0 0.0 2015-2016
## 3115 389.7 52.1 37.0 48.3 0.0 2015-2016
## 3116 394.2 41.8 24.0 5.0 0.0 2015-2016
## 3117 382.3 37.5 21.0 48.3 0.0 2015-2016
## 3118 388.2 43.8 26.0 25.9 0.0 2015-2016
## 3119 400.0 45.8 27.0 27.7 0.0 2015-2016
## 3120 389.7 48.2 30.0 27.5 0.0 2015-2016
## 3121 393.3 46.4 29.0 27.1 0.0 2015-2016
## 3122 400.2 46.0 28.0 27.5 0.0 2015-2016
## 3123 392.3 44.6 28.0 26.6 0.0 2015-2016
## 3124 420.9 36.2 19.0 5.7 0.0 2015-2016
## 3125 412.8 43.2 24.0 27.3 0.0 2015-2016
## 3126 428.8 41.9 23.0 52.9 0.0 2015-2016
## 3127 333.1 38.2 24.0 6.5 0.0 2015-2016
## 3128 333.1 34.4 22.0 28.3 0.0 2015-2016
## 3129 334.8 38.7 24.0 5.4 0.0 2015-2016
## 3130 330.0 41.3 25.0 26.5 0.0 2015-2016
## 3131 336.7 38.7 23.0 5.6 0.0 2015-2016
## 3132 335.1 38.5 25.0 27.3 0.0 2015-2016
## 3133 335.9 39.1 25.0 27.9 0.0 2015-2016
## 3134 341.5 40.5 24.0 28.1 0.0 2015-2016
## 3135 342.4 41.2 24.0 5.0 0.0 2015-2016
## 3136 339.8 47.2 30.0 5.3 0.0 2015-2016
## 3137 338.9 41.5 25.0 4.9 0.0 2015-2016
## 3138 342.8 44.8 27.0 5.3 0.0 2015-2016
## 3139 335.2 43.2 30.0 48.7 0.0 2015-2016
## 3140 340.7 48.0 30.0 5.3 0.0 2015-2016
## 3141 339.9 44.2 29.0 26.8 0.0 2015-2016
## 3142 343.6 39.2 21.0 5.6 0.0 2015-2016
## 3143 340.6 41.8 25.0 28.0 0.0 2015-2016
## 3144 338.6 39.8 25.0 25.6 0.0 2015-2016
## 3145 330.5 47.6 29.0 26.9 0.0 2015-2016
## 3146 342.6 44.5 29.0 28.9 0.0 2015-2016
## 3147 334.5 46.6 28.0 26.7 0.0 2015-2016
## 3148 337.2 45.6 29.0 26.6 0.0 2015-2016
## 3149 336.8 42.2 23.0 27.7 0.0 2015-2016
## 3150 349.8 43.9 24.0 28.1 0.0 2015-2016
## 3151 333.8 44.0 24.0 27.0 0.0 2015-2016
## 3152 343.0 38.5 23.0 5.5 0.0 2015-2016
## 3153 344.9 43.6 26.0 5.2 0.0 2015-2016
## 3154 347.0 37.7 22.0 5.9 0.0 2015-2016
## 3155 346.2 45.9 26.0 27.6 0.0 2015-2016
## 3156 337.7 45.3 29.0 48.5 0.0 2015-2016
## 3157 343.1 37.5 21.0 28.3 0.0 2015-2016
## 3158 338.9 48.9 33.0 47.3 0.0 2015-2016
## 3159 339.1 43.0 26.0 29.4 0.0 2015-2016
## 3160 351.8 44.3 26.0 5.8 0.0 2015-2016
## 3161 364.1 36.0 28.0 5.8 0.0 2015-2016
## 3162 340.2 46.3 31.0 26.9 0.0 2015-2016
## 3163 335.3 43.1 25.0 49.9 0.0 2015-2016
## 3164 342.3 43.6 25.0 54.1 0.0 2015-2016
## 3165 343.6 40.0 23.0 5.7 0.0 2015-2016
## 3166 345.1 44.5 28.0 5.6 0.0 2015-2016
## 3167 354.6 42.4 24.0 52.3 0.0 2015-2016
## 3168 357.5 47.5 31.0 5.5 0.0 2015-2016
## 3169 344.7 47.0 30.0 74.9 0.0 2015-2016
## 3170 361.6 44.9 28.0 28.9 0.0 2015-2016
## 3171 364.4 42.1 32.0 5.4 0.0 2015-2016
## 3172 350.1 42.7 25.0 30.7 0.0 2015-2016
## 3173 370.7 45.6 28.0 5.8 0.0 2015-2016
## 3174 355.4 43.7 27.0 53.2 0.0 2015-2016
## 3175 366.9 39.3 28.0 30.8 0.0 2015-2016
## 3176 362.5 41.1 23.0 5.3 0.0 2015-2016
## 3177 349.4 45.2 28.0 51.6 0.0 2015-2016
## 3178 351.7 52.7 33.0 29.0 0.0 2015-2016
## 3179 356.9 45.3 25.0 5.6 0.0 2015-2016
## 3180 353.7 45.0 27.0 5.5 0.0 2015-2016
## 3181 376.0 51.7 29.0 54.4 0.0 2015-2016
## 3182 357.5 49.0 29.0 29.9 0.0 2015-2016
## 3183 348.4 43.1 23.0 32.6 0.0 2015-2016
## 3184 369.0 41.6 21.0 30.5 0.0 2015-2016
## 3185 377.4 44.0 25.0 130.5 0.0 2015-2016
## 3186 460.2 44.6 25.0 6.4 0.0 2015-2016
## 3187 473.8 47.4 26.0 6.3 0.0 2015-2016
## 3188 455.5 57.5 37.0 26.3 0.0 2015-2016
## 3189 480.0 48.4 28.0 6.3 0.0 2015-2016
## 3190 475.6 47.2 26.0 29.2 0.0 2015-2016
## 3191 471.7 46.8 25.0 29.0 0.0 2015-2016
## 3192 456.6 52.5 33.0 26.7 0.0 2015-2016
## 3193 475.7 49.0 26.0 27.7 0.0 2015-2016
## 3194 478.9 46.5 25.0 29.0 0.0 2015-2016
## 3195 474.0 51.6 31.0 28.2 0.0 2015-2016
## 3196 484.7 39.4 17.0 6.4 0.0 2015-2016
## 3197 467.0 53.7 34.0 50.3 0.0 2015-2016
## 3198 475.8 47.8 25.0 28.7 0.0 2015-2016
## 3199 480.7 46.7 26.0 6.6 0.0 2015-2016
## 3200 483.8 49.3 23.0 29.5 0.0 2015-2016
## 3201 483.6 50.2 27.0 6.6 0.0 2015-2016
## 3202 477.3 46.2 23.0 29.0 0.0 2015-2016
## 3203 490.8 42.4 23.0 6.3 0.0 2015-2016
## 3204 509.1 44.0 24.0 6.7 0.0 2015-2016
## 3205 479.3 47.6 27.0 28.0 0.0 2015-2016
## 3206 469.5 46.5 37.0 28.0 0.0 2015-2016
## 3207 465.7 48.9 29.0 48.8 0.0 2015-2016
## 3208 481.9 48.0 27.0 6.3 0.0 2015-2016
## 3209 490.1 47.6 26.0 29.6 0.0 2015-2016
## 3210 481.8 48.2 26.0 6.7 0.0 2015-2016
## 3211 486.8 48.5 27.0 30.0 0.0 2015-2016
## 3212 468.4 51.3 30.0 71.4 0.0 2015-2016
## 3213 481.9 45.5 26.0 29.9 0.0 2015-2016
## 3214 485.2 51.5 29.0 27.8 0.0 2015-2016
## 3215 501.7 46.1 24.0 6.4 0.0 2015-2016
## 3216 481.8 52.3 30.0 53.9 0.0 2015-2016
## 3217 481.3 47.2 25.0 30.3 0.0 2015-2016
## 3218 475.7 47.5 25.0 53.5 0.0 2015-2016
## 3219 476.6 46.8 29.0 49.2 0.0 2015-2016
## 3220 475.3 48.5 28.0 6.3 0.0 2015-2016
## 3221 477.5 46.3 27.0 75.6 0.0 2015-2016
## 3222 489.0 44.7 21.0 52.9 0.0 2015-2016
## 3223 485.0 68.2 46.0 29.9 0.0 2015-2016
## 3224 490.0 49.8 27.0 51.3 0.0 2015-2016
## 3225 479.7 59.1 37.0 27.9 0.0 2015-2016
## 3226 483.0 50.8 26.0 6.5 0.0 2015-2016
## 3227 482.1 50.0 28.0 29.3 0.0 2015-2016
## 3228 502.7 46.4 24.0 6.7 0.0 2015-2016
## 3229 486.8 45.6 24.0 28.4 0.0 2015-2016
## 3230 482.5 47.8 26.0 51.7 0.0 2015-2016
## 3231 506.1 50.1 27.0 6.8 0.0 2015-2016
## 3232 506.2 51.0 29.0 7.1 0.0 2015-2016
## 3233 500.7 50.8 29.0 26.8 0.0 2015-2016
## 3234 495.8 48.6 25.0 55.1 0.0 2015-2016
## 3235 507.9 48.5 26.0 6.7 0.0 2015-2016
## 3236 495.7 48.6 25.0 29.4 0.0 2015-2016
## 3237 485.5 42.9 21.0 29.6 0.0 2015-2016
## 3238 498.3 49.5 27.0 54.3 0.0 2015-2016
## 3239 499.5 45.8 23.0 31.1 0.0 2015-2016
## 3240 479.7 56.5 35.0 78.2 0.0 2015-2016
## 3241 502.8 50.5 26.0 31.5 0.0 2015-2016
## 3242 515.8 42.3 21.0 30.4 0.0 2015-2016
## 3243 504.8 49.8 27.0 6.7 0.0 2015-2016
## 3244 491.1 48.4 26.0 6.6 0.0 2015-2016
## 3245 516.9 51.6 30.0 7.7 0.0 2015-2016
## 3246 507.9 45.8 25.0 29.3 0.0 2015-2016
## 3247 494.9 51.6 29.0 29.4 0.0 2015-2016
## 3248 499.7 46.4 24.0 6.4 0.0 2015-2016
## 3249 498.1 50.1 26.0 30.4 0.0 2015-2016
## 3250 502.9 44.2 22.0 30.6 0.0 2015-2016
## 3251 498.4 45.8 22.0 30.8 0.0 2015-2016
## 3252 511.2 44.2 23.0 56.3 0.0 2015-2016
## 3253 493.7 47.4 24.0 31.2 0.0 2015-2016
## 3254 494.5 54.3 30.0 54.8 0.0 2015-2016
## 3255 509.2 48.5 27.0 55.4 0.0 2015-2016
## 3256 507.0 43.5 21.0 30.1 0.0 2015-2016
## 3257 491.4 46.9 26.0 53.1 0.0 2015-2016
## 3258 518.4 46.9 28.0 6.6 0.0 2015-2016
## 3259 534.2 53.2 32.0 30.1 0.0 2015-2016
## 3260 500.3 50.3 29.0 53.0 0.0 2015-2016
## 3261 511.6 48.2 26.0 54.6 0.0 2015-2016
## 3262 496.6 53.5 30.0 52.8 0.0 2015-2016
## 3263 529.5 52.9 30.0 6.7 0.0 2015-2016
## 3264 510.4 52.5 29.0 57.8 0.0 2015-2016
## 3265 524.1 49.9 26.0 32.0 0.0 2015-2016
## 3266 518.2 50.8 28.0 6.8 0.0 2015-2016
## 3267 518.9 61.6 40.0 53.3 0.0 2015-2016
## 3268 499.5 50.8 28.0 79.8 0.0 2015-2016
## 3269 516.1 56.7 31.0 56.2 0.0 2015-2016
## 3270 502.7 51.3 27.0 59.4 0.0 2015-2016
## 3271 539.8 50.9 27.0 31.2 0.0 2015-2016
## 3272 508.8 49.9 26.0 59.8 0.0 2015-2016
## 3273 545.0 50.0 26.0 33.6 0.0 2015-2016
## 3274 321.5 43.2 24.0 7.0 0.0 2015-2016
## 3275 324.5 48.4 28.0 50.8 0.0 2015-2016
## 3276 326.7 50.6 29.0 28.9 0.0 2015-2016
## 3277 332.7 47.5 28.0 29.2 0.0 2015-2016
## 3278 332.6 58.9 38.0 29.1 0.0 2015-2016
## 3279 328.1 56.1 36.0 28.3 0.0 2015-2016
## 3280 332.3 60.3 40.0 49.9 0.0 2015-2016
## 3281 319.5 49.0 28.0 6.4 0.0 2015-2016
## 3282 331.5 52.0 31.0 29.6 0.0 2015-2016
## 3283 330.0 48.0 27.0 29.4 0.0 2015-2016
## 3284 335.2 50.3 29.0 53.1 0.0 2015-2016
## 3285 321.8 55.3 33.0 28.0 0.0 2015-2016
## 3286 336.9 62.3 40.0 76.1 0.0 2015-2016
## 3287 325.5 50.4 30.0 28.0 0.0 2015-2016
## 3288 325.8 49.6 27.0 28.1 0.0 2015-2016
## 3289 330.5 49.7 29.0 29.5 0.0 2015-2016
## 3290 326.3 61.6 40.0 51.6 0.0 2015-2016
## 3291 334.2 52.6 35.0 28.8 0.0 2015-2016
## 3292 326.4 54.4 30.0 51.0 0.0 2015-2016
## 3293 331.3 43.9 25.0 28.7 0.0 2015-2016
## 3294 327.3 62.7 41.0 94.4 0.0 2015-2016
## 3295 317.1 55.5 34.0 72.0 0.0 2015-2016
## 3296 329.6 52.7 31.0 52.7 0.0 2015-2016
## 3297 344.7 54.2 34.0 29.6 0.0 2015-2016
## 3298 334.4 47.1 25.0 7.4 0.0 2015-2016
## 3299 346.8 51.0 30.0 29.0 0.0 2015-2016
## 3300 338.6 44.8 24.0 30.2 0.0 2015-2016
## 3301 335.4 50.0 29.0 6.5 0.0 2015-2016
## 3302 336.3 50.5 29.0 28.5 0.0 2015-2016
## 3303 343.2 47.8 25.0 7.9 0.0 2015-2016
## 3304 340.1 51.1 31.0 53.8 0.0 2015-2016
## 3305 333.8 49.3 27.0 6.5 0.0 2015-2016
## 3306 338.3 48.3 26.0 30.5 0.0 2015-2016
## 3307 332.7 52.7 29.0 54.0 0.0 2015-2016
## 3308 324.3 59.9 39.0 30.5 0.0 2015-2016
## 3309 342.6 54.0 33.0 75.4 0.0 2015-2016
## 3310 335.4 63.4 43.0 31.0 0.0 2015-2016
## 3311 331.8 43.9 21.0 74.5 0.0 2015-2016
## 3312 336.0 72.6 51.0 80.3 0.0 2015-2016
## 3313 334.1 56.5 34.0 78.5 0.0 2015-2016
## 3314 338.3 46.5 25.0 29.0 0.0 2015-2016
## 3315 339.1 48.6 24.0 29.2 0.0 2015-2016
## 3316 361.5 60.3 39.0 7.7 0.0 2015-2016
## 3317 327.0 53.9 30.0 50.3 0.0 2015-2016
## 3318 346.2 50.6 29.0 104.9 0.0 2015-2016
## 3319 336.0 65.1 45.0 78.7 0.0 2015-2016
## 3320 342.3 48.8 26.0 51.6 0.0 2015-2016
## 3321 352.1 64.4 40.0 31.4 0.0 2015-2016
## 3322 346.4 50.3 28.0 82.8 0.0 2015-2016
## 3323 358.4 66.5 47.0 6.6 0.0 2015-2016
## 3324 331.7 57.5 37.0 106.0 0.0 2015-2016
## 3325 352.6 54.1 30.0 57.1 0.0 2015-2016
## 3326 338.5 60.4 39.0 82.5 0.0 2015-2016
## 3327 413.4 41.2 22.0 3.2 0.0 2015-2016
## 3328 415.0 43.1 23.0 3.0 0.0 2015-2016
## 3329 415.0 42.7 24.0 3.0 0.0 2015-2016
## 3330 410.5 40.0 20.0 3.0 0.0 2015-2016
## 3331 417.3 46.0 25.0 3.0 0.0 2015-2016
## 3332 426.8 39.5 18.0 2.9 0.0 2015-2016
## 3333 430.9 45.8 24.0 3.1 0.0 2015-2016
## 3334 422.3 48.9 29.0 3.1 0.0 2015-2016
## 3335 415.9 43.7 23.0 23.2 0.0 2015-2016
## 3336 421.2 45.2 24.0 25.1 0.0 2015-2016
## 3337 418.2 44.0 24.0 25.4 0.0 2015-2016
## 3338 421.9 50.0 30.0 2.9 0.0 2015-2016
## 3339 424.1 42.8 20.0 3.2 0.0 2015-2016
## 3340 416.0 49.4 29.0 3.1 0.0 2015-2016
## 3341 415.6 43.0 24.0 47.5 0.0 2015-2016
## 3342 408.3 45.9 25.0 44.1 0.0 2015-2016
## 3343 428.7 50.7 30.0 3.2 0.0 2015-2016
## 3344 423.1 45.9 25.0 23.7 0.0 2015-2016
## 3345 418.8 49.5 27.0 24.1 0.0 2015-2016
## 3346 428.9 47.4 27.0 3.1 0.0 2015-2016
## 3347 433.1 48.1 26.0 3.0 0.0 2015-2016
## 3348 428.1 47.3 28.0 3.1 0.0 2015-2016
## 3349 431.4 47.1 26.0 3.2 0.0 2015-2016
## 3350 425.7 46.7 25.0 26.4 0.0 2015-2016
## 3351 431.0 49.0 28.0 3.2 0.0 2015-2016
## 3352 432.2 40.4 19.0 3.1 0.0 2015-2016
## 3353 427.9 47.6 24.0 24.4 0.0 2015-2016
## 3354 424.3 46.3 24.0 26.1 0.0 2015-2016
## 3355 427.5 53.5 30.0 3.6 0.0 2015-2016
## 3356 437.5 45.2 24.0 3.3 0.0 2015-2016
## 3357 418.9 45.3 24.0 48.0 0.0 2015-2016
## 3358 422.0 46.4 26.0 43.8 0.0 2015-2016
## 3359 423.9 47.1 25.0 24.3 0.0 2015-2016
## 3360 437.3 47.2 25.0 3.3 0.0 2015-2016
## 3361 424.7 47.1 27.0 24.9 0.0 2015-2016
## 3362 438.8 43.6 23.0 3.4 0.0 2015-2016
## 3363 423.7 43.3 21.0 3.1 0.0 2015-2016
## 3364 426.7 50.4 28.0 3.2 0.0 2015-2016
## 3365 427.2 43.7 22.0 3.2 0.0 2015-2016
## 3366 427.5 44.5 23.0 49.0 0.0 2015-2016
## 3367 435.1 43.7 23.0 26.9 0.0 2015-2016
## 3368 433.3 45.6 25.0 24.2 0.0 2015-2016
## 3369 432.1 50.7 28.0 48.2 0.0 2015-2016
## 3370 425.4 40.9 22.0 24.4 0.0 2015-2016
## 3371 427.3 43.7 23.0 24.7 0.0 2015-2016
## 3372 447.9 47.3 24.0 3.2 0.0 2015-2016
## 3373 425.9 45.0 23.0 24.7 0.0 2015-2016
## 3374 436.4 44.5 24.0 3.3 0.0 2015-2016
## 3375 443.9 42.8 21.0 3.0 0.0 2015-2016
## 3376 439.0 46.9 25.0 3.2 0.0 2015-2016
## 3377 438.0 40.6 19.0 3.0 0.0 2015-2016
## 3378 430.3 53.2 33.0 25.0 0.0 2015-2016
## 3379 430.3 47.0 27.0 2.9 0.0 2015-2016
## 3380 434.1 47.4 26.0 24.5 0.0 2015-2016
## 3381 426.2 51.1 29.0 26.7 0.0 2015-2016
## 3382 431.6 43.5 22.0 26.5 0.0 2015-2016
## 3383 433.6 49.4 27.0 45.3 0.0 2015-2016
## 3384 436.3 53.2 31.0 3.2 0.0 2015-2016
## 3385 429.5 47.0 26.0 24.1 0.0 2015-2016
## 3386 446.1 49.5 28.0 3.1 0.0 2015-2016
## 3387 409.4 48.5 27.0 88.8 0.0 2015-2016
## 3388 438.9 48.3 27.0 3.1 0.0 2015-2016
## 3389 414.5 51.2 30.0 67.7 0.0 2015-2016
## 3390 446.6 53.2 31.0 3.1 0.0 2015-2016
## 3391 432.0 45.5 26.0 25.7 0.0 2015-2016
## 3392 428.3 46.8 26.0 26.3 0.0 2015-2016
## 3393 431.5 46.6 25.0 47.4 0.0 2015-2016
## 3394 436.6 46.6 24.0 46.7 0.0 2015-2016
## 3395 443.1 45.0 24.0 26.4 0.0 2015-2016
## 3396 443.6 46.8 25.0 26.3 0.0 2015-2016
## 3397 428.8 44.9 22.0 24.1 0.0 2015-2016
## 3398 436.3 43.2 22.0 24.6 0.0 2015-2016
## 3399 436.6 48.7 28.0 2.8 0.0 2015-2016
## 3400 436.3 43.1 23.0 45.7 0.0 2015-2016
## 3401 435.4 47.6 25.0 47.2 0.0 2015-2016
## 3402 447.0 47.1 24.0 25.6 0.0 2015-2016
## 3403 442.1 50.5 29.0 25.1 0.0 2015-2016
## 3404 438.7 53.9 33.0 48.7 0.0 2015-2016
## 3405 454.4 44.6 23.0 24.8 0.0 2015-2016
## 3406 454.7 40.4 21.0 24.3 0.0 2015-2016
## 3407 447.4 44.5 23.0 26.2 0.0 2015-2016
## 3408 415.7 46.9 25.0 46.6 0.0 2015-2016
## 3409 443.2 47.7 24.0 3.4 0.0 2015-2016
## 3410 435.4 43.5 21.0 49.5 0.0 2015-2016
## 3411 451.9 51.6 28.0 27.0 0.0 2015-2016
## 3412 440.7 49.6 28.0 47.7 0.0 2015-2016
## 3413 450.5 77.7 55.0 24.5 0.0 2015-2016
## 3414 438.0 49.4 27.0 25.4 0.0 2015-2016
## 3415 451.1 46.0 24.0 24.7 0.0 2015-2016
## 3416 443.6 47.8 27.0 46.8 0.0 2015-2016
## 3417 453.1 49.1 27.0 47.8 0.0 2015-2016
## 3418 451.4 50.1 26.0 3.0 0.0 2015-2016
## 3419 460.7 54.6 33.0 2.9 0.0 2015-2016
## 3420 434.2 57.5 35.0 68.3 0.0 2015-2016
## 3421 463.0 44.8 24.0 3.5 0.0 2015-2016
## 3422 435.9 57.2 33.0 53.0 0.0 2015-2016
## 3423 458.8 50.1 27.0 24.1 0.0 2015-2016
## 3424 431.4 57.4 35.0 100.1 0.0 2015-2016
## 3425 469.8 48.1 25.0 48.2 0.0 2015-2016
## 3426 466.1 49.0 25.0 69.5 0.0 2015-2016
## 3427 469.1 47.7 23.0 26.7 0.0 2015-2016
## 3428 461.4 52.2 29.0 50.1 0.0 2015-2016
## 3429 464.5 43.2 23.0 0.0 2544.9 2015-2016
## 3430 477.5 40.7 20.0 60.0 2552.7 2015-2016
## 3431 467.9 44.5 25.0 0.0 2562.8 2015-2016
## 3432 475.0 52.7 31.0 0.0 2626.3 2015-2016
## 3433 488.5 47.0 26.0 0.0 2644.6 2015-2016
## 3434 474.8 43.4 22.0 60.0 2598.9 2015-2016
## 3435 481.6 50.7 27.0 60.0 2632.6 2015-2016
## 3436 472.4 48.5 27.0 0.0 2600.5 2015-2016
## 3437 470.4 54.7 32.0 60.0 2601.2 2015-2016
## 3438 481.2 49.8 29.0 0.0 2665.0 2015-2016
## 3439 476.5 56.6 35.0 60.0 2628.8 2015-2016
## 3440 479.0 48.5 27.0 60.0 2671.7 2015-2016
## 3441 477.7 58.4 38.0 0.0 2665.9 2015-2016
## 3442 486.2 47.2 24.0 0.0 2690.0 2015-2016
## 3443 483.4 44.1 23.0 0.0 2646.2 2015-2016
## 3444 461.6 46.2 25.0 180.0 2532.3 2015-2016
## 3445 467.6 46.3 24.0 0.0 2544.6 2015-2016
## 3446 480.7 58.1 38.0 0.0 2652.8 2015-2016
## 3447 480.9 58.5 36.0 60.0 2648.0 2015-2016
## 3448 485.5 42.2 22.0 0.0 2712.6 2015-2016
## 3449 452.6 62.2 42.0 60.0 2565.1 2015-2016
## 3450 482.8 41.8 21.0 120.0 2596.6 2015-2016
## 3451 485.6 58.5 36.0 60.0 2686.0 2015-2016
## 3452 471.9 52.2 30.0 120.0 2626.3 2015-2016
## 3453 490.7 45.9 22.0 60.0 2670.3 2015-2016
## 3454 494.5 51.8 30.0 0.0 2720.7 2015-2016
## 3455 484.9 46.7 25.0 120.0 2607.0 2015-2016
## 3456 474.4 48.8 27.0 120.0 2661.0 2015-2016
## 3457 474.4 49.0 27.0 60.0 2631.7 2015-2016
## 3458 471.6 48.9 27.0 60.0 2629.6 2015-2016
## 3459 484.3 44.1 24.0 0.0 2634.9 2015-2016
## 3460 484.3 46.3 24.0 0.0 2693.7 2015-2016
## 3461 478.7 51.5 31.0 60.0 2645.1 2015-2016
## 3462 488.2 52.0 30.0 0.0 2696.4 2015-2016
## 3463 479.5 52.1 29.0 60.0 2649.6 2015-2016
## 3464 483.7 42.9 21.0 60.0 2661.0 2015-2016
## 3465 512.1 51.9 29.0 60.0 2752.3 2015-2016
## 3466 474.6 46.8 26.0 60.0 2659.5 2015-2016
## 3467 487.0 46.0 22.0 60.0 2713.6 2015-2016
## 3468 482.6 53.5 31.0 60.0 2652.5 2015-2016
## 3469 476.4 58.7 36.0 180.0 2605.9 2015-2016
## 3470 490.7 54.0 35.0 60.0 2650.2 2015-2016
## 3471 502.4 50.1 27.0 60.0 2735.8 2015-2016
## 3472 481.8 44.9 24.0 60.0 2624.8 2015-2016
## 3473 508.8 53.6 32.0 0.0 2765.5 2015-2016
## 3474 510.8 48.7 24.0 0.0 2755.0 2015-2016
## 3475 497.8 46.8 23.0 0.0 2716.3 2015-2016
## 3476 497.9 41.3 20.0 0.0 2730.1 2015-2016
## 3477 461.3 60.3 39.0 60.0 2575.4 2015-2016
## 3478 485.1 48.8 27.0 60.0 2669.0 2015-2016
## 3479 486.4 45.5 25.0 0.0 2664.6 2015-2016
## 3480 502.5 62.9 40.0 0.0 2744.4 2015-2016
## 3481 492.3 51.4 28.0 60.0 2668.8 2015-2016
## 3482 499.3 51.6 28.0 0.0 2748.7 2015-2016
## 3483 487.0 53.0 32.0 120.0 2666.0 2015-2016
## 3484 477.2 43.7 22.0 0.0 2626.9 2015-2016
## 3485 495.1 45.7 23.0 0.0 2639.8 2015-2016
## 3486 487.6 50.1 27.0 60.0 2699.6 2015-2016
## 3487 493.4 48.8 26.0 120.0 2647.6 2015-2016
## 3488 489.2 46.3 25.0 60.0 2666.0 2015-2016
## 3489 482.0 46.1 22.0 60.0 2647.4 2015-2016
## 3490 510.6 47.3 26.0 60.0 2737.5 2015-2016
## 3491 497.9 67.8 45.0 0.0 2746.4 2015-2016
## 3492 506.6 52.2 29.0 120.0 2688.6 2015-2016
## 3493 491.6 51.7 31.0 120.0 2638.3 2015-2016
## 3494 507.0 61.0 35.0 120.0 2746.9 2015-2016
## 3495 508.5 50.9 26.0 60.0 2771.9 2015-2016
## 3496 494.6 59.0 37.0 120.0 2705.0 2015-2016
## 3497 480.5 48.8 27.0 60.0 2675.6 2015-2016
## 3498 503.4 66.1 45.0 120.0 2771.9 2015-2016
## 3499 497.4 50.7 27.0 180.0 2743.6 2015-2016
## 3500 470.7 41.3 19.0 0.0 2576.5 2015-2016
## 3501 521.7 74.5 51.0 0.0 2867.8 2015-2016
## 3502 498.5 52.2 29.0 0.0 2743.6 2015-2016
## 3503 519.5 50.1 28.0 0.0 2802.8 2015-2016
## 3504 507.2 50.3 26.0 0.0 2741.8 2015-2016
## 3505 479.6 47.5 25.0 120.0 2658.4 2015-2016
## 3506 515.3 56.1 33.0 60.0 2820.6 2015-2016
## 3507 489.4 59.6 35.0 180.0 2655.9 2015-2016
## 3508 501.9 51.0 27.0 60.0 2764.4 2015-2016
## 3509 510.9 50.5 27.0 60.0 2773.4 2015-2016
## 3510 515.7 60.0 37.0 120.0 2789.2 2015-2016
## 3511 495.7 50.0 27.0 60.0 2732.6 2015-2016
## 3512 517.8 47.1 24.0 60.0 2805.7 2015-2016
## 3513 492.0 52.1 28.0 0.0 2688.8 2015-2016
## 3514 498.0 53.4 31.0 60.0 2699.2 2015-2016
## 3515 517.9 49.6 27.0 180.0 2809.0 2015-2016
## 3516 513.3 58.9 35.0 0.0 2776.8 2015-2016
## 3517 513.2 42.0 19.0 60.0 2723.5 2015-2016
## 3518 501.0 54.7 31.0 60.0 2779.3 2015-2016
## 3519 506.6 53.6 27.0 120.0 2788.5 2015-2016
## 3520 527.3 57.9 36.0 120.0 2808.6 2015-2016
## 3521 492.1 52.9 31.0 120.0 2728.3 2015-2016
## 3522 514.1 63.7 41.0 60.0 2771.0 2015-2016
## 3523 497.2 54.1 31.0 60.0 2703.8 2015-2016
## 3524 465.2 50.9 29.0 240.0 2555.8 2015-2016
## 3525 474.5 44.5 21.0 60.0 2606.4 2015-2016
## 3526 543.9 55.7 33.0 60.0 2898.5 2015-2016
## 3527 550.5 61.1 38.0 60.0 2938.0 2015-2016
## 3528 514.2 44.4 22.0 120.0 2771.3 2015-2016
## 3529 525.1 68.5 44.0 120.0 2835.2 2015-2016
## 3530 525.7 72.6 48.0 240.0 2914.0 2015-2016
## 3531 519.4 64.5 40.0 120.0 2798.0 2015-2016
## 3532 447.7 48.2 27.0 3.3 0.0 2015-2016
## 3533 442.1 44.9 24.0 26.2 0.0 2015-2016
## 3534 441.6 45.8 25.0 25.4 0.0 2015-2016
## 3535 457.3 46.5 25.0 3.6 0.0 2015-2016
## 3536 462.7 52.3 31.0 3.2 0.0 2015-2016
## 3537 448.4 49.9 27.0 3.3 0.0 2015-2016
## 3538 462.7 47.7 25.0 26.7 0.0 2015-2016
## 3539 463.8 49.8 27.0 3.3 0.0 2015-2016
## 3540 462.9 47.5 24.0 3.5 0.0 2015-2016
## 3541 464.9 48.3 25.0 3.8 0.0 2015-2016
## 3542 454.9 46.5 24.0 3.3 0.0 2015-2016
## 3543 458.2 47.0 24.0 26.0 0.0 2015-2016
## 3544 449.6 43.7 21.0 3.4 0.0 2015-2016
## 3545 466.7 48.6 26.0 26.9 0.0 2015-2016
## 3546 470.5 46.8 24.0 3.4 0.0 2015-2016
## 3547 463.1 47.2 25.0 26.5 0.0 2015-2016
## 3548 466.8 55.2 32.0 26.4 0.0 2015-2016
## 3549 457.2 52.3 32.0 3.5 0.0 2015-2016
## 3550 450.3 49.8 28.0 51.7 0.0 2015-2016
## 3551 480.1 49.9 29.0 3.4 0.0 2015-2016
## 3552 476.0 47.9 24.0 3.6 0.0 2015-2016
## 3553 474.3 46.1 25.0 3.7 0.0 2015-2016
## 3554 457.0 51.6 29.0 3.3 0.0 2015-2016
## 3555 458.1 53.0 32.0 27.3 0.0 2015-2016
## 3556 463.2 48.4 26.0 53.2 0.0 2015-2016
## 3557 461.7 48.3 27.0 52.8 0.0 2015-2016
## 3558 474.8 50.0 29.0 3.5 0.0 2015-2016
## 3559 487.1 50.1 30.0 3.5 0.0 2015-2016
## 3560 465.2 51.1 31.0 52.1 0.0 2015-2016
## 3561 481.2 53.6 34.0 78.4 0.0 2015-2016
## 3562 363.9 41.2 22.0 3.8 0.0 2015-2016
## 3563 373.3 42.5 22.0 3.2 0.0 2015-2016
## 3564 363.5 47.1 24.0 3.0 0.0 2015-2016
## 3565 366.2 44.1 24.0 3.2 0.0 2015-2016
## 3566 379.2 43.9 25.0 2.9 0.0 2015-2016
## 3567 376.3 41.6 21.0 3.4 0.0 2015-2016
## 3568 375.7 42.4 22.0 22.9 0.0 2015-2016
## 3569 370.9 42.1 21.0 3.2 0.0 2015-2016
## 3570 371.3 46.7 27.0 2.9 0.0 2015-2016
## 3571 378.6 41.6 21.0 23.4 0.0 2015-2016
## 3572 369.2 48.1 27.0 22.7 0.0 2015-2016
## 3573 378.4 41.5 23.0 23.3 0.0 2015-2016
## 3574 365.4 45.7 26.0 66.7 0.0 2015-2016
## 3575 377.2 45.0 25.0 3.0 0.0 2015-2016
## 3576 378.2 42.3 24.0 2.8 0.0 2015-2016
## 3577 377.9 46.4 26.0 42.8 0.0 2015-2016
## 3578 381.1 47.0 29.0 3.1 0.0 2015-2016
## 3579 377.1 43.9 24.0 23.7 0.0 2015-2016
## 3580 372.2 45.3 24.0 43.0 0.0 2015-2016
## 3581 392.8 49.6 30.0 2.9 0.0 2015-2016
## 3582 381.0 38.6 19.0 3.1 0.0 2015-2016
## 3583 376.4 40.8 22.0 2.8 0.0 2015-2016
## 3584 371.1 44.9 26.0 24.0 0.0 2015-2016
## 3585 375.2 51.1 30.0 44.3 0.0 2015-2016
## 3586 382.9 41.7 23.0 3.0 0.0 2015-2016
## 3587 365.7 46.7 26.0 86.1 0.0 2015-2016
## 3588 393.7 45.0 26.0 3.1 0.0 2015-2016
## 3589 386.3 49.9 29.0 45.0 0.0 2015-2016
## 3590 393.7 44.9 23.0 24.7 0.0 2015-2016
## 3591 385.4 50.5 30.0 45.1 0.0 2015-2016
## 3592 357.4 41.4 21.0 3.7 0.0 2015-2016
## 3593 357.3 37.6 19.0 26.9 0.0 2015-2016
## 3594 356.3 49.0 27.0 3.5 0.0 2015-2016
## 3595 353.7 40.9 21.0 26.9 0.0 2015-2016
## 3596 355.3 43.3 23.0 26.6 0.0 2015-2016
## 3597 351.9 44.5 27.0 3.4 0.0 2015-2016
## 3598 357.8 42.8 22.0 50.4 0.0 2015-2016
## 3599 359.3 43.3 23.0 26.4 0.0 2015-2016
## 3600 352.4 45.7 25.0 26.0 0.0 2015-2016
## 3601 365.8 44.7 24.0 27.0 0.0 2015-2016
## 3602 351.8 49.9 28.0 27.2 0.0 2015-2016
## 3603 349.8 53.6 31.0 26.4 0.0 2015-2016
## 3604 355.5 44.7 24.0 3.8 0.0 2015-2016
## 3605 355.8 44.3 21.0 26.1 0.0 2015-2016
## 3606 360.0 47.2 26.0 26.1 0.0 2015-2016
## 3607 366.5 49.0 27.0 3.6 0.0 2015-2016
## 3608 355.4 47.0 26.0 3.4 0.0 2015-2016
## 3609 341.1 45.1 25.0 25.7 0.0 2015-2016
## 3610 360.2 41.1 20.0 3.6 0.0 2015-2016
## 3611 356.9 43.8 22.0 26.6 0.0 2015-2016
## 3612 362.2 48.9 29.0 25.9 0.0 2015-2016
## 3613 362.8 47.0 28.0 3.5 0.0 2015-2016
## 3614 356.5 49.0 27.0 51.0 0.0 2015-2016
## 3615 361.1 44.0 25.0 3.4 0.0 2015-2016
## 3616 363.4 51.2 29.0 25.9 0.0 2015-2016
## 3617 356.5 42.7 22.0 49.0 0.0 2015-2016
## 3618 361.2 47.6 26.0 26.8 0.0 2015-2016
## 3619 371.4 45.8 25.0 28.9 0.0 2015-2016
## 3620 373.5 50.5 29.0 4.3 0.0 2015-2016
## 3621 360.3 48.0 28.0 51.1 0.0 2015-2016
## 3622 359.2 41.3 19.0 3.6 0.0 2015-2016
## 3623 356.6 44.5 24.0 28.1 0.0 2015-2016
## 3624 374.4 47.3 28.0 29.0 0.0 2015-2016
## 3625 361.2 39.7 18.0 28.3 0.0 2015-2016
## 3626 362.1 49.3 27.0 3.6 0.0 2015-2016
## 3627 364.9 44.1 23.0 28.2 0.0 2015-2016
## 3628 368.6 46.1 24.0 28.6 0.0 2015-2016
## 3629 365.7 42.1 20.0 29.3 0.0 2015-2016
## 3630 361.9 52.4 31.0 29.0 0.0 2015-2016
## 3631 371.2 50.9 29.0 3.6 0.0 2015-2016
## 3632 367.1 48.2 25.0 3.9 0.0 2015-2016
## 3633 366.7 49.2 26.0 28.1 0.0 2015-2016
## 3634 370.3 44.0 22.0 26.3 0.0 2015-2016
## 3635 363.3 49.9 28.0 49.9 0.0 2015-2016
## 3636 357.0 45.5 22.0 28.5 0.0 2015-2016
## 3637 359.0 45.4 22.0 51.1 0.0 2015-2016
## 3638 386.6 49.8 28.0 3.6 0.0 2015-2016
## 3639 382.6 45.7 24.0 4.2 0.0 2015-2016
## 3640 373.3 52.0 29.0 28.4 0.0 2015-2016
## 3641 371.2 49.9 26.0 54.0 0.0 2015-2016
## 3642 355.5 49.0 27.0 3.5 0.0 2015-2016
## 3643 387.0 45.5 25.0 3.7 0.0 2015-2016
## 3644 398.8 46.1 24.0 3.8 0.0 2015-2016
## 3645 393.5 42.3 21.0 3.5 0.0 2015-2016
## 3646 382.2 53.1 32.0 28.1 0.0 2015-2016
## 3647 392.1 52.8 32.0 81.0 0.0 2015-2016
## 3648 390.7 50.9 28.0 56.4 0.0 2015-2016
## 3649 396.4 44.4 25.0 3.7 0.0 2015-2016
## 3650 565.8 42.6 23.0 0.0 2405.3 2016-2017
## 3651 561.6 45.3 23.0 0.0 2389.7 2016-2017
## 3652 577.3 46.7 26.0 60.0 2452.5 2016-2017
## 3653 577.4 47.2 28.0 0.0 2459.1 2016-2017
## 3654 563.3 54.2 32.0 60.0 2423.7 2016-2017
## 3655 573.3 52.8 32.0 0.0 2465.9 2016-2017
## 3656 582.6 47.6 26.0 60.0 2473.8 2016-2017
## 3657 581.0 53.9 32.0 60.0 2489.4 2016-2017
## 3658 574.7 48.5 29.0 60.0 2438.0 2016-2017
## 3659 588.5 48.1 26.0 60.0 2483.5 2016-2017
## 3660 574.5 49.4 28.0 60.0 2452.2 2016-2017
## 3661 571.2 46.4 25.0 60.0 2441.7 2016-2017
## 3662 587.5 42.1 20.0 0.0 2487.6 2016-2017
## 3663 586.0 45.1 25.0 0.0 2472.1 2016-2017
## 3664 568.0 49.4 29.0 120.0 2428.6 2016-2017
## 3665 593.7 47.8 27.0 0.0 2533.9 2016-2017
## 3666 596.4 50.2 27.0 0.0 2529.4 2016-2017
## 3667 588.0 50.4 29.0 60.0 2510.6 2016-2017
## 3668 589.9 54.8 33.0 60.0 2503.2 2016-2017
## 3669 589.2 47.7 27.0 60.0 2502.3 2016-2017
## 3670 590.0 45.7 25.0 60.0 2460.6 2016-2017
## 3671 592.8 59.9 40.0 120.0 2540.5 2016-2017
## 3672 585.9 54.3 33.0 60.0 2476.3 2016-2017
## 3673 575.8 45.9 28.0 60.0 2427.6 2016-2017
## 3674 593.8 49.6 27.0 60.0 2525.3 2016-2017
## 3675 585.2 45.5 24.0 0.0 2488.1 2016-2017
## 3676 609.4 54.4 35.0 0.0 2584.0 2016-2017
## 3677 595.1 46.7 24.0 0.0 2552.8 2016-2017
## 3678 603.2 49.4 28.0 0.0 2546.6 2016-2017
## 3679 561.4 54.9 35.0 180.0 2472.0 2016-2017
## 3680 601.5 50.2 28.0 0.0 2572.9 2016-2017
## 3681 583.1 53.0 32.0 180.0 2464.8 2016-2017
## 3682 605.4 44.7 25.0 0.0 2562.2 2016-2017
## 3683 583.6 60.5 40.0 120.0 2477.8 2016-2017
## 3684 630.6 55.9 32.0 0.0 2671.6 2016-2017
## 3685 606.6 46.9 25.0 60.0 2542.5 2016-2017
## 3686 586.6 45.9 26.0 0.0 2493.8 2016-2017
## 3687 588.9 46.6 25.0 60.0 2490.7 2016-2017
## 3688 589.6 45.3 25.0 120.0 2483.6 2016-2017
## 3689 601.4 56.2 33.0 60.0 2540.2 2016-2017
## 3690 591.9 47.6 24.0 60.0 2544.2 2016-2017
## 3691 591.5 50.3 29.0 60.0 2508.2 2016-2017
## 3692 593.8 52.8 32.0 60.0 2543.3 2016-2017
## 3693 593.2 59.7 37.0 60.0 2552.9 2016-2017
## 3694 591.3 44.9 24.0 0.0 2510.8 2016-2017
## 3695 611.4 50.1 31.0 60.0 2608.9 2016-2017
## 3696 607.7 50.3 27.0 0.0 2556.7 2016-2017
## 3697 600.8 48.3 25.0 60.0 2566.2 2016-2017
## 3698 604.4 54.9 33.0 60.0 2558.9 2016-2017
## 3699 607.9 48.2 26.0 0.0 2561.7 2016-2017
## 3700 609.9 59.1 34.0 120.0 2573.6 2016-2017
## 3701 617.0 48.5 26.0 60.0 2623.7 2016-2017
## 3702 587.1 47.8 26.0 60.0 2652.5 2016-2017
## 3703 604.9 52.6 30.0 0.0 2572.5 2016-2017
## 3704 626.4 56.3 33.0 60.0 2639.5 2016-2017
## 3705 611.2 49.3 28.0 60.0 2578.3 2016-2017
## 3706 593.9 44.3 23.0 60.0 2543.1 2016-2017
## 3707 577.1 54.2 33.0 120.0 2507.2 2016-2017
## 3708 580.0 49.3 27.0 0.0 2509.4 2016-2017
## 3709 621.9 50.3 29.0 0.0 2655.6 2016-2017
## 3710 593.0 50.6 29.0 60.0 2507.5 2016-2017
## 3711 611.3 61.3 39.0 60.0 2610.4 2016-2017
## 3712 568.5 68.4 47.0 180.0 2465.3 2016-2017
## 3713 599.4 55.6 35.0 180.0 2562.5 2016-2017
## 3714 630.6 54.5 31.0 120.0 2666.5 2016-2017
## 3715 618.6 60.7 38.0 60.0 2615.8 2016-2017
## 3716 584.4 49.3 29.0 120.0 2518.9 2016-2017
## 3717 611.6 49.7 30.0 60.0 2566.0 2016-2017
## 3718 604.8 53.8 32.0 60.0 2568.7 2016-2017
## 3719 585.0 54.5 30.0 120.0 2517.1 2016-2017
## 3720 583.8 51.4 28.0 0.0 2510.8 2016-2017
## 3721 600.0 49.0 27.0 60.0 2544.4 2016-2017
## 3722 620.2 48.2 24.0 0.0 2614.8 2016-2017
## 3723 609.4 46.6 26.0 60.0 2553.4 2016-2017
## 3724 590.7 47.6 27.0 60.0 2489.9 2016-2017
## 3725 613.0 72.6 51.0 120.0 2608.1 2016-2017
## 3726 635.8 48.9 25.0 0.0 2649.0 2016-2017
## 3727 654.2 53.3 30.0 0.0 2765.4 2016-2017
## 3728 620.6 41.5 20.0 60.0 2620.5 2016-2017
## 3729 624.6 46.6 25.0 60.0 2614.1 2016-2017
## 3730 600.6 52.2 30.0 120.0 2529.0 2016-2017
## 3731 604.1 48.1 26.0 60.0 2537.6 2016-2017
## 3732 599.1 47.1 24.0 120.0 2483.6 2016-2017
## 3733 599.9 49.2 25.0 120.0 2554.0 2016-2017
## 3734 581.2 49.6 28.0 120.0 2476.0 2016-2017
## 3735 594.3 48.9 28.0 120.0 2514.1 2016-2017
## 3736 622.1 43.5 23.0 60.0 2543.6 2016-2017
## 3737 646.7 56.3 32.0 0.0 2723.5 2016-2017
## 3738 615.0 55.4 30.0 120.0 2580.5 2016-2017
## 3739 643.6 46.5 24.0 0.0 2666.4 2016-2017
## 3740 604.1 51.0 27.0 0.0 2545.0 2016-2017
## 3741 607.2 68.4 46.0 120.0 2598.1 2016-2017
## 3742 637.2 53.7 30.0 60.0 2698.2 2016-2017
## 3743 629.2 55.8 33.0 60.0 2645.4 2016-2017
## 3744 616.7 52.0 30.0 60.0 2610.2 2016-2017
## 3745 608.2 46.2 24.0 120.0 2524.3 2016-2017
## 3746 626.0 54.1 32.0 0.0 2690.1 2016-2017
## 3747 633.9 43.6 21.0 180.0 2642.6 2016-2017
## 3748 625.7 56.8 32.0 60.0 2645.2 2016-2017
## 3749 618.3 56.3 32.0 120.0 2601.2 2016-2017
## 3750 662.4 55.5 31.0 60.0 2787.3 2016-2017
## 3751 666.9 53.0 30.0 60.0 2718.1 2016-2017
## 3752 604.4 53.1 31.0 180.0 2574.3 2016-2017
## 3753 658.3 56.4 31.0 120.0 2755.6 2016-2017
## 3754 617.5 63.5 38.0 120.0 2641.8 2016-2017
## 3755 397.3 44.8 28.0 9.1 0.0 2016-2017
## 3756 388.2 43.4 26.0 9.7 0.0 2016-2017
## 3757 393.0 45.6 26.0 7.8 0.0 2016-2017
## 3758 387.5 48.9 29.0 29.7 0.0 2016-2017
## 3759 381.4 41.8 25.0 47.4 0.0 2016-2017
## 3760 387.9 45.7 28.0 29.1 0.0 2016-2017
## 3761 393.1 51.8 32.0 8.7 0.0 2016-2017
## 3762 407.2 51.4 33.0 29.2 0.0 2016-2017
## 3763 409.6 42.3 24.0 7.7 0.0 2016-2017
## 3764 388.7 44.6 27.0 48.6 0.0 2016-2017
## 3765 414.8 43.2 22.0 28.8 0.0 2016-2017
## 3766 411.9 43.7 26.0 7.0 0.0 2016-2017
## 3767 413.4 46.0 27.0 29.0 0.0 2016-2017
## 3768 403.1 43.8 23.0 52.2 0.0 2016-2017
## 3769 404.3 42.5 25.0 27.6 0.0 2016-2017
## 3770 419.7 46.6 26.0 29.7 0.0 2016-2017
## 3771 419.1 50.4 31.0 28.9 0.0 2016-2017
## 3772 420.5 45.0 23.0 8.0 0.0 2016-2017
## 3773 405.3 49.5 30.0 49.5 0.0 2016-2017
## 3774 418.1 46.7 26.0 50.2 0.0 2016-2017
## 3775 422.0 44.9 25.0 7.9 0.0 2016-2017
## 3776 457.5 43.7 23.0 8.1 0.0 2016-2017
## 3777 418.6 41.7 24.0 7.7 0.0 2016-2017
## 3778 420.3 45.9 26.0 7.9 0.0 2016-2017
## 3779 433.4 49.5 31.0 29.5 0.0 2016-2017
## 3780 409.0 54.1 33.0 71.4 0.0 2016-2017
## 3781 416.8 48.3 29.0 29.1 0.0 2016-2017
## 3782 423.0 52.8 33.0 50.3 0.0 2016-2017
## 3783 433.4 45.3 24.0 30.8 0.0 2016-2017
## 3784 435.1 52.6 30.0 29.9 0.0 2016-2017
## 3785 440.0 51.9 30.0 4.1 0.0 2016-2017
## 3786 440.7 45.0 22.0 4.7 0.0 2016-2017
## 3787 436.4 47.1 25.0 26.2 0.0 2016-2017
## 3788 451.1 48.0 23.0 4.8 0.0 2016-2017
## 3789 446.6 45.8 22.0 26.3 0.0 2016-2017
## 3790 450.7 49.2 26.0 4.8 0.0 2016-2017
## 3791 444.9 47.0 23.0 25.1 0.0 2016-2017
## 3792 446.5 45.3 23.0 25.3 0.0 2016-2017
## 3793 446.8 48.6 24.0 5.2 0.0 2016-2017
## 3794 445.8 51.0 27.0 4.4 0.0 2016-2017
## 3795 461.3 50.2 26.0 4.7 0.0 2016-2017
## 3796 434.4 51.8 28.0 47.6 0.0 2016-2017
## 3797 452.4 51.6 27.0 4.7 0.0 2016-2017
## 3798 447.2 49.3 25.0 26.3 0.0 2016-2017
## 3799 461.1 47.7 25.0 4.6 0.0 2016-2017
## 3800 460.3 51.3 26.0 4.8 0.0 2016-2017
## 3801 440.5 53.1 30.0 47.3 0.0 2016-2017
## 3802 452.4 47.1 26.0 24.6 0.0 2016-2017
## 3803 450.4 51.9 29.0 49.9 0.0 2016-2017
## 3804 456.4 50.5 28.0 4.3 0.0 2016-2017
## 3805 443.8 48.4 25.0 48.7 0.0 2016-2017
## 3806 447.1 44.7 20.0 44.7 0.0 2016-2017
## 3807 478.1 49.5 26.0 4.7 0.0 2016-2017
## 3808 452.0 51.3 28.0 47.5 0.0 2016-2017
## 3809 454.2 49.3 25.0 26.2 0.0 2016-2017
## 3810 457.8 53.8 29.0 26.4 0.0 2016-2017
## 3811 454.5 45.0 24.0 4.4 0.0 2016-2017
## 3812 453.6 49.2 24.0 27.9 0.0 2016-2017
## 3813 475.9 52.2 27.0 5.3 0.0 2016-2017
## 3814 450.0 50.8 26.0 47.0 0.0 2016-2017
## 3815 468.7 51.6 27.0 25.8 0.0 2016-2017
## 3816 468.3 49.3 25.0 4.9 0.0 2016-2017
## 3817 464.3 49.3 24.0 28.1 0.0 2016-2017
## 3818 444.6 47.5 22.0 48.9 0.0 2016-2017
## 3819 455.1 44.5 21.0 26.0 0.0 2016-2017
## 3820 447.3 52.2 24.0 27.2 0.0 2016-2017
## 3821 444.2 49.5 26.0 70.7 0.0 2016-2017
## 3822 467.8 49.6 25.0 4.5 0.0 2016-2017
## 3823 456.5 46.9 23.0 5.1 0.0 2016-2017
## 3824 455.6 51.8 28.0 46.3 0.0 2016-2017
## 3825 451.1 49.1 26.0 69.3 0.0 2016-2017
## 3826 448.3 52.5 27.0 26.8 0.0 2016-2017
## 3827 437.4 47.2 25.0 71.1 0.0 2016-2017
## 3828 457.2 55.0 31.0 26.8 0.0 2016-2017
## 3829 456.3 49.8 25.0 49.1 0.0 2016-2017
## 3830 460.7 52.1 27.0 29.2 0.0 2016-2017
## 3831 468.9 53.9 29.0 47.9 0.0 2016-2017
## 3832 467.9 55.0 27.0 28.1 0.0 2016-2017
## 3833 457.0 45.5 23.0 49.4 0.0 2016-2017
## 3834 460.6 51.9 26.0 27.2 0.0 2016-2017
## 3835 460.9 46.9 24.0 25.9 0.0 2016-2017
## 3836 453.6 47.6 23.0 27.2 0.0 2016-2017
## 3837 468.2 55.1 29.0 28.1 0.0 2016-2017
## 3838 471.1 50.1 24.0 5.0 0.0 2016-2017
## 3839 460.8 56.4 32.0 50.3 0.0 2016-2017
## 3840 464.0 50.2 28.0 24.8 0.0 2016-2017
## 3841 448.4 55.3 31.0 25.9 0.0 2016-2017
## 3842 465.2 52.9 28.0 5.8 0.0 2016-2017
## 3843 451.6 51.1 27.0 49.7 0.0 2016-2017
## 3844 473.3 51.7 27.0 5.2 0.0 2016-2017
## 3845 458.5 55.6 31.0 25.6 0.0 2016-2017
## 3846 474.7 56.3 31.0 4.9 0.0 2016-2017
## 3847 469.5 50.5 24.0 29.4 0.0 2016-2017
## 3848 472.9 44.9 20.0 27.9 0.0 2016-2017
## 3849 455.4 53.1 27.0 77.7 0.0 2016-2017
## 3850 467.4 49.5 24.0 28.0 0.0 2016-2017
## 3851 474.4 50.6 24.0 49.5 0.0 2016-2017
## 3852 474.0 49.7 23.0 51.9 0.0 2016-2017
## 3853 466.5 48.8 24.0 28.7 0.0 2016-2017
## 3854 467.3 51.7 28.0 29.2 0.0 2016-2017
## 3855 477.4 57.8 31.0 28.4 0.0 2016-2017
## 3856 484.8 51.1 26.0 4.9 0.0 2016-2017
## 3857 482.4 54.4 29.0 52.7 0.0 2016-2017
## 3858 477.3 49.6 26.0 26.6 0.0 2016-2017
## 3859 462.4 56.5 32.0 71.9 0.0 2016-2017
## 3860 465.4 51.2 26.0 28.0 0.0 2016-2017
## 3861 451.0 47.9 24.0 26.8 0.0 2016-2017
## 3862 469.3 49.4 25.0 54.7 0.0 2016-2017
## 3863 477.4 47.5 21.0 28.1 0.0 2016-2017
## 3864 478.0 52.5 28.0 4.8 0.0 2016-2017
## 3865 478.1 56.2 29.0 30.4 0.0 2016-2017
## 3866 463.4 68.4 43.0 52.5 0.0 2016-2017
## 3867 456.3 57.5 31.0 74.3 0.0 2016-2017
## 3868 478.5 54.7 30.0 51.0 0.0 2016-2017
## 3869 471.0 47.7 22.0 27.4 0.0 2016-2017
## 3870 492.5 51.9 26.0 29.7 0.0 2016-2017
## 3871 495.0 49.3 24.0 29.4 0.0 2016-2017
## 3872 492.4 55.3 28.0 60.6 0.0 2016-2017
## 3873 489.4 57.5 30.0 30.0 0.0 2016-2017
## 3874 501.4 58.4 31.0 31.7 0.0 2016-2017
## 3875 505.2 69.4 46.0 27.9 0.0 2016-2017
## 3876 454.2 59.0 32.0 128.4 0.0 2016-2017
## 3877 471.1 115.3 90.0 71.4 0.0 2016-2017
## 3878 514.5 62.5 36.0 29.7 0.0 2016-2017
## 3879 479.0 61.9 35.0 78.7 0.0 2016-2017
## 3880 501.0 56.0 28.0 32.8 0.0 2016-2017
## 3881 497.0 54.8 29.0 30.6 0.0 2016-2017
## 3882 498.3 54.8 28.0 29.6 0.0 2016-2017
## 3883 492.6 53.8 27.0 56.4 0.0 2016-2017
## 3884 494.7 63.3 37.0 54.8 0.0 2016-2017
## 3885 510.7 57.1 30.0 85.6 0.0 2016-2017
## 3886 508.5 69.0 41.0 106.1 0.0 2016-2017
## 3887 553.7 48.4 24.0 0.0 2346.4 2016-2017
## 3888 552.0 44.5 22.0 0.0 2352.8 2016-2017
## 3889 533.7 45.5 21.0 0.0 2266.2 2016-2017
## 3890 550.5 50.1 27.0 0.0 2335.5 2016-2017
## 3891 547.0 50.4 26.0 0.0 2331.9 2016-2017
## 3892 555.9 55.4 31.0 0.0 2398.7 2016-2017
## 3893 538.6 46.0 23.0 0.0 2294.0 2016-2017
## 3894 544.1 45.0 21.0 60.0 2309.5 2016-2017
## 3895 557.6 44.6 21.0 0.0 2365.6 2016-2017
## 3896 539.8 61.4 37.0 60.0 2366.5 2016-2017
## 3897 563.6 49.5 24.0 0.0 2372.5 2016-2017
## 3898 552.0 55.7 31.0 60.0 2324.9 2016-2017
## 3899 544.0 49.5 25.0 0.0 2338.3 2016-2017
## 3900 537.4 47.1 24.0 0.0 2312.4 2016-2017
## 3901 557.2 57.7 32.0 0.0 2403.4 2016-2017
## 3902 554.7 53.6 29.0 60.0 2349.0 2016-2017
## 3903 538.4 45.8 22.0 60.0 2320.2 2016-2017
## 3904 542.7 51.2 28.0 60.0 2327.6 2016-2017
## 3905 543.4 56.0 33.0 0.0 2330.7 2016-2017
## 3906 546.9 48.0 24.0 60.0 2322.1 2016-2017
## 3907 543.0 48.0 26.0 60.0 2336.2 2016-2017
## 3908 563.4 49.5 28.0 0.0 2389.4 2016-2017
## 3909 554.8 53.4 29.0 60.0 2391.1 2016-2017
## 3910 550.7 52.2 27.0 0.0 2352.6 2016-2017
## 3911 549.6 66.0 41.0 60.0 2363.4 2016-2017
## 3912 545.8 51.9 28.0 60.0 2357.5 2016-2017
## 3913 559.0 49.8 21.0 0.0 2349.4 2016-2017
## 3914 586.8 56.5 31.0 0.0 2483.9 2016-2017
## 3915 585.8 49.7 25.0 0.0 2482.9 2016-2017
## 3916 576.8 57.8 32.0 0.0 2480.8 2016-2017
## 3917 562.3 51.1 25.0 60.0 2405.7 2016-2017
## 3918 578.6 51.9 26.0 0.0 2417.3 2016-2017
## 3919 571.1 48.3 22.0 60.0 2397.6 2016-2017
## 3920 560.1 45.6 22.0 0.0 2362.6 2016-2017
## 3921 554.2 50.1 26.0 0.0 2353.4 2016-2017
## 3922 552.9 51.9 26.0 120.0 2356.2 2016-2017
## 3923 553.1 55.0 30.0 0.0 2411.2 2016-2017
## 3924 560.9 53.6 28.0 60.0 2417.7 2016-2017
## 3925 567.9 52.2 26.0 0.0 2418.0 2016-2017
## 3926 570.0 55.2 29.0 60.0 2412.8 2016-2017
## 3927 549.2 50.4 24.0 60.0 2365.7 2016-2017
## 3928 597.9 57.4 30.0 60.0 2521.4 2016-2017
## 3929 585.1 53.2 27.0 60.0 2460.0 2016-2017
## 3930 574.3 51.4 26.0 60.0 2423.0 2016-2017
## 3931 578.6 51.6 26.0 60.0 2470.6 2016-2017
## 3932 565.4 51.3 26.0 0.0 2420.9 2016-2017
## 3933 573.3 46.9 22.0 60.0 2376.5 2016-2017
## 3934 566.2 55.6 30.0 60.0 2441.7 2016-2017
## 3935 571.3 54.1 27.0 60.0 2451.9 2016-2017
## 3936 584.1 49.2 26.0 60.0 2456.7 2016-2017
## 3937 562.4 51.5 25.0 0.0 2397.7 2016-2017
## 3938 559.8 54.5 28.0 60.0 2415.1 2016-2017
## 3939 592.4 50.4 24.0 0.0 2512.0 2016-2017
## 3940 555.0 49.2 24.0 60.0 2391.4 2016-2017
## 3941 557.0 47.5 21.0 60.0 2421.6 2016-2017
## 3942 542.7 48.0 23.0 180.0 2327.0 2016-2017
## 3943 576.9 57.4 33.0 60.0 2489.2 2016-2017
## 3944 577.9 49.0 24.0 0.0 2439.1 2016-2017
## 3945 578.2 50.8 25.0 0.0 2444.3 2016-2017
## 3946 594.5 55.9 29.0 60.0 2504.1 2016-2017
## 3947 571.6 72.9 47.0 120.0 2469.2 2016-2017
## 3948 585.2 54.0 29.0 120.0 2491.2 2016-2017
## 3949 585.8 56.3 27.0 60.0 2512.6 2016-2017
## 3950 577.3 65.8 40.0 120.0 2436.0 2016-2017
## 3951 583.7 55.5 28.0 0.0 2455.6 2016-2017
## 3952 609.4 56.8 29.0 60.0 2561.2 2016-2017
## 3953 564.8 51.1 26.0 60.0 2442.8 2016-2017
## 3954 585.3 51.1 25.0 0.0 2479.9 2016-2017
## 3955 619.8 56.6 29.0 0.0 2601.6 2016-2017
## 3956 579.1 58.6 32.0 180.0 2451.2 2016-2017
## 3957 607.0 54.9 26.0 60.0 2543.4 2016-2017
## 3958 555.6 47.5 22.0 60.0 2360.7 2016-2017
## 3959 583.6 57.9 31.0 60.0 2483.7 2016-2017
## 3960 583.1 52.5 24.0 0.0 2498.9 2016-2017
## 3961 616.0 50.2 26.0 60.0 2577.0 2016-2017
## 3962 594.8 50.3 27.0 120.0 2491.3 2016-2017
## 3963 597.6 58.7 33.0 60.0 2548.8 2016-2017
## 3964 602.2 55.7 31.0 60.0 2553.1 2016-2017
## 3965 564.6 58.3 30.0 120.0 2476.4 2016-2017
## 3966 569.4 51.8 28.0 60.0 2412.9 2016-2017
## 3967 579.3 55.5 30.0 180.0 2474.2 2016-2017
## 3968 620.5 55.9 27.0 60.0 2588.1 2016-2017
## 3969 612.1 61.8 34.0 120.0 2662.8 2016-2017
## 3970 578.4 56.5 28.0 180.0 2451.3 2016-2017
## 3971 589.1 55.9 29.0 120.0 2513.0 2016-2017
## 3972 607.8 57.9 31.0 120.0 2551.1 2016-2017
## 3973 592.1 56.4 30.0 60.0 2518.3 2016-2017
## 3974 598.9 55.8 27.0 120.0 2451.4 2016-2017
## 3975 601.9 55.3 29.0 60.0 2598.6 2016-2017
## 3976 597.4 56.0 30.0 60.0 2547.4 2016-2017
## 3977 628.3 55.8 27.0 60.0 2595.2 2016-2017
## 3978 616.6 53.9 26.0 60.0 2619.1 2016-2017
## 3979 619.0 60.0 32.0 120.0 2595.7 2016-2017
## 3980 629.0 55.8 27.0 60.0 2637.7 2016-2017
## 3981 625.2 61.3 33.0 60.0 2672.1 2016-2017
## 3982 568.2 69.8 40.0 240.0 2480.6 2016-2017
## 3983 613.2 71.7 45.0 180.0 2607.6 2016-2017
## 3984 634.2 48.1 22.0 180.0 2645.7 2016-2017
## 3985 655.9 59.0 30.0 60.0 2801.1 2016-2017
## 3986 597.1 60.6 35.0 180.0 2595.5 2016-2017
## 3987 389.3 45.6 26.0 4.5 0.0 2016-2017
## 3988 387.9 46.0 25.0 26.2 0.0 2016-2017
## 3989 394.4 41.6 20.0 4.9 0.0 2016-2017
## 3990 397.1 41.8 19.0 4.8 0.0 2016-2017
## 3991 388.9 48.7 30.0 47.9 0.0 2016-2017
## 3992 401.6 47.8 25.0 5.2 0.0 2016-2017
## 3993 388.4 45.6 27.0 44.8 0.0 2016-2017
## 3994 396.0 46.7 24.0 4.8 0.0 2016-2017
## 3995 393.6 46.5 25.0 4.7 0.0 2016-2017
## 3996 390.1 47.2 24.0 47.1 0.0 2016-2017
## 3997 393.9 45.7 23.0 4.8 0.0 2016-2017
## 3998 391.8 48.8 28.0 28.0 0.0 2016-2017
## 3999 395.7 50.7 27.0 25.5 0.0 2016-2017
## 4000 399.3 47.3 25.0 25.3 0.0 2016-2017
## 4001 394.1 42.3 20.0 4.6 0.0 2016-2017
## 4002 401.4 44.4 22.0 25.8 0.0 2016-2017
## 4003 399.7 48.9 25.0 4.8 0.0 2016-2017
## 4004 399.9 49.2 25.0 4.8 0.0 2016-2017
## 4005 388.2 44.9 22.0 24.8 0.0 2016-2017
## 4006 397.3 50.7 27.0 45.2 0.0 2016-2017
## 4007 394.6 49.5 27.0 4.6 0.0 2016-2017
## 4008 408.5 47.2 24.0 4.5 0.0 2016-2017
## 4009 414.6 46.0 24.0 4.6 0.0 2016-2017
## 4010 403.3 44.9 25.0 4.4 0.0 2016-2017
## 4011 406.0 43.5 20.0 26.5 0.0 2016-2017
## 4012 405.6 42.1 21.0 26.5 0.0 2016-2017
## 4013 396.6 47.1 23.0 49.6 0.0 2016-2017
## 4014 410.0 46.6 21.0 5.1 0.0 2016-2017
## 4015 418.9 46.6 26.0 4.3 0.0 2016-2017
## 4016 420.7 50.7 27.0 27.0 0.0 2016-2017
## 4017 313.4 43.1 21.0 27.3 0.0 2016-2017
## 4018 319.8 44.2 21.0 4.9 0.0 2016-2017
## 4019 320.9 50.2 29.0 25.2 0.0 2016-2017
## 4020 315.5 46.5 22.0 4.6 0.0 2016-2017
## 4021 318.9 47.3 24.0 26.0 0.0 2016-2017
## 4022 323.9 49.1 25.0 5.1 0.0 2016-2017
## 4023 322.4 52.4 28.0 26.3 0.0 2016-2017
## 4024 321.4 44.2 21.0 25.7 0.0 2016-2017
## 4025 317.9 50.4 26.0 23.6 0.0 2016-2017
## 4026 320.9 46.7 24.0 24.0 0.0 2016-2017
## 4027 320.6 50.3 28.0 4.4 0.0 2016-2017
## 4028 322.9 44.2 22.0 25.6 0.0 2016-2017
## 4029 326.3 50.4 27.0 4.8 0.0 2016-2017
## 4030 325.1 44.6 21.0 4.6 0.0 2016-2017
## 4031 323.6 46.3 24.0 4.4 0.0 2016-2017
## 4032 323.4 49.6 25.0 47.6 0.0 2016-2017
## 4033 321.6 53.0 33.0 4.4 0.0 2016-2017
## 4034 321.3 49.5 26.0 4.4 0.0 2016-2017
## 4035 321.3 47.9 26.0 45.7 0.0 2016-2017
## 4036 325.3 46.2 24.0 26.8 0.0 2016-2017
## 4037 318.6 46.3 24.0 25.7 0.0 2016-2017
## 4038 323.3 43.8 23.0 4.8 0.0 2016-2017
## 4039 323.5 51.2 28.0 4.6 0.0 2016-2017
## 4040 329.3 49.2 27.0 NA 0.0 2016-2017
## 4041 321.8 43.2 27.0 4.6 0.0 2016-2017
## 4042 332.0 50.1 24.0 5.3 0.0 2016-2017
## 4043 327.4 60.3 38.0 44.4 0.0 2016-2017
## 4044 319.4 47.0 23.0 45.0 0.0 2016-2017
## 4045 322.7 51.9 30.0 26.4 0.0 2016-2017
## 4046 322.9 49.6 26.0 64.6 0.0 2016-2017
## 4047 328.6 44.9 20.0 4.9 0.0 2016-2017
## 4048 330.2 51.8 26.0 25.1 0.0 2016-2017
## 4049 326.9 49.7 26.0 26.7 0.0 2016-2017
## 4050 337.4 55.1 31.0 4.7 0.0 2016-2017
## 4051 336.3 55.3 32.0 26.5 0.0 2016-2017
## 4052 327.7 54.5 31.0 46.2 0.0 2016-2017
## 4053 321.9 48.3 24.0 45.7 0.0 2016-2017
## 4054 326.9 46.6 22.0 26.1 0.0 2016-2017
## 4055 334.0 45.3 23.0 5.2 0.0 2016-2017
## 4056 319.8 52.7 27.0 29.1 0.0 2016-2017
## 4057 330.1 49.8 25.0 45.6 0.0 2016-2017
## 4058 339.9 52.1 30.0 27.3 0.0 2016-2017
## 4059 336.3 52.4 26.0 28.4 0.0 2016-2017
## 4060 325.2 48.0 25.0 26.5 0.0 2016-2017
## 4061 332.6 55.5 31.0 28.6 0.0 2016-2017
## 4062 330.8 48.4 25.0 4.5 0.0 2016-2017
## 4063 333.4 49.9 25.0 26.2 0.0 2016-2017
## 4064 345.9 48.5 24.0 5.0 0.0 2016-2017
## 4065 339.3 46.2 24.0 29.4 0.0 2016-2017
## 4066 332.6 48.7 24.0 26.5 0.0 2016-2017
## 4067 339.7 48.9 23.0 27.6 0.0 2016-2017
## 4068 332.1 50.9 27.0 25.1 0.0 2016-2017
## 4069 334.7 55.3 33.0 5.2 0.0 2016-2017
## 4070 331.0 46.9 24.0 48.3 0.0 2016-2017
## 4071 337.4 42.9 21.0 26.1 0.0 2016-2017
## 4072 339.7 52.6 30.0 26.2 0.0 2016-2017
## 4073 341.6 51.8 29.0 27.0 0.0 2016-2017
## 4074 412.3 41.4 21.7 26.6 0.0 2016-2017
## 4075 422.5 41.6 21.0 6.7 0.0 2016-2017
## 4076 428.2 43.0 24.0 7.0 0.0 2016-2017
## 4077 430.5 40.2 19.3 7.5 0.0 2016-2017
## 4078 427.6 43.0 25.2 6.7 0.0 2016-2017
## 4079 426.1 40.8 21.5 27.7 0.0 2016-2017
## 4080 420.7 45.9 27.6 25.9 0.0 2016-2017
## 4081 424.8 39.2 21.5 6.6 0.0 2016-2017
## 4082 423.0 44.5 24.6 7.1 0.0 2016-2017
## 4083 445.1 39.4 18.8 6.8 0.0 2016-2017
## 4084 424.7 44.9 25.5 6.9 0.0 2016-2017
## 4085 433.5 43.2 25.0 7.2 0.0 2016-2017
## 4086 441.1 42.0 21.0 7.6 0.0 2016-2017
## 4087 442.4 48.7 32.5 6.6 0.0 2016-2017
## 4088 427.2 47.3 27.8 6.5 0.0 2016-2017
## 4089 438.5 47.1 27.1 7.0 0.0 2016-2017
## 4090 435.3 44.8 26.1 26.2 0.0 2016-2017
## 4091 439.2 41.4 21.6 28.8 0.0 2016-2017
## 4092 434.2 46.1 28.1 6.4 0.0 2016-2017
## 4093 437.4 46.8 26.5 28.9 0.0 2016-2017
## 4094 439.7 39.1 19.2 7.1 0.0 2016-2017
## 4095 430.5 46.2 25.7 29.0 0.0 2016-2017
## 4096 428.5 45.3 25.3 50.3 0.0 2016-2017
## 4097 439.7 41.2 21.9 6.7 0.0 2016-2017
## 4098 426.1 48.7 63.5 27.2 0.0 2016-2017
## 4099 439.6 42.8 22.6 27.4 0.0 2016-2017
## 4100 436.5 42.3 24.2 7.5 0.0 2016-2017
## 4101 445.5 43.6 25.3 6.6 0.0 2016-2017
## 4102 430.6 43.1 23.6 47.9 0.0 2016-2017
## 4103 421.5 46.2 28.9 46.5 0.0 2016-2017
## 4104 445.5 49.6 28.7 7.0 0.0 2016-2017
## 4105 432.1 46.9 26.1 46.6 0.0 2016-2017
## 4106 430.4 50.2 30.5 48.7 0.0 2016-2017
## 4107 437.6 47.3 28.5 7.0 0.0 2016-2017
## 4108 435.3 46.2 26.4 7.0 0.0 2016-2017
## 4109 429.5 49.0 29.7 48.7 0.0 2016-2017
## 4110 433.6 50.7 33.4 6.8 0.0 2016-2017
## 4111 451.2 44.4 24.2 7.7 0.0 2016-2017
## 4112 445.9 51.8 30.9 28.0 0.0 2016-2017
## 4113 443.6 51.8 33.1 7.5 0.0 2016-2017
## 4114 443.2 48.1 26.3 7.1 0.0 2016-2017
## 4115 450.1 48.0 29.7 29.5 0.0 2016-2017
## 4116 434.1 43.7 23.2 27.6 0.0 2016-2017
## 4117 446.2 45.6 25.9 29.6 0.0 2016-2017
## 4118 449.7 48.8 29.6 6.9 0.0 2016-2017
## 4119 462.2 46.6 26.5 6.8 0.0 2016-2017
## 4120 438.0 44.6 26.0 51.4 0.0 2016-2017
## 4121 431.6 44.1 25.0 49.8 0.0 2016-2017
## 4122 449.6 50.9 29.3 28.0 0.0 2016-2017
## 4123 459.4 48.4 26.1 7.5 0.0 2016-2017
## 4124 440.8 47.8 26.9 30.1 0.0 2016-2017
## 4125 462.7 41.3 24.7 7.6 0.0 2016-2017
## 4126 456.5 43.6 21.5 8.5 0.0 2016-2017
## 4127 453.1 53.3 36.5 28.3 0.0 2016-2017
## 4128 436.4 46.0 22.4 73.6 0.0 2016-2017
## 4129 447.4 48.2 27.2 29.1 0.0 2016-2017
## 4130 446.3 48.8 29.7 53.7 0.0 2016-2017
## 4131 445.0 52.3 31.9 48.3 0.0 2016-2017
## 4132 447.3 55.4 37.2 50.9 0.0 2016-2017
## 4133 445.2 43.3 23.5 51.9 0.0 2016-2017
## 4134 442.0 43.5 25.4 69.5 0.0 2016-2017
## 4135 459.8 50.3 29.9 29.8 0.0 2016-2017
## 4136 449.5 48.9 29.0 29.7 0.0 2016-2017
## 4137 438.4 49.2 27.7 52.2 0.0 2016-2017
## 4138 449.6 44.6 25.1 29.1 0.0 2016-2017
## 4139 450.1 54.6 32.4 51.8 0.0 2016-2017
## 4140 451.7 47.1 26.9 29.6 0.0 2016-2017
## 4141 436.8 46.8 25.0 73.0 0.0 2016-2017
## 4142 454.9 45.2 24.6 7.3 0.0 2016-2017
## 4143 466.1 38.9 21.2 28.9 0.0 2016-2017
## 4144 452.3 46.9 24.7 54.2 0.0 2016-2017
## 4145 438.6 43.9 25.2 28.8 0.0 2016-2017
## 4146 441.8 46.4 25.5 28.0 0.0 2016-2017
## 4147 464.6 46.2 25.4 8.0 0.0 2016-2017
## 4148 465.4 48.3 27.8 7.5 0.0 2016-2017
## 4149 444.1 44.5 24.2 29.2 0.0 2016-2017
## 4150 451.9 47.7 24.5 71.3 0.0 2016-2017
## 4151 457.5 37.8 17.5 7.1 0.0 2016-2017
## 4152 455.7 54.0 33.2 52.1 0.0 2016-2017
## 4153 462.2 53.2 32.1 29.9 0.0 2016-2017
## 4154 457.3 51.1 29.6 29.6 0.0 2016-2017
## 4155 477.8 47.5 25.2 7.5 0.0 2016-2017
## 4156 450.7 52.3 32.8 74.5 0.0 2016-2017
## 4157 459.3 50.0 30.8 29.7 0.0 2016-2017
## 4158 457.3 49.6 30.3 51.0 0.0 2016-2017
## 4159 444.8 49.2 28.4 28.9 0.0 2016-2017
## 4160 471.5 43.7 22.2 8.0 0.0 2016-2017
## 4161 439.5 50.6 30.4 73.5 0.0 2016-2017
## 4162 465.5 52.4 31.6 28.9 0.0 2016-2017
## 4163 464.3 42.8 23.1 53.1 0.0 2016-2017
## 4164 457.7 45.7 25.9 53.4 0.0 2016-2017
## 4165 470.9 45.3 24.1 29.9 0.0 2016-2017
## 4166 466.0 46.0 24.5 31.0 0.0 2016-2017
## 4167 462.8 44.5 22.4 52.2 0.0 2016-2017
## 4168 446.3 52.0 31.3 96.0 0.0 2016-2017
## 4169 459.2 49.0 27.4 29.7 0.0 2016-2017
## 4170 475.0 51.1 30.4 7.8 0.0 2016-2017
## 4171 464.7 48.1 26.5 30.0 0.0 2016-2017
## 4172 479.2 46.3 25.4 7.7 0.0 2016-2017
## 4173 484.6 46.5 26.4 50.6 0.0 2016-2017
## 4174 488.1 46.3 24.8 57.7 0.0 2016-2017
## 4175 345.1 45.7 29.2 7.5 0.0 2016-2017
## 4176 327.7 41.1 24.1 27.9 0.0 2016-2017
## 4177 317.8 49.4 31.9 29.5 0.0 2016-2017
## 4178 327.0 45.0 26.1 29.0 0.0 2016-2017
## 4179 321.5 43.2 24.3 49.2 0.0 2016-2017
## 4180 327.0 43.4 26.1 6.5 0.0 2016-2017
## 4181 329.5 42.6 23.6 29.2 0.0 2016-2017
## 4182 329.1 42.4 23.7 28.8 0.0 2016-2017
## 4183 323.0 43.3 24.8 67.8 0.0 2016-2017
## 4184 327.0 43.4 24.6 48.5 0.0 2016-2017
## 4185 334.6 38.8 20.7 7.5 0.0 2016-2017
## 4186 327.0 40.4 20.7 6.9 0.0 2016-2017
## 4187 334.5 40.9 22.5 6.8 0.0 2016-2017
## 4188 339.9 43.3 24.5 7.3 0.0 2016-2017
## 4189 336.1 44.8 25.9 30.6 0.0 2016-2017
## 4190 334.4 43.6 25.7 7.2 0.0 2016-2017
## 4191 338.6 40.9 21.4 7.4 0.0 2016-2017
## 4192 333.9 42.1 25.1 6.8 0.0 2016-2017
## 4193 341.2 42.4 23.0 31.0 0.0 2016-2017
## 4194 324.0 48.6 28.6 6.7 0.0 2016-2017
## 4195 344.3 42.3 22.0 29.3 0.0 2016-2017
## 4196 338.1 36.0 17.8 7.2 0.0 2016-2017
## 4197 333.7 44.1 26.2 29.6 0.0 2016-2017
## 4198 332.8 41.9 28.3 6.5 0.0 2016-2017
## 4199 326.6 47.7 30.0 28.2 0.0 2016-2017
## 4200 338.4 44.2 28.3 6.7 0.0 2016-2017
## 4201 337.3 46.1 27.0 51.1 0.0 2016-2017
## 4202 336.8 54.8 34.9 28.3 0.0 2016-2017
## 4203 341.9 42.9 24.6 8.1 0.0 2016-2017
## 4204 329.4 51.5 30.0 29.1 0.0 2016-2017
## 4205 330.5 47.0 29.2 8.0 0.0 2016-2017
## 4206 330.2 44.1 23.8 28.0 0.0 2016-2017
## 4207 327.5 47.2 28.9 28.2 0.0 2016-2017
## 4208 329.9 43.4 24.9 51.6 0.0 2016-2017
## 4209 327.5 45.1 27.2 28.8 0.0 2016-2017
## 4210 341.5 41.9 21.4 8.2 0.0 2016-2017
## 4211 341.8 45.7 25.3 7.9 0.0 2016-2017
## 4212 338.5 50.3 32.8 28.0 0.0 2016-2017
## 4213 345.5 46.2 26.6 29.7 0.0 2016-2017
## 4214 333.7 45.7 25.3 29.8 0.0 2016-2017
## 4215 335.3 46.5 27.2 7.8 0.0 2016-2017
## 4216 332.8 59.2 41.0 50.1 0.0 2016-2017
## 4217 345.1 38.7 19.4 7.6 0.0 2016-2017
## 4218 357.3 44.0 35.2 7.2 0.0 2016-2017
## 4219 343.9 47.9 29.2 7.4 0.0 2016-2017
## 4220 346.6 47.0 28.2 7.0 0.0 2016-2017
## 4221 346.3 44.3 25.2 8.0 0.0 2016-2017
## 4222 337.7 47.3 26.7 58.6 0.0 2016-2017
## 4223 350.7 44.9 25.5 30.3 0.0 2016-2017
## 4224 349.4 52.2 32.4 55.2 0.0 2016-2017
## 4225 349.7 51.9 28.3 7.5 0.0 2016-2017
## 4226 354.2 44.1 22.5 8.3 0.0 2016-2017
## 4227 348.0 47.6 26.4 76.2 0.0 2016-2017
## 4228 358.8 47.8 25.2 31.3 0.0 2016-2017
## 4229 447.5 46.9 24.0 25.8 0.0 2016-2017
## 4230 453.3 45.1 24.0 5.0 0.0 2016-2017
## 4231 448.2 46.9 25.0 25.7 0.0 2016-2017
## 4232 450.2 43.4 22.0 5.6 0.0 2016-2017
## 4233 451.1 49.4 27.0 25.6 0.0 2016-2017
## 4234 443.8 49.4 28.0 25.2 0.0 2016-2017
## 4235 459.1 45.8 24.0 5.0 0.0 2016-2017
## 4236 462.0 43.1 22.0 5.3 0.0 2016-2017
## 4237 438.5 43.6 23.0 26.4 0.0 2016-2017
## 4238 453.9 47.8 26.0 26.2 0.0 2016-2017
## 4239 463.0 46.9 24.0 5.4 0.0 2016-2017
## 4240 457.9 48.5 26.0 5.2 0.0 2016-2017
## 4241 452.0 49.8 29.0 25.5 0.0 2016-2017
## 4242 459.5 44.4 24.0 4.8 0.0 2016-2017
## 4243 454.3 48.3 25.0 27.2 0.0 2016-2017
## 4244 455.0 44.5 22.0 5.4 0.0 2016-2017
## 4245 460.1 48.8 27.0 26.0 0.0 2016-2017
## 4246 466.5 47.7 26.0 5.7 0.0 2016-2017
## 4247 466.6 48.1 25.0 5.5 0.0 2016-2017
## 4248 461.4 48.8 26.0 26.1 0.0 2016-2017
## 4249 462.4 46.6 27.0 4.8 0.0 2016-2017
## 4250 460.1 47.6 25.0 6.2 0.0 2016-2017
## 4251 456.3 52.6 29.0 5.4 0.0 2016-2017
## 4252 465.8 51.3 29.0 48.4 0.0 2016-2017
## 4253 451.2 49.2 29.0 25.9 0.0 2016-2017
## 4254 466.2 53.2 27.0 26.5 0.0 2016-2017
## 4255 471.3 44.6 22.0 5.2 0.0 2016-2017
## 4256 455.3 53.2 31.0 45.7 0.0 2016-2017
## 4257 473.7 44.4 24.0 5.1 0.0 2016-2017
## 4258 469.5 49.2 26.0 26.9 0.0 2016-2017
## 4259 458.1 45.2 24.0 45.1 0.0 2016-2017
## 4260 466.1 49.6 28.0 5.0 0.0 2016-2017
## 4261 459.2 51.2 28.0 26.5 0.0 2016-2017
## 4262 466.7 47.8 26.0 5.1 0.0 2016-2017
## 4263 462.6 54.4 32.0 25.4 0.0 2016-2017
## 4264 463.0 44.2 22.0 26.2 0.0 2016-2017
## 4265 456.7 47.3 24.0 26.9 0.0 2016-2017
## 4266 459.2 53.2 31.0 26.8 0.0 2016-2017
## 4267 469.7 54.9 29.0 27.1 0.0 2016-2017
## 4268 462.3 48.3 26.0 49.3 0.0 2016-2017
## 4269 466.6 47.0 25.0 27.2 0.0 2016-2017
## 4270 478.1 51.5 30.0 26.3 0.0 2016-2017
## 4271 472.1 52.2 31.0 5.7 0.0 2016-2017
## 4272 458.8 45.5 25.0 5.4 0.0 2016-2017
## 4273 466.4 47.3 26.0 27.2 0.0 2016-2017
## 4274 473.0 50.9 29.0 26.7 0.0 2016-2017
## 4275 458.1 54.4 33.0 46.2 0.0 2016-2017
## 4276 448.0 44.1 23.0 71.1 0.0 2016-2017
## 4277 458.1 51.2 28.0 68.3 0.0 2016-2017
## 4278 477.3 46.0 25.0 5.5 0.0 2016-2017
## 4279 482.7 40.7 19.0 27.4 0.0 2016-2017
## 4280 469.7 47.4 25.0 50.4 0.0 2016-2017
## 4281 472.0 50.5 30.0 27.1 0.0 2016-2017
## 4282 464.7 49.3 27.0 26.7 0.0 2016-2017
## 4283 469.4 49.2 28.0 27.1 0.0 2016-2017
## 4284 476.7 45.7 24.0 26.8 0.0 2016-2017
## 4285 485.4 48.3 26.0 5.8 0.0 2016-2017
## 4286 482.2 51.8 28.0 5.7 0.0 2016-2017
## 4287 478.4 47.5 23.0 28.3 0.0 2016-2017
## 4288 467.0 44.0 21.0 47.7 0.0 2016-2017
## 4289 484.4 46.3 24.0 5.6 0.0 2016-2017
## 4290 474.6 52.2 29.0 49.0 0.0 2016-2017
## 4291 476.1 53.3 31.0 48.2 0.0 2016-2017
## 4292 488.2 48.3 23.0 5.5 0.0 2016-2017
## 4293 474.4 54.9 32.0 27.2 0.0 2016-2017
## 4294 462.0 49.5 24.0 28.7 0.0 2016-2017
## 4295 475.1 46.2 23.0 49.4 0.0 2016-2017
## 4296 479.7 51.1 27.0 27.9 0.0 2016-2017
## 4297 487.1 45.6 25.0 27.8 0.0 2016-2017
## 4298 474.7 50.2 24.0 73.7 0.0 2016-2017
## 4299 487.1 53.6 31.0 27.1 0.0 2016-2017
## 4300 480.8 49.3 26.0 28.2 0.0 2016-2017
## 4301 480.0 48.2 26.0 29.3 0.0 2016-2017
## 4302 483.7 51.1 26.0 29.7 0.0 2016-2017
## 4303 491.0 48.8 25.0 27.7 0.0 2016-2017
## 4304 492.8 46.8 24.0 26.6 0.0 2016-2017
## 4305 490.9 50.2 28.0 49.6 0.0 2016-2017
## 4306 484.1 50.9 29.0 29.5 0.0 2016-2017
## 4307 498.1 51.3 30.0 27.6 0.0 2016-2017
## 4308 478.8 47.9 25.0 52.3 0.0 2016-2017
## 4309 497.9 46.0 24.0 29.2 0.0 2016-2017
## 4310 491.9 44.7 24.0 29.2 0.0 2016-2017
## 4311 471.5 85.5 64.0 48.7 0.0 2016-2017
## 4312 492.6 55.2 31.0 28.1 0.0 2016-2017
## 4313 474.1 53.0 31.0 28.6 0.0 2016-2017
## 4314 497.6 58.8 37.0 27.1 0.0 2016-2017
## 4315 488.2 50.6 28.0 50.3 0.0 2016-2017
## 4316 487.3 54.8 31.0 28.5 0.0 2016-2017
## 4317 492.8 53.1 32.0 52.2 0.0 2016-2017
## 4318 498.5 48.5 25.0 28.1 0.0 2016-2017
## 4319 500.9 51.5 28.0 51.4 0.0 2016-2017
## 4320 472.3 51.7 29.0 70.6 0.0 2016-2017
## 4321 457.2 62.4 42.0 95.2 0.0 2016-2017
## 4322 477.8 58.5 33.0 73.8 0.0 2016-2017
## 4323 494.5 58.0 33.0 76.5 0.0 2016-2017
## 4324 500.4 53.9 31.0 52.7 0.0 2016-2017
## 4325 509.6 53.5 31.0 5.5 0.0 2016-2017
## 4326 507.2 53.1 28.0 79.1 0.0 2016-2017
## 4327 502.8 52.8 28.0 53.3 0.0 2016-2017
## 4328 505.0 51.2 27.0 53.5 0.0 2016-2017
## 4329 493.7 70.1 45.0 74.6 0.0 2016-2017
## 4330 387.4 43.2 25.0 6.8 0.0 2016-2017
## 4331 402.9 43.6 26.0 4.8 0.0 2016-2017
## 4332 398.4 42.0 24.0 26.1 0.0 2016-2017
## 4333 397.8 41.3 24.0 26.4 0.0 2016-2017
## 4334 400.2 42.4 24.0 26.5 0.0 2016-2017
## 4335 393.0 41.4 21.0 5.1 0.0 2016-2017
## 4336 397.8 43.7 23.0 5.1 0.0 2016-2017
## 4337 394.4 40.9 18.0 5.4 0.0 2016-2017
## 4338 396.0 43.5 24.0 5.3 0.0 2016-2017
## 4339 398.7 42.6 21.0 5.2 0.0 2016-2017
## 4340 410.0 43.9 22.0 5.1 0.0 2016-2017
## 4341 404.9 42.2 21.0 5.1 0.0 2016-2017
## 4342 397.7 49.1 28.0 26.4 0.0 2016-2017
## 4343 414.0 43.1 21.0 5.5 0.0 2016-2017
## 4344 404.7 42.2 21.0 5.2 0.0 2016-2017
## 4345 395.6 46.1 25.0 24.2 0.0 2016-2017
## 4346 401.6 42.2 21.0 26.0 0.0 2016-2017
## 4347 397.1 44.3 25.0 25.3 0.0 2016-2017
## 4348 400.2 42.8 21.0 26.0 0.0 2016-2017
## 4349 394.3 45.6 25.0 44.8 0.0 2016-2017
## 4350 401.5 46.1 25.0 48.5 0.0 2016-2017
## 4351 408.6 46.1 25.0 26.4 0.0 2016-2017
## 4352 415.8 45.7 23.0 5.2 0.0 2016-2017
## 4353 396.9 47.2 29.0 46.5 0.0 2016-2017
## 4354 408.0 47.4 27.0 4.9 0.0 2016-2017
## 4355 421.2 49.4 28.0 5.5 0.0 2016-2017
## 4356 404.2 46.3 24.0 74.0 0.0 2016-2017
## 4357 415.5 48.3 27.0 26.8 0.0 2016-2017
## 4358 420.6 48.1 26.0 4.9 0.0 2016-2017
## 4359 405.6 46.5 27.0 48.4 0.0 2016-2017
## 4360 353.8 43.2 25.0 7.2 0.0 2016-2017
## 4361 364.7 42.2 22.0 27.2 0.0 2016-2017
## 4362 366.2 41.4 22.0 6.6 0.0 2016-2017
## 4363 363.3 46.3 25.0 5.4 0.0 2016-2017
## 4364 363.1 47.1 28.0 48.9 0.0 2016-2017
## 4365 366.5 44.3 23.0 5.6 0.0 2016-2017
## 4366 362.5 53.7 32.0 5.3 0.0 2016-2017
## 4367 365.7 45.3 24.0 26.9 0.0 2016-2017
## 4368 367.5 47.7 28.0 5.2 0.0 2016-2017
## 4369 369.3 46.7 26.0 4.9 0.0 2016-2017
## 4370 365.9 45.4 25.0 5.5 0.0 2016-2017
## 4371 369.8 43.6 23.0 5.4 0.0 2016-2017
## 4372 361.1 44.6 23.0 5.2 0.0 2016-2017
## 4373 369.8 47.6 25.0 5.1 0.0 2016-2017
## 4374 361.9 49.4 30.0 5.3 0.0 2016-2017
## 4375 377.6 52.2 30.0 26.3 0.0 2016-2017
## 4376 373.8 46.1 23.0 27.9 0.0 2016-2017
## 4377 370.4 49.3 25.0 47.9 0.0 2016-2017
## 4378 362.5 47.2 27.0 5.3 0.0 2016-2017
## 4379 375.9 49.9 27.0 29.3 0.0 2016-2017
## 4380 371.9 45.3 23.0 26.8 0.0 2016-2017
## 4381 376.8 49.1 26.0 48.8 0.0 2016-2017
## 4382 362.5 49.1 29.0 25.9 0.0 2016-2017
## 4383 372.6 51.9 31.0 27.6 0.0 2016-2017
## 4384 364.9 45.4 25.0 25.9 0.0 2016-2017
## 4385 375.4 47.3 24.0 5.0 0.0 2016-2017
## 4386 359.7 48.4 27.0 5.2 0.0 2016-2017
## 4387 365.4 48.1 28.0 7.1 0.0 2016-2017
## 4388 370.4 48.8 28.0 27.5 0.0 2016-2017
## 4389 373.0 47.2 26.0 5.8 0.0 2016-2017
## 4390 372.8 45.8 24.0 5.4 0.0 2016-2017
## 4391 386.5 44.4 22.0 6.8 0.0 2016-2017
## 4392 358.9 48.5 28.0 28.8 0.0 2016-2017
## 4393 369.3 44.6 24.0 29.2 0.0 2016-2017
## 4394 367.5 45.1 23.0 50.9 0.0 2016-2017
## 4395 370.7 51.3 29.0 27.5 0.0 2016-2017
## 4396 370.6 48.6 23.0 29.3 0.0 2016-2017
## 4397 373.5 50.5 28.0 27.9 0.0 2016-2017
## 4398 371.1 57.8 36.0 26.8 0.0 2016-2017
## 4399 388.5 48.8 23.0 5.6 0.0 2016-2017
## 4400 374.3 50.0 30.0 72.4 0.0 2016-2017
## 4401 378.8 47.2 25.0 29.3 0.0 2016-2017
## 4402 373.3 51.2 29.0 27.7 0.0 2016-2017
## 4403 377.4 61.6 40.0 27.0 0.0 2016-2017
## 4404 372.6 53.1 30.0 52.0 0.0 2016-2017
## 4405 382.4 44.5 22.0 28.2 0.0 2016-2017
## 4406 373.3 48.9 26.0 48.3 0.0 2016-2017
## 4407 375.3 45.8 23.0 51.2 0.0 2016-2017
## 4408 385.3 50.2 28.0 50.7 0.0 2016-2017
## 4409 373.2 55.1 34.0 5.0 0.0 2016-2017
## 4410 396.3 55.0 31.0 29.1 0.0 2016-2017
## 4411 378.2 48.6 26.0 28.1 0.0 2016-2017
## 4412 400.5 40.0 18.0 28.1 0.0 2016-2017
## 4413 391.2 50.7 28.0 28.9 0.0 2016-2017
## 4414 391.8 54.6 31.0 30.0 0.0 2016-2017
## 4415 392.0 55.4 32.0 53.0 0.0 2016-2017
## 4416 388.1 50.6 26.0 53.0 0.0 2016-2017
## 4417 506.9 45.5 23.0 4.0 0.0 2016-2017
## 4418 506.9 53.4 32.0 27.9 0.0 2016-2017
## 4419 514.1 50.2 29.0 25.8 0.0 2016-2017
## 4420 521.0 59.5 38.0 3.9 0.0 2016-2017
## 4421 512.5 49.7 29.0 53.5 0.0 2016-2017
## 4422 510.5 60.1 34.0 26.8 0.0 2016-2017
## 4423 520.3 54.2 30.0 28.1 0.0 2016-2017
## 4424 498.6 54.7 33.0 74.6 0.0 2016-2017
## 4425 517.3 64.3 40.0 4.8 0.0 2016-2017
## 4426 506.5 65.6 42.0 51.7 0.0 2016-2017
## 4427 527.4 48.1 23.0 27.9 0.0 2016-2017
## 4428 521.1 56.9 33.0 52.5 0.0 2016-2017
## 4429 510.9 49.6 26.0 55.0 0.0 2016-2017
## 4430 521.5 48.1 25.0 51.3 0.0 2016-2017
## 4431 515.7 57.3 33.0 53.7 0.0 2016-2017
## 4432 519.8 46.3 23.0 25.4 0.0 2016-2017
## 4433 519.9 54.1 30.0 53.0 0.0 2016-2017
## 4434 528.7 52.7 29.0 29.2 0.0 2016-2017
## 4435 519.6 48.4 25.0 53.2 0.0 2016-2017
## 4436 518.7 51.4 25.0 27.8 0.0 2016-2017
## 4437 521.7 53.9 32.0 26.8 0.0 2016-2017
## 4438 523.7 51.3 30.0 51.6 0.0 2016-2017
## 4439 524.9 50.5 24.0 5.0 0.0 2016-2017
## 4440 520.5 48.4 22.0 55.1 0.0 2016-2017
## 4441 523.4 50.8 26.0 28.3 0.0 2016-2017
## 4442 534.0 52.6 29.0 28.0 0.0 2016-2017
## 4443 509.2 55.4 32.0 53.9 0.0 2016-2017
## 4444 532.3 56.8 35.0 4.1 0.0 2016-2017
## 4445 527.2 53.4 28.0 28.2 0.0 2016-2017
## 4446 530.7 55.3 33.0 51.9 0.0 2016-2017
## 4447 533.0 56.9 34.0 28.0 0.0 2016-2017
## 4448 514.3 52.8 30.0 28.1 0.0 2016-2017
## 4449 528.6 52.3 28.0 53.0 0.0 2016-2017
## 4450 518.7 52.4 29.0 51.2 0.0 2016-2017
## 4451 529.8 63.0 41.0 52.5 0.0 2016-2017
## 4452 532.6 50.3 25.0 29.7 0.0 2016-2017
## 4453 530.6 54.3 30.0 28.4 0.0 2016-2017
## 4454 533.9 56.4 33.0 28.7 0.0 2016-2017
## 4455 518.8 51.5 26.0 28.7 0.0 2016-2017
## 4456 521.6 54.3 31.0 29.4 0.0 2016-2017
## 4457 527.2 67.7 45.0 28.5 0.0 2016-2017
## 4458 531.7 53.9 30.0 53.6 0.0 2016-2017
## 4459 543.4 62.9 35.0 30.0 0.0 2016-2017
## 4460 513.7 57.8 35.0 102.8 0.0 2016-2017
## 4461 535.4 55.5 31.0 4.6 0.0 2016-2017
## 4462 517.4 68.6 46.0 52.6 0.0 2016-2017
## 4463 529.4 52.8 29.0 28.2 0.0 2016-2017
## 4464 532.5 52.7 27.0 55.2 0.0 2016-2017
## 4465 537.5 50.9 23.0 27.8 0.0 2016-2017
## 4466 522.4 71.0 49.0 54.9 0.0 2016-2017
## 4467 556.7 57.6 33.0 4.5 0.0 2016-2017
## 4468 557.4 57.7 31.0 27.4 0.0 2016-2017
## 4469 544.3 51.0 27.0 28.7 0.0 2016-2017
## 4470 513.1 51.2 27.0 29.3 0.0 2016-2017
## 4471 552.1 53.3 28.0 4.8 0.0 2016-2017
## 4472 543.8 50.7 27.0 30.0 0.0 2016-2017
## 4473 512.2 50.6 25.0 79.7 0.0 2016-2017
## 4474 540.1 51.2 29.0 28.7 0.0 2016-2017
## 4475 537.7 62.8 37.0 4.7 0.0 2016-2017
## 4476 533.9 49.8 26.0 55.2 0.0 2016-2017
## 4477 535.5 50.8 26.0 56.1 0.0 2016-2017
## 4478 538.4 55.6 31.0 4.8 0.0 2016-2017
## 4479 545.6 56.6 30.0 55.7 0.0 2016-2017
## 4480 518.8 60.4 38.0 53.1 0.0 2016-2017
## 4481 542.0 52.5 27.0 57.0 0.0 2016-2017
## 4482 557.9 52.2 27.0 4.8 0.0 2016-2017
## 4483 538.6 50.8 27.0 52.3 0.0 2016-2017
## 4484 547.6 59.8 33.0 56.2 0.0 2016-2017
## 4485 532.6 59.9 36.0 28.5 0.0 2016-2017
## 4486 536.0 47.9 24.0 4.6 0.0 2016-2017
## 4487 525.5 67.2 40.0 83.3 0.0 2016-2017
## 4488 541.6 51.3 26.0 4.5 0.0 2016-2017
## 4489 545.4 47.7 17.0 80.2 0.0 2016-2017
## 4490 553.5 54.2 30.0 31.0 0.0 2016-2017
## 4491 532.3 58.1 32.0 4.6 0.0 2016-2017
## 4492 540.8 51.9 27.0 55.0 0.0 2016-2017
## 4493 561.7 56.8 33.0 29.7 0.0 2016-2017
## 4494 543.7 59.5 36.0 29.9 0.0 2016-2017
## 4495 564.4 59.3 33.0 5.1 0.0 2016-2017
## 4496 547.7 51.1 26.0 57.3 0.0 2016-2017
## 4497 561.7 46.0 21.0 4.6 0.0 2016-2017
## 4498 558.3 62.3 38.0 31.3 0.0 2016-2017
## 4499 557.7 53.7 28.0 29.8 0.0 2016-2017
## 4500 535.8 64.1 39.0 30.7 0.0 2016-2017
## 4501 534.9 64.5 41.0 54.7 0.0 2016-2017
## 4502 552.0 58.5 34.0 55.2 0.0 2016-2017
## 4503 530.6 50.4 27.0 28.4 0.0 2016-2017
## 4504 524.3 62.9 39.0 84.1 0.0 2016-2017
## 4505 543.0 56.8 32.0 55.4 0.0 2016-2017
## 4506 576.0 54.3 28.0 32.2 0.0 2016-2017
## 4507 559.5 63.3 37.0 32.3 0.0 2016-2017
## 4508 551.8 67.2 42.0 60.1 0.0 2016-2017
## 4509 543.4 61.6 37.0 84.6 0.0 2016-2017
## 4510 556.5 49.5 21.0 32.7 0.0 2016-2017
## 4511 520.8 51.1 27.0 86.0 0.0 2016-2017
## 4512 553.8 57.3 27.0 29.0 0.0 2016-2017
## 4513 521.1 61.3 36.0 57.0 0.0 2016-2017
## 4514 557.6 69.6 53.0 55.1 0.0 2016-2017
## 4515 562.5 60.2 34.0 58.2 0.0 2016-2017
## 4516 575.3 52.4 27.0 57.4 0.0 2016-2017
## 4517 576.7 56.1 29.0 59.2 0.0 2016-2017
## 4518 574.1 71.1 44.0 31.1 0.0 2016-2017
## 4519 427.8 47.6 26.0 4.1 0.0 2016-2017
## 4520 424.4 48.8 29.0 26.4 0.0 2016-2017
## 4521 407.7 46.7 24.0 4.4 0.0 2016-2017
## 4522 423.6 45.4 22.0 4.8 0.0 2016-2017
## 4523 428.6 45.6 25.0 26.9 0.0 2016-2017
## 4524 429.2 49.7 28.0 4.2 0.0 2016-2017
## 4525 423.5 53.1 31.0 28.3 0.0 2016-2017
## 4526 428.2 45.8 22.0 28.4 0.0 2016-2017
## 4527 425.3 48.7 27.0 3.9 0.0 2016-2017
## 4528 426.7 45.5 23.0 4.2 0.0 2016-2017
## 4529 439.0 44.4 23.0 4.4 0.0 2016-2017
## 4530 408.6 54.4 29.0 50.4 0.0 2016-2017
## 4531 436.5 48.6 27.0 26.5 0.0 2016-2017
## 4532 423.1 46.2 24.0 4.1 0.0 2016-2017
## 4533 446.4 44.8 21.0 4.7 0.0 2016-2017
## 4534 423.1 52.1 29.0 26.1 0.0 2016-2017
## 4535 433.3 44.6 23.0 4.2 0.0 2016-2017
## 4536 436.7 47.8 26.0 49.6 0.0 2016-2017
## 4537 430.2 43.9 22.0 26.8 0.0 2016-2017
## 4538 425.6 48.5 24.0 4.0 0.0 2016-2017
## 4539 419.4 50.4 29.0 4.1 0.0 2016-2017
## 4540 434.9 46.8 25.0 26.4 0.0 2016-2017
## 4541 432.4 47.5 27.0 26.4 0.0 2016-2017
## 4542 439.5 47.0 26.0 4.3 0.0 2016-2017
## 4543 436.0 55.2 35.0 26.6 0.0 2016-2017
## 4544 459.0 47.8 25.0 29.6 0.0 2016-2017
## 4545 452.3 46.9 23.0 4.5 0.0 2016-2017
## 4546 433.3 48.1 26.0 47.7 0.0 2016-2017
## 4547 446.2 47.1 24.0 4.4 0.0 2016-2017
## 4548 373.0 64.4 40.0 5.0 0.0 2016-2017
## 4549 384.5 65.8 43.0 50.0 0.0 2016-2017
## 4550 392.4 54.8 32.0 46.5 0.0 2016-2017
## 4551 382.7 67.6 42.0 27.4 0.0 2016-2017
## 4552 383.0 67.0 44.0 70.9 0.0 2016-2017
## 4553 384.8 50.1 29.0 4.6 0.0 2016-2017
## 4554 382.9 88.5 67.0 73.3 0.0 2016-2017
## 4555 385.4 54.4 31.0 50.9 0.0 2016-2017
## 4556 387.1 50.2 28.0 27.6 0.0 2016-2017
## 4557 379.4 94.6 72.0 75.0 0.0 2016-2017
## 4558 395.0 52.1 28.0 4.1 0.0 2016-2017
## 4559 385.5 56.1 36.0 3.6 0.0 2016-2017
## 4560 400.6 60.8 40.0 3.8 0.0 2016-2017
## 4561 396.2 44.4 19.0 27.6 0.0 2016-2017
## 4562 402.6 56.9 33.0 50.2 0.0 2016-2017
## 4563 378.4 62.7 42.0 27.7 0.0 2016-2017
## 4564 387.4 49.5 26.0 27.4 0.0 2016-2017
## 4565 386.4 45.9 28.0 26.9 0.0 2016-2017
## 4566 391.7 70.5 49.0 121.1 0.0 2016-2017
## 4567 374.5 57.6 36.0 27.1 0.0 2016-2017
## 4568 403.9 51.8 32.0 28.0 0.0 2016-2017
## 4569 408.2 52.1 29.0 28.9 0.0 2016-2017
## 4570 391.2 49.6 25.0 74.7 0.0 2016-2017
## 4571 387.9 54.2 33.0 3.9 0.0 2016-2017
## 4572 384.0 49.9 27.0 51.9 0.0 2016-2017
## 4573 386.9 61.0 39.0 51.0 0.0 2016-2017
## 4574 407.3 54.5 31.0 4.5 0.0 2016-2017
## 4575 397.0 63.5 41.0 74.5 0.0 2016-2017
## 4576 380.7 62.8 42.0 54.9 0.0 2016-2017
## 4577 402.2 59.9 37.0 55.6 0.0 2016-2017
## 4578 395.2 53.9 31.0 54.5 0.0 2016-2017
## 4579 397.6 49.8 25.0 29.4 0.0 2016-2017
## 4580 399.8 54.1 29.0 56.4 0.0 2016-2017
## 4581 391.6 61.2 39.0 53.1 0.0 2016-2017
## 4582 396.6 58.4 35.0 78.2 0.0 2016-2017
## 4583 382.6 55.3 29.0 59.2 0.0 2016-2017
## 4584 406.4 44.4 24.0 56.1 0.0 2016-2017
## 4585 396.7 62.4 38.0 53.0 0.0 2016-2017
## 4586 401.5 55.1 32.0 52.5 0.0 2016-2017
## 4587 404.4 54.9 34.0 102.6 0.0 2016-2017
## 4588 407.7 54.4 29.0 53.3 0.0 2016-2017
## 4589 415.5 68.2 44.0 28.8 0.0 2016-2017
## 4590 409.8 53.5 31.0 27.8 0.0 2016-2017
## 4591 400.6 49.0 27.0 28.5 0.0 2016-2017
## 4592 399.8 53.6 29.0 83.2 0.0 2016-2017
## 4593 400.5 55.6 31.0 29.5 0.0 2016-2017
## 4594 422.6 57.0 34.0 4.1 0.0 2016-2017
## 4595 406.2 58.5 35.0 109.7 0.0 2016-2017
## 4596 405.3 69.8 46.0 113.3 0.0 2016-2017
## 4597 400.7 88.1 66.0 56.6 0.0 2016-2017
## 4598 409.1 66.1 43.0 54.3 0.0 2016-2017
## 4599 424.3 56.2 40.0 54.2 0.0 2016-2017
## 4600 417.2 72.2 49.0 30.6 0.0 2016-2017
## 4601 404.9 66.6 47.0 79.6 0.0 2016-2017
## 4602 422.4 60.3 37.0 93.3 0.0 2016-2017
## 4603 436.5 76.1 51.0 121.3 0.0 2016-2017
## 4604 436.9 45.5 22.4 4.7 0.0 2016-2017
## 4605 452.8 47.8 25.2 5.2 0.0 2016-2017
## 4606 454.8 47.0 24.4 5.0 0.0 2016-2017
## 4607 445.6 55.1 33.8 27.1 0.0 2016-2017
## 4608 442.6 48.2 22.8 27.3 0.0 2016-2017
## 4609 451.1 50.0 27.7 4.4 0.0 2016-2017
## 4610 459.3 53.8 32.4 5.2 0.0 2016-2017
## 4611 460.9 57.9 37.0 4.5 0.0 2016-2017
## 4612 460.1 51.6 26.0 5.4 0.0 2016-2017
## 4613 449.6 49.2 25.9 4.9 0.0 2016-2017
## 4614 458.9 56.4 31.9 4.8 0.0 2016-2017
## 4615 456.0 49.0 26.2 4.9 0.0 2016-2017
## 4616 453.7 50.4 30.3 5.1 0.0 2016-2017
## 4617 446.0 53.5 28.1 27.7 0.0 2016-2017
## 4618 454.6 51.9 28.9 5.0 0.0 2016-2017
## 4619 458.4 46.0 26.7 26.9 0.0 2016-2017
## 4620 456.5 49.3 26.2 5.0 0.0 2016-2017
## 4621 447.6 54.9 32.6 26.8 0.0 2016-2017
## 4622 463.7 51.3 29.4 4.4 0.0 2016-2017
## 4623 464.8 52.4 28.6 5.0 0.0 2016-2017
## 4624 453.1 62.3 40.5 4.8 0.0 2016-2017
## 4625 453.8 52.3 29.0 27.5 0.0 2016-2017
## 4626 453.3 47.4 25.1 26.4 0.0 2016-2017
## 4627 452.3 46.4 22.5 27.1 0.0 2016-2017
## 4628 466.3 50.1 25.9 5.4 0.0 2016-2017
## 4629 465.3 50.1 26.5 28.5 0.0 2016-2017
## 4630 456.4 44.5 20.3 5.4 0.0 2016-2017
## 4631 452.5 46.5 22.0 27.7 0.0 2016-2017
## 4632 461.1 53.1 29.5 26.7 0.0 2016-2017
## 4633 450.7 56.3 33.4 27.3 0.0 2016-2017
## 4634 456.6 45.9 22.3 27.4 0.0 2016-2017
## 4635 462.8 50.9 27.4 4.9 0.0 2016-2017
## 4636 445.4 60.1 36.6 53.3 0.0 2016-2017
## 4637 464.3 51.5 26.7 4.9 0.0 2016-2017
## 4638 468.0 52.4 27.8 27.8 0.0 2016-2017
## 4639 462.1 54.8 30.6 5.1 0.0 2016-2017
## 4640 465.4 46.0 24.3 28.0 0.0 2016-2017
## 4641 464.4 53.4 30.9 27.3 0.0 2016-2017
## 4642 456.5 47.3 25.5 50.3 0.0 2016-2017
## 4643 462.5 49.4 27.4 26.5 0.0 2016-2017
## 4644 468.1 62.9 41.1 27.2 0.0 2016-2017
## 4645 456.1 56.8 32.2 52.1 0.0 2016-2017
## 4646 454.2 55.0 30.6 76.0 0.0 2016-2017
## 4647 467.2 56.2 31.7 5.2 0.0 2016-2017
## 4648 459.5 50.2 26.6 52.3 0.0 2016-2017
## 4649 474.8 52.2 31.2 4.8 0.0 2016-2017
## 4650 461.3 49.6 26.2 27.5 0.0 2016-2017
## 4651 470.5 52.2 27.4 5.0 0.0 2016-2017
## 4652 454.0 51.3 28.8 27.8 0.0 2016-2017
## 4653 485.4 52.5 27.0 5.1 0.0 2016-2017
## 4654 469.4 62.8 38.1 28.6 0.0 2016-2017
## 4655 480.7 62.4 34.6 6.1 0.0 2016-2017
## 4656 479.6 52.5 27.4 4.9 0.0 2016-2017
## 4657 455.5 47.3 23.1 29.2 0.0 2016-2017
## 4658 463.4 51.2 24.5 5.2 0.0 2016-2017
## 4659 457.6 49.2 26.4 51.7 0.0 2016-2017
## 4660 472.6 50.7 25.8 28.4 0.0 2016-2017
## 4661 455.0 50.4 28.5 52.2 0.0 2016-2017
## 4662 469.8 49.2 26.3 27.9 0.0 2016-2017
## 4663 467.1 54.3 31.1 29.3 0.0 2016-2017
## 4664 464.5 49.1 25.0 53.9 0.0 2016-2017
## 4665 451.6 53.2 29.4 74.1 0.0 2016-2017
## 4666 478.6 49.5 25.6 51.0 0.0 2016-2017
## 4667 456.3 59.4 36.8 76.7 0.0 2016-2017
## 4668 495.3 54.5 26.8 5.7 0.0 2016-2017
## 4669 482.9 52.7 29.8 5.1 0.0 2016-2017
## 4670 487.8 50.8 26.5 5.3 0.0 2016-2017
## 4671 484.7 46.0 20.3 5.6 0.0 2016-2017
## 4672 465.9 52.6 30.9 27.3 0.0 2016-2017
## 4673 478.0 51.6 28.1 28.2 0.0 2016-2017
## 4674 469.1 54.7 30.5 29.1 0.0 2016-2017
## 4675 486.4 55.6 34.4 29.3 0.0 2016-2017
## 4676 483.0 53.2 29.0 29.6 0.0 2016-2017
## 4677 488.3 51.6 26.8 5.5 0.0 2016-2017
## 4678 468.6 54.5 31.0 52.9 0.0 2016-2017
## 4679 485.5 52.9 29.5 5.7 0.0 2016-2017
## 4680 468.4 55.4 29.7 78.9 0.0 2016-2017
## 4681 472.0 60.0 36.0 28.7 0.0 2016-2017
## 4682 472.1 55.2 30.5 29.5 0.0 2016-2017
## 4683 498.0 56.5 28.9 6.1 0.0 2016-2017
## 4684 483.8 56.6 35.6 52.5 0.0 2016-2017
## 4685 477.4 60.3 38.1 29.1 0.0 2016-2017
## 4686 472.7 56.0 32.7 78.9 0.0 2016-2017
## 4687 478.2 60.5 35.0 53.7 0.0 2016-2017
## 4688 462.3 55.8 30.6 83.2 0.0 2016-2017
## 4689 485.7 60.3 33.5 28.5 0.0 2016-2017
## 4690 486.6 52.8 27.0 51.7 0.0 2016-2017
## 4691 486.0 59.7 35.4 5.7 0.0 2016-2017
## 4692 482.4 65.5 40.9 54.2 0.0 2016-2017
## 4693 487.3 52.7 26.9 56.7 0.0 2016-2017
## 4694 483.0 58.1 31.8 53.0 0.0 2016-2017
## 4695 463.6 56.2 31.7 76.1 0.0 2016-2017
## 4696 484.6 54.4 30.4 54.9 0.0 2016-2017
## 4697 481.0 50.7 24.5 29.9 0.0 2016-2017
## 4698 513.3 53.8 29.9 31.1 0.0 2016-2017
## 4699 494.4 47.5 24.0 54.7 0.0 2016-2017
## 4700 470.9 65.9 41.6 126.8 0.0 2016-2017
## 4701 474.0 64.8 38.8 102.4 0.0 2016-2017
## 4702 478.4 56.4 34.0 28.5 0.0 2016-2017
## 4703 461.5 50.8 25.3 105.5 0.0 2016-2017
## 4704 499.3 60.8 33.9 29.7 0.0 2016-2017
## 4705 471.2 55.9 31.1 102.8 0.0 2016-2017
## 4706 523.6 55.1 28.7 31.7 0.0 2016-2017
## 4707 481.8 61.2 34.2 55.1 0.0 2016-2017
## 4708 488.0 64.0 37.5 84.6 0.0 2016-2017
## 4709 573.4 45.7 22.6 0.0 2437.6 2016-2017
## 4710 570.5 75.0 51.9 120.0 2453.7 2016-2017
## 4711 592.9 47.2 26.0 0.0 2549.3 2016-2017
## 4712 582.8 46.4 22.7 0.0 2488.5 2016-2017
## 4713 584.3 57.8 36.4 60.0 2492.0 2016-2017
## 4714 586.1 65.7 41.4 120.0 2514.3 2016-2017
## 4715 576.4 67.8 42.9 0.0 2553.5 2016-2017
## 4716 599.8 56.2 33.5 60.0 2613.0 2016-2017
## 4717 585.2 52.7 28.9 60.0 2514.6 2016-2017
## 4718 606.5 53.4 29.3 60.0 2570.2 2016-2017
## 4719 578.6 67.1 40.1 180.0 2473.0 2016-2017
## 4720 582.3 58.4 34.6 60.0 2485.0 2016-2017
## 4721 589.5 44.7 22.1 0.0 2546.9 2016-2017
## 4722 598.3 53.2 30.0 60.0 2561.1 2016-2017
## 4723 590.6 52.3 27.4 120.0 2525.0 2016-2017
## 4724 598.5 61.6 37.1 60.0 2567.7 2016-2017
## 4725 589.2 61.5 35.8 0.0 2571.1 2016-2017
## 4726 575.2 69.5 45.2 120.0 2499.5 2016-2017
## 4727 587.3 71.3 49.1 0.0 2586.0 2016-2017
## 4728 625.2 49.8 24.7 0.0 2682.0 2016-2017
## 4729 601.8 54.8 32.6 60.0 2588.3 2016-2017
## 4730 588.5 93.5 70.2 60.0 2596.3 2016-2017
## 4731 576.4 60.3 38.5 60.0 2497.6 2016-2017
## 4732 587.4 46.2 22.6 0.0 2503.2 2016-2017
## 4733 570.7 66.3 43.4 60.0 2500.1 2016-2017
## 4734 601.3 67.3 43.2 120.0 2608.3 2016-2017
## 4735 609.9 57.6 33.3 60.0 2595.9 2016-2017
## 4736 579.8 57.8 34.2 60.0 2508.5 2016-2017
## 4737 612.1 52.2 24.7 0.0 2608.2 2016-2017
## 4738 574.5 59.1 35.9 240.0 2462.3 2016-2017
## 4739 578.8 51.2 26.5 60.0 2514.5 2016-2017
## 4740 577.2 69.3 48.0 120.0 2508.8 2016-2017
## 4741 572.0 62.3 44.2 60.0 2525.1 2016-2017
## 4742 573.5 50.3 25.9 60.0 2471.4 2016-2017
## 4743 598.8 47.8 24.7 60.0 2569.7 2016-2017
## 4744 595.5 57.7 34.1 0.0 2583.1 2016-2017
## 4745 612.9 61.7 37.1 60.0 2635.6 2016-2017
## 4746 596.7 67.7 46.6 120.0 2594.7 2016-2017
## 4747 625.9 53.1 30.0 60.0 2689.9 2016-2017
## 4748 618.6 55.2 31.4 60.0 2643.3 2016-2017
## 4749 620.5 63.5 37.7 60.0 2639.3 2016-2017
## 4750 589.1 67.9 44.5 120.0 2559.7 2016-2017
## 4751 628.3 49.0 26.8 60.0 2653.4 2016-2017
## 4752 607.0 117.8 53.3 60.0 2618.8 2016-2017
## 4753 601.9 66.6 42.2 120.0 2621.0 2016-2017
## 4754 568.3 54.4 32.8 120.0 2475.2 2016-2017
## 4755 618.3 66.3 41.1 60.0 2669.6 2016-2017
## 4756 593.9 55.5 30.9 180.0 2585.4 2016-2017
## 4757 583.9 59.9 34.8 240.0 2519.9 2016-2017
## 4758 607.9 57.1 32.5 120.0 2589.9 2016-2017
## 4759 595.5 70.6 46.7 180.0 2534.2 2016-2017
## 4760 602.3 73.7 50.1 120.0 2609.9 2016-2017
## 4761 616.9 59.6 34.4 60.0 2619.9 2016-2017
## 4762 589.5 62.0 39.2 120.0 2589.3 2016-2017
## 4763 587.0 67.7 42.2 180.0 2526.4 2016-2017
## 4764 607.0 84.2 58.7 60.0 2639.8 2016-2017
## 4765 601.4 66.3 42.5 180.0 2590.1 2016-2017
## 4766 597.3 54.9 30.1 120.0 2594.8 2016-2017
## 4767 593.4 58.2 33.3 180.0 2536.1 2016-2017
## 4768 619.7 60.5 35.6 120.0 2649.2 2016-2017
## 4769 590.4 57.6 32.2 180.0 2543.4 2016-2017
## 4770 639.4 61.0 34.8 60.0 2683.5 2016-2017
## 4771 617.9 61.7 35.8 180.0 2654.5 2016-2017
## 4772 617.3 60.3 36.3 120.0 2654.0 2016-2017
## 4773 572.4 58.4 33.1 120.0 2463.1 2016-2017
## 4774 573.1 74.6 52.1 240.0 2507.9 2016-2017
## 4775 613.4 81.7 56.7 120.0 2666.2 2016-2017
## 4776 641.0 60.3 33.7 120.0 2722.2 2016-2017
## 4777 581.2 48.3 25.1 60.0 2543.6 2016-2017
## 4778 613.1 77.7 50.8 60.0 2623.2 2016-2017
## 4779 596.8 50.6 26.0 120.0 2544.1 2016-2017
## 4780 634.5 52.7 26.9 120.0 2744.3 2016-2017
## 4781 617.1 56.1 30.9 0.0 2715.4 2016-2017
## 4782 639.5 50.8 24.3 60.0 2699.8 2016-2017
## 4783 605.1 48.7 22.3 240.0 2607.4 2016-2017
## 4784 643.2 66.8 41.4 60.0 2754.8 2016-2017
## 4785 585.6 55.2 32.1 240.0 2538.9 2016-2017
## 4786 603.6 59.4 34.2 60.0 2628.9 2016-2017
## 4787 622.8 58.2 31.3 0.0 2677.9 2016-2017
## 4788 585.6 45.2 21.0 60.0 2530.8 2016-2017
## 4789 639.8 63.5 38.5 120.0 2765.7 2016-2017
## 4790 638.8 70.4 43.4 120.0 2781.3 2016-2017
## 4791 620.9 50.5 26.0 60.0 2630.3 2016-2017
## 4792 622.9 58.1 31.9 60.0 2707.8 2016-2017
## 4793 609.0 59.4 38.9 180.0 2610.5 2016-2017
## 4794 606.1 84.1 62.1 60.0 2679.2 2016-2017
## 4795 639.7 64.3 37.8 120.0 2797.3 2016-2017
## 4796 577.4 71.1 44.8 120.0 2540.4 2016-2017
## 4797 619.1 58.3 33.9 180.0 2620.3 2016-2017
## 4798 650.6 60.5 35.3 120.0 2739.5 2016-2017
## 4799 620.1 66.1 40.7 120.0 2652.0 2016-2017
## 4800 588.1 63.1 39.2 240.0 2521.1 2016-2017
## 4801 646.1 72.7 46.7 120.0 2788.0 2016-2017
## 4802 669.8 69.6 46.4 120.0 2835.5 2016-2017
## 4803 602.8 71.1 46.0 180.0 2565.1 2016-2017
## 4804 629.3 47.8 23.5 180.0 2656.4 2016-2017
## 4805 605.0 79.5 52.3 240.0 2620.0 2016-2017
## 4806 614.6 71.5 46.6 240.0 2717.3 2016-2017
## 4807 634.2 66.6 40.0 120.0 2722.1 2016-2017
## 4808 657.2 63.6 37.6 180.0 2782.8 2016-2017
## 4809 628.9 59.5 36.1 120.0 2684.8 2016-2017
## 4810 603.0 56.4 31.8 180.0 2636.8 2016-2017
## 4811 638.1 58.0 31.2 180.0 2737.3 2016-2017
## 4812 328.4 48.1 27.1 5.3 0.0 2016-2017
## 4813 331.2 46.6 24.2 5.4 0.0 2016-2017
## 4814 324.1 50.7 31.8 50.2 0.0 2016-2017
## 4815 328.3 46.3 24.6 4.8 0.0 2016-2017
## 4816 326.1 53.1 30.7 26.8 0.0 2016-2017
## 4817 331.3 46.8 20.8 5.0 0.0 2016-2017
## 4818 332.8 52.3 31.6 4.5 0.0 2016-2017
## 4819 328.2 40.8 21.5 4.5 0.0 2016-2017
## 4820 324.5 48.8 24.6 26.6 0.0 2016-2017
## 4821 322.0 43.9 20.9 27.6 0.0 2016-2017
## 4822 335.1 47.7 23.4 27.9 0.0 2016-2017
## 4823 329.9 48.9 26.5 27.1 0.0 2016-2017
## 4824 335.8 48.9 24.6 28.3 0.0 2016-2017
## 4825 335.7 51.6 29.8 52.6 0.0 2016-2017
## 4826 338.9 51.9 27.8 51.4 0.0 2016-2017
## 4827 329.9 52.2 28.2 4.9 0.0 2016-2017
## 4828 327.3 47.5 28.0 52.2 0.0 2016-2017
## 4829 334.9 51.2 29.1 4.7 0.0 2016-2017
## 4830 328.8 52.0 29.5 4.6 0.0 2016-2017
## 4831 328.1 48.5 25.4 27.9 0.0 2016-2017
## 4832 321.8 49.1 31.5 28.8 0.0 2016-2017
## 4833 330.6 49.4 26.7 5.6 0.0 2016-2017
## 4834 329.8 44.6 23.3 50.0 0.0 2016-2017
## 4835 339.1 47.2 26.0 52.8 0.0 2016-2017
## 4836 337.2 49.8 30.5 27.2 0.0 2016-2017
## 4837 326.5 42.8 21.0 26.2 0.0 2016-2017
## 4838 321.6 49.1 26.9 49.8 0.0 2016-2017
## 4839 328.1 44.3 19.6 52.1 0.0 2016-2017
## 4840 328.8 43.6 22.1 28.2 0.0 2016-2017
## 4841 331.3 45.2 23.8 31.4 0.0 2016-2017
## 4842 329.5 52.6 34.6 49.9 0.0 2016-2017
## 4843 332.1 48.1 26.7 27.6 0.0 2016-2017
## 4844 329.7 54.4 33.8 71.2 0.0 2016-2017
## 4845 337.9 52.9 29.1 5.2 0.0 2016-2017
## 4846 340.0 63.4 40.9 26.3 0.0 2016-2017
## 4847 342.3 47.1 23.3 27.7 0.0 2016-2017
## 4848 341.4 50.6 26.4 28.1 0.0 2016-2017
## 4849 339.9 59.8 34.3 52.3 0.0 2016-2017
## 4850 333.7 50.8 29.0 4.5 0.0 2016-2017
## 4851 344.0 66.8 45.1 26.9 0.0 2016-2017
## 4852 333.4 63.3 40.4 26.6 0.0 2016-2017
## 4853 332.1 52.8 28.6 51.6 0.0 2016-2017
## 4854 338.3 49.2 25.9 27.9 0.0 2016-2017
## 4855 352.2 54.8 36.1 5.3 0.0 2016-2017
## 4856 336.5 57.4 34.6 52.8 0.0 2016-2017
## 4857 332.8 55.1 30.6 51.8 0.0 2016-2017
## 4858 343.4 55.3 33.0 28.3 0.0 2016-2017
## 4859 345.8 55.4 38.8 29.3 0.0 2016-2017
## 4860 340.2 52.2 38.7 28.2 0.0 2016-2017
## 4861 338.0 62.2 39.7 50.0 0.0 2016-2017
## 4862 343.9 58.0 34.0 53.3 0.0 2016-2017
## 4863 336.7 51.0 26.6 78.2 0.0 2016-2017
## 4864 338.4 59.4 36.2 78.2 0.0 2016-2017
## 4865 337.5 51.8 28.6 54.7 0.0 2016-2017
## 4866 343.1 59.3 36.0 78.6 0.0 2016-2017
## 4867 351.5 49.4 25.3 28.9 0.0 2016-2017
## 4868 335.4 49.0 26.4 101.2 0.0 2016-2017
## 4869 350.4 54.9 33.1 79.4 0.0 2016-2017
## 4870 359.6 52.2 28.0 53.4 0.0 2016-2017
## 4871 454.7 38.6 22.8 8.5 0.0 2016-2017
## 4872 455.2 38.6 22.3 29.9 0.0 2016-2017
## 4873 466.7 37.8 21.4 8.0 0.0 2016-2017
## 4874 443.7 45.0 27.0 30.7 0.0 2016-2017
## 4875 466.2 40.9 25.0 7.8 0.0 2016-2017
## 4876 462.0 39.3 22.2 29.7 0.0 2016-2017
## 4877 465.1 39.3 22.7 8.1 0.0 2016-2017
## 4878 462.1 39.8 23.6 8.3 0.0 2016-2017
## 4879 456.6 40.2 22.5 29.7 0.0 2016-2017
## 4880 467.9 38.6 21.3 30.7 0.0 2016-2017
## 4881 462.4 44.5 28.4 8.1 0.0 2016-2017
## 4882 465.7 36.8 19.4 8.5 0.0 2016-2017
## 4883 469.1 43.9 27.1 8.1 0.0 2016-2017
## 4884 466.8 41.5 25.1 31.3 0.0 2016-2017
## 4885 466.1 41.9 25.4 30.2 0.0 2016-2017
## 4886 456.2 40.2 22.6 8.5 0.0 2016-2017
## 4887 458.4 43.9 26.6 32.1 0.0 2016-2017
## 4888 466.0 45.8 28.0 8.7 0.0 2016-2017
## 4889 465.8 43.3 25.9 30.5 0.0 2016-2017
## 4890 463.8 43.3 26.1 32.6 0.0 2016-2017
## 4891 457.0 48.4 31.7 7.7 0.0 2016-2017
## 4892 465.6 40.1 23.3 33.7 0.0 2016-2017
## 4893 450.3 49.9 32.6 52.0 0.0 2016-2017
## 4894 463.5 48.5 29.6 8.2 0.0 2016-2017
## 4895 478.3 43.4 27.5 7.9 0.0 2016-2017
## 4896 481.9 41.9 25.7 8.1 0.0 2016-2017
## 4897 473.7 47.7 29.8 8.8 0.0 2016-2017
## 4898 462.3 42.3 24.6 53.1 0.0 2016-2017
## 4899 466.6 41.8 25.3 31.4 0.0 2016-2017
## 4900 485.2 36.7 20.0 8.4 0.0 2016-2017
## 4901 468.3 39.3 22.7 8.3 0.0 2016-2017
## 4902 477.7 48.4 30.4 8.6 0.0 2016-2017
## 4903 459.2 47.2 29.5 30.6 0.0 2016-2017
## 4904 483.3 40.5 24.2 8.0 0.0 2016-2017
## 4905 468.6 43.4 25.6 54.7 0.0 2016-2017
## 4906 473.2 44.9 26.3 34.2 0.0 2016-2017
## 4907 478.6 42.3 25.8 31.1 0.0 2016-2017
## 4908 463.3 47.9 30.8 53.4 0.0 2016-2017
## 4909 462.5 40.6 22.0 32.4 0.0 2016-2017
## 4910 463.2 40.9 25.4 29.7 0.0 2016-2017
## 4911 469.7 42.2 25.0 8.4 0.0 2016-2017
## 4912 468.8 39.1 22.7 32.9 0.0 2016-2017
## 4913 476.1 45.4 28.1 32.1 0.0 2016-2017
## 4914 461.6 42.9 25.7 76.2 0.0 2016-2017
## 4915 500.3 40.5 23.3 8.6 0.0 2016-2017
## 4916 480.5 38.3 22.3 7.9 0.0 2016-2017
## 4917 476.4 40.2 22.3 31.7 0.0 2016-2017
## 4918 474.8 40.6 23.0 32.4 0.0 2016-2017
## 4919 469.6 50.8 34.1 8.4 0.0 2016-2017
## 4920 486.7 44.4 26.2 8.8 0.0 2016-2017
## 4921 468.9 47.3 29.5 52.0 0.0 2016-2017
## 4922 481.8 46.0 28.5 32.5 0.0 2016-2017
## 4923 479.5 38.9 21.0 31.9 0.0 2016-2017
## 4924 472.4 46.6 30.7 53.7 0.0 2016-2017
## 4925 476.5 40.5 23.3 32.0 0.0 2016-2017
## 4926 474.5 41.5 23.9 32.1 0.0 2016-2017
## 4927 477.4 40.2 23.4 55.1 0.0 2016-2017
## 4928 478.0 46.1 28.8 32.5 0.0 2016-2017
## 4929 481.7 39.2 22.8 31.8 0.0 2016-2017
## 4930 488.5 49.3 32.0 33.2 0.0 2016-2017
## 4931 501.4 42.6 23.8 9.0 0.0 2016-2017
## 4932 479.8 52.3 35.5 76.5 0.0 2016-2017
## 4933 492.7 42.5 23.7 34.5 0.0 2016-2017
## 4934 469.6 48.1 24.8 31.1 0.0 2016-2017
## 4935 501.4 43.6 25.5 8.6 0.0 2016-2017
## 4936 495.9 40.7 23.2 9.1 0.0 2016-2017
## 4937 478.3 46.4 28.1 34.9 0.0 2016-2017
## 4938 482.0 51.4 34.1 33.3 0.0 2016-2017
## 4939 485.3 41.4 24.3 31.6 0.0 2016-2017
## 4940 472.5 49.8 33.0 55.5 0.0 2016-2017
## 4941 477.7 40.8 22.9 32.7 0.0 2016-2017
## 4942 504.0 41.4 23.9 9.5 0.0 2016-2017
## 4943 488.0 45.2 26.6 9.2 0.0 2016-2017
## 4944 492.7 43.1 25.2 8.0 0.0 2016-2017
## 4945 494.5 41.9 24.2 34.5 0.0 2016-2017
## 4946 493.0 46.7 28.5 8.7 0.0 2016-2017
## 4947 486.6 45.5 26.9 8.8 0.0 2016-2017
## 4948 493.9 38.6 19.5 59.3 0.0 2016-2017
## 4949 494.7 44.9 26.3 55.0 0.0 2016-2017
## 4950 475.4 47.5 28.7 33.0 0.0 2016-2017
## 4951 487.6 43.4 25.6 56.2 0.0 2016-2017
## 4952 486.8 45.2 26.6 8.7 0.0 2016-2017
## 4953 510.2 41.0 24.0 8.3 0.0 2016-2017
## 4954 478.9 42.1 25.3 56.5 0.0 2016-2017
## 4955 484.4 46.5 27.8 34.0 0.0 2016-2017
## 4956 483.5 46.4 28.8 57.5 0.0 2016-2017
## 4957 488.9 47.8 30.2 83.1 0.0 2016-2017
## 4958 473.4 53.1 36.2 8.7 0.0 2016-2017
## 4959 480.0 40.6 23.0 8.4 0.0 2016-2017
## 4960 503.7 44.7 25.6 9.1 0.0 2016-2017
## 4961 493.4 48.1 31.4 57.6 0.0 2016-2017
## 4962 506.6 43.1 25.5 34.1 0.0 2016-2017
## 4963 504.7 46.8 29.5 8.7 0.0 2016-2017
## 4964 498.5 43.3 24.9 34.9 0.0 2016-2017
## 4965 507.5 44.9 25.6 35.9 0.0 2016-2017
## 4966 505.6 44.8 24.7 9.1 0.0 2016-2017
## 4967 517.5 43.2 25.9 8.9 0.0 2016-2017
## 4968 499.3 43.8 25.5 33.6 0.0 2016-2017
## 4969 483.7 46.1 29.0 59.7 0.0 2016-2017
## 4970 507.0 38.0 19.7 35.5 0.0 2016-2017
## 4971 513.9 46.8 28.9 9.3 0.0 2016-2017
## 4972 525.0 39.9 22.6 33.7 0.0 2016-2017
## 4973 504.8 44.0 25.8 34.1 0.0 2016-2017
## 4974 511.8 54.8 35.2 60.9 0.0 2016-2017
## 4975 524.1 51.5 32.9 8.9 0.0 2016-2017
## 4976 510.5 48.1 26.7 63.0 0.0 2016-2017
## 4977 525.1 46.1 27.7 59.5 0.0 2016-2017
## 4978 393.1 44.3 31.0 11.0 0.0 2016-2017
## 4979 394.8 43.8 27.9 8.5 0.0 2016-2017
## 4980 404.8 37.7 21.6 9.7 0.0 2016-2017
## 4981 401.9 38.5 21.6 34.0 0.0 2016-2017
## 4982 405.2 40.8 24.8 32.5 0.0 2016-2017
## 4983 413.8 44.6 29.8 32.5 0.0 2016-2017
## 4984 414.5 40.6 24.9 32.8 0.0 2016-2017
## 4985 400.0 41.2 26.6 32.2 0.0 2016-2017
## 4986 421.0 40.8 23.4 8.6 0.0 2016-2017
## 4987 422.3 38.6 22.1 9.4 0.0 2016-2017
## 4988 401.1 39.7 24.6 55.5 0.0 2016-2017
## 4989 416.4 37.5 20.2 8.3 0.0 2016-2017
## 4990 402.8 41.7 26.4 56.1 0.0 2016-2017
## 4991 403.3 39.7 21.9 55.4 0.0 2016-2017
## 4992 413.2 42.0 26.3 31.9 0.0 2016-2017
## 4993 410.9 44.7 27.9 8.7 0.0 2016-2017
## 4994 429.8 38.2 22.1 8.5 0.0 2016-2017
## 4995 435.5 39.5 21.9 8.7 0.0 2016-2017
## 4996 408.7 41.3 25.6 53.7 0.0 2016-2017
## 4997 415.1 42.4 24.8 32.0 0.0 2016-2017
## 4998 414.8 41.4 25.1 8.4 0.0 2016-2017
## 4999 410.4 38.7 20.9 55.5 0.0 2016-2017
## 5000 429.2 43.4 27.6 31.8 0.0 2016-2017
## 5001 434.5 37.2 20.4 33.3 0.0 2016-2017
## 5002 426.7 37.7 20.0 32.3 0.0 2016-2017
## 5003 418.6 41.0 23.9 54.8 0.0 2016-2017
## 5004 441.2 44.8 27.2 33.7 0.0 2016-2017
## 5005 449.4 38.9 21.8 9.3 0.0 2016-2017
## 5006 476.0 45.2 25.3 38.3 0.0 2016-2017
## 5007 417.7 51.4 33.8 53.8 0.0 2016-2017
## 5008 338.6 39.4 24.1 8.3 0.0 2016-2017
## 5009 341.8 38.1 21.0 30.3 0.0 2016-2017
## 5010 342.0 37.2 20.6 31.2 0.0 2016-2017
## 5011 339.3 39.9 24.4 9.2 0.0 2016-2017
## 5012 328.7 44.8 28.4 29.1 0.0 2016-2017
## 5013 333.7 38.9 22.0 31.1 0.0 2016-2017
## 5014 333.1 37.6 19.3 31.2 0.0 2016-2017
## 5015 342.7 42.1 24.5 33.0 0.0 2016-2017
## 5016 335.8 38.5 22.0 31.0 0.0 2016-2017
## 5017 332.2 42.5 25.7 30.5 0.0 2016-2017
## 5018 329.9 41.0 23.7 30.4 0.0 2016-2017
## 5019 339.5 45.1 27.0 8.7 0.0 2016-2017
## 5020 339.8 44.7 28.4 8.4 0.0 2016-2017
## 5021 331.8 40.9 25.3 52.3 0.0 2016-2017
## 5022 337.9 42.0 25.6 8.5 0.0 2016-2017
## 5023 332.5 41.2 21.3 33.4 0.0 2016-2017
## 5024 341.2 42.3 24.7 33.1 0.0 2016-2017
## 5025 334.0 47.8 32.6 31.4 0.0 2016-2017
## 5026 349.2 39.7 21.9 9.3 0.0 2016-2017
## 5027 342.7 42.5 26.5 8.5 0.0 2016-2017
## 5028 339.2 39.4 22.7 11.4 0.0 2016-2017
## 5029 338.9 42.4 25.5 32.1 0.0 2016-2017
## 5030 335.9 43.1 26.1 9.0 0.0 2016-2017
## 5031 335.9 40.8 21.7 59.1 0.0 2016-2017
## 5032 348.6 47.7 30.5 31.7 0.0 2016-2017
## 5033 339.6 41.5 22.7 56.7 0.0 2016-2017
## 5034 340.0 40.8 23.1 33.1 0.0 2016-2017
## 5035 333.6 41.6 25.6 56.4 0.0 2016-2017
## 5036 334.8 43.2 26.8 9.2 0.0 2016-2017
## 5037 336.8 38.1 20.5 9.0 0.0 2016-2017
## 5038 337.5 42.7 25.5 34.0 0.0 2016-2017
## 5039 339.6 42.6 26.8 32.9 0.0 2016-2017
## 5040 343.0 46.2 27.2 32.3 0.0 2016-2017
## 5041 358.7 62.7 44.8 32.4 0.0 2016-2017
## 5042 329.1 38.8 22.8 33.2 0.0 2016-2017
## 5043 331.8 36.8 21.1 32.8 0.0 2016-2017
## 5044 342.0 38.1 21.7 33.4 0.0 2016-2017
## 5045 340.1 43.3 25.3 57.4 0.0 2016-2017
## 5046 340.5 44.8 24.8 34.9 0.0 2016-2017
## 5047 336.8 43.5 25.4 80.5 0.0 2016-2017
## 5048 340.6 41.4 22.4 57.0 0.0 2016-2017
## 5049 338.7 44.9 25.8 58.9 0.0 2016-2017
## 5050 355.1 45.2 27.2 8.6 0.0 2016-2017
## 5051 344.9 41.7 24.3 60.6 0.0 2016-2017
## 5052 345.6 40.7 25.5 33.5 0.0 2016-2017
## 5053 348.0 38.4 21.0 33.2 0.0 2016-2017
## 5054 332.6 43.8 24.7 61.8 0.0 2016-2017
## 5055 350.7 46.5 34.2 35.4 0.0 2016-2017
## 5056 343.7 45.4 28.7 31.5 0.0 2016-2017
## 5057 362.7 38.8 21.9 9.2 0.0 2016-2017
## 5058 371.2 34.6 17.7 34.5 0.0 2016-2017
## 5059 368.7 36.4 19.1 8.8 0.0 2016-2017
## 5060 342.4 46.5 29.0 57.9 0.0 2016-2017
## 5061 358.1 43.6 25.6 8.8 0.0 2016-2017
## 5062 357.3 49.7 31.2 57.7 0.0 2016-2017
## 5063 356.3 37.6 20.5 57.2 0.0 2016-2017
## 5064 433.6 40.9 23.0 5.3 0.0 2016-2017
## 5065 441.1 40.0 22.0 5.3 0.0 2016-2017
## 5066 440.3 40.9 23.0 5.0 0.0 2016-2017
## 5067 437.5 48.6 31.0 5.4 0.0 2016-2017
## 5068 439.2 37.6 20.0 5.1 0.0 2016-2017
## 5069 439.7 45.2 24.0 5.2 0.0 2016-2017
## 5070 445.8 36.8 20.0 4.9 0.0 2016-2017
## 5071 440.7 44.3 27.0 5.7 0.0 2016-2017
## 5072 445.4 45.0 27.0 4.9 0.0 2016-2017
## 5073 438.1 38.3 21.0 5.0 0.0 2016-2017
## 5074 440.5 39.0 19.0 26.5 0.0 2016-2017
## 5075 455.9 42.2 24.0 5.3 0.0 2016-2017
## 5076 450.9 44.3 26.0 6.0 0.0 2016-2017
## 5077 461.2 44.1 23.0 5.3 0.0 2016-2017
## 5078 445.9 48.6 32.0 27.5 0.0 2016-2017
## 5079 454.4 40.5 22.0 4.7 0.0 2016-2017
## 5080 446.7 45.5 28.0 27.8 0.0 2016-2017
## 5081 452.7 45.0 25.0 5.1 0.0 2016-2017
## 5082 448.1 45.0 26.0 5.2 0.0 2016-2017
## 5083 451.5 46.7 29.0 5.0 0.0 2016-2017
## 5084 433.0 45.6 28.0 73.1 0.0 2016-2017
## 5085 455.2 46.6 29.0 5.4 0.0 2016-2017
## 5086 461.1 47.0 26.0 5.2 0.0 2016-2017
## 5087 444.7 45.3 25.0 28.9 0.0 2016-2017
## 5088 440.2 44.5 27.0 28.3 0.0 2016-2017
## 5089 445.7 51.2 33.0 5.2 0.0 2016-2017
## 5090 446.3 41.8 23.0 27.0 0.0 2016-2017
## 5091 452.5 49.5 31.0 29.1 0.0 2016-2017
## 5092 445.7 43.3 24.0 5.5 0.0 2016-2017
## 5093 448.8 49.4 31.0 28.1 0.0 2016-2017
## 5094 456.7 41.5 24.0 5.1 0.0 2016-2017
## 5095 471.2 38.9 21.0 5.2 0.0 2016-2017
## 5096 458.8 44.1 25.0 5.3 0.0 2016-2017
## 5097 460.2 44.5 26.0 27.6 0.0 2016-2017
## 5098 457.3 48.7 29.0 5.3 0.0 2016-2017
## 5099 453.2 41.0 23.0 27.8 0.0 2016-2017
## 5100 461.4 46.9 28.0 5.9 0.0 2016-2017
## 5101 448.3 47.5 31.0 52.1 0.0 2016-2017
## 5102 450.8 43.3 25.0 27.7 0.0 2016-2017
## 5103 449.3 42.5 24.0 5.7 0.0 2016-2017
## 5104 444.0 49.3 30.0 52.5 0.0 2016-2017
## 5105 444.5 39.5 23.0 25.7 0.0 2016-2017
## 5106 468.2 45.7 26.0 5.1 0.0 2016-2017
## 5107 451.6 42.5 24.0 29.4 0.0 2016-2017
## 5108 452.2 45.0 26.0 51.4 0.0 2016-2017
## 5109 440.8 46.2 27.0 51.7 0.0 2016-2017
## 5110 438.9 40.6 21.0 27.8 0.0 2016-2017
## 5111 452.3 42.5 25.0 28.7 0.0 2016-2017
## 5112 456.4 47.8 28.0 50.9 0.0 2016-2017
## 5113 450.2 45.0 25.0 5.5 0.0 2016-2017
## 5114 459.7 47.6 30.0 5.4 0.0 2016-2017
## 5115 455.5 46.9 32.0 28.2 0.0 2016-2017
## 5116 449.7 46.1 28.0 26.6 0.0 2016-2017
## 5117 472.8 49.5 30.0 5.2 0.0 2016-2017
## 5118 464.5 43.9 25.0 54.1 0.0 2016-2017
## 5119 452.7 50.7 30.0 5.4 0.0 2016-2017
## 5120 466.4 39.6 22.0 4.8 0.0 2016-2017
## 5121 455.7 46.2 27.0 29.6 0.0 2016-2017
## 5122 452.5 46.6 27.0 49.1 0.0 2016-2017
## 5123 448.0 48.9 30.0 52.2 0.0 2016-2017
## 5124 443.8 45.8 26.0 51.4 0.0 2016-2017
## 5125 457.6 46.1 29.0 51.0 0.0 2016-2017
## 5126 460.5 46.7 26.0 28.7 0.0 2016-2017
## 5127 465.4 43.3 24.0 29.0 0.0 2016-2017
## 5128 453.8 49.0 32.0 27.6 0.0 2016-2017
## 5129 467.0 45.7 25.0 5.7 0.0 2016-2017
## 5130 468.5 58.5 41.0 28.2 0.0 2016-2017
## 5131 465.6 47.2 27.0 28.8 0.0 2016-2017
## 5132 449.3 48.5 30.0 53.0 0.0 2016-2017
## 5133 445.1 48.0 29.0 98.3 0.0 2016-2017
## 5134 458.3 50.1 31.0 28.3 0.0 2016-2017
## 5135 471.2 42.1 23.0 30.6 0.0 2016-2017
## 5136 476.0 47.8 28.0 6.3 0.0 2016-2017
## 5137 463.2 46.4 30.0 51.6 0.0 2016-2017
## 5138 471.4 48.8 29.0 5.9 0.0 2016-2017
## 5139 455.0 45.6 26.0 28.2 0.0 2016-2017
## 5140 483.7 44.3 25.0 28.7 0.0 2016-2017
## 5141 460.2 55.7 36.0 50.6 0.0 2016-2017
## 5142 474.5 42.9 24.0 28.0 0.0 2016-2017
## 5143 475.2 52.9 32.0 57.5 0.0 2016-2017
## 5144 462.0 45.0 27.0 55.4 0.0 2016-2017
## 5145 486.0 40.0 22.0 5.1 0.0 2016-2017
## 5146 478.7 43.0 23.0 28.6 0.0 2016-2017
## 5147 471.4 46.0 26.0 30.5 0.0 2016-2017
## 5148 478.4 46.6 28.0 5.2 0.0 2016-2017
## 5149 478.9 50.0 31.0 29.8 0.0 2016-2017
## 5150 481.3 46.3 27.0 30.0 0.0 2016-2017
## 5151 489.3 35.3 19.0 5.0 0.0 2016-2017
## 5152 451.1 45.7 26.0 77.0 0.0 2016-2017
## 5153 463.6 46.9 28.0 28.4 0.0 2016-2017
## 5154 478.6 54.5 35.0 5.8 0.0 2016-2017
## 5155 485.8 48.2 29.0 5.5 0.0 2016-2017
## 5156 482.0 44.8 25.0 29.3 0.0 2016-2017
## 5157 465.9 54.7 35.0 81.1 0.0 2016-2017
## 5158 481.6 46.3 26.0 5.6 0.0 2016-2017
## 5159 476.2 45.6 26.0 5.8 0.0 2016-2017
## 5160 476.4 46.6 26.0 53.0 0.0 2016-2017
## 5161 485.6 51.1 32.0 30.4 0.0 2016-2017
## 5162 468.7 45.0 25.0 29.9 0.0 2016-2017
## 5163 479.2 45.9 26.0 56.8 0.0 2016-2017
## 5164 480.8 51.0 31.0 53.6 0.0 2016-2017
## 5165 486.0 47.2 27.0 55.5 0.0 2016-2017
## 5166 486.4 46.4 29.0 30.3 0.0 2016-2017
## 5167 477.2 56.6 35.0 55.5 0.0 2016-2017
## 5168 326.7 36.5 22.0 7.1 0.0 2016-2017
## 5169 323.2 44.7 27.0 6.7 0.0 2016-2017
## 5170 327.7 38.9 27.0 28.3 0.0 2016-2017
## 5171 324.1 38.4 21.0 48.6 0.0 2016-2017
## 5172 326.5 43.5 26.0 5.1 0.0 2016-2017
## 5173 334.3 39.9 24.0 5.2 0.0 2016-2017
## 5174 344.1 40.6 24.0 28.4 0.0 2016-2017
## 5175 336.5 45.6 30.0 28.1 0.0 2016-2017
## 5176 330.1 43.6 21.0 4.7 0.0 2016-2017
## 5177 337.1 44.5 28.0 5.0 0.0 2016-2017
## 5178 345.1 39.6 24.0 28.5 0.0 2016-2017
## 5179 337.9 41.5 23.0 5.3 0.0 2016-2017
## 5180 335.0 38.3 24.0 4.9 0.0 2016-2017
## 5181 328.8 39.7 22.0 5.0 0.0 2016-2017
## 5182 337.2 45.3 28.0 27.1 0.0 2016-2017
## 5183 334.6 38.8 21.0 27.5 0.0 2016-2017
## 5184 328.2 50.9 35.0 5.3 0.0 2016-2017
## 5185 335.2 48.3 31.0 5.0 0.0 2016-2017
## 5186 336.8 43.8 27.0 50.6 0.0 2016-2017
## 5187 334.0 39.3 22.0 50.4 0.0 2016-2017
## 5188 326.6 41.7 25.0 26.9 0.0 2016-2017
## 5189 337.6 46.6 31.0 49.4 0.0 2016-2017
## 5190 328.0 40.3 20.0 6.5 0.0 2016-2017
## 5191 336.7 52.0 23.0 27.7 0.0 2016-2017
## 5192 333.6 44.9 28.0 27.5 0.0 2016-2017
## 5193 333.9 42.9 27.0 6.7 0.0 2016-2017
## 5194 327.7 38.8 28.0 29.1 0.0 2016-2017
## 5195 325.2 41.5 26.0 27.1 0.0 2016-2017
## 5196 336.3 40.8 25.0 5.3 0.0 2016-2017
## 5197 337.8 42.1 22.0 28.5 0.0 2016-2017
## 5198 338.6 43.0 26.0 6.5 0.0 2016-2017
## 5199 321.4 44.9 26.0 50.6 0.0 2016-2017
## 5200 331.4 46.4 27.0 53.3 0.0 2016-2017
## 5201 323.4 43.7 27.0 53.0 0.0 2016-2017
## 5202 331.9 42.7 24.0 28.4 0.0 2016-2017
## 5203 337.6 43.3 26.0 28.6 0.0 2016-2017
## 5204 350.1 48.1 31.0 6.5 0.0 2016-2017
## 5205 340.7 50.0 31.0 27.9 0.0 2016-2017
## 5206 347.4 41.3 23.0 5.6 0.0 2016-2017
## 5207 344.8 40.1 22.0 5.0 0.0 2016-2017
## 5208 347.1 41.5 24.0 29.6 0.0 2016-2017
## 5209 335.4 47.3 29.0 72.6 0.0 2016-2017
## 5210 340.3 45.6 32.0 5.5 0.0 2016-2017
## 5211 347.1 42.1 23.0 5.8 0.0 2016-2017
## 5212 351.8 39.8 25.0 5.8 0.0 2016-2017
## 5213 349.9 46.9 28.0 53.1 0.0 2016-2017
## 5214 350.1 47.2 29.0 28.6 0.0 2016-2017
## 5215 349.9 44.7 26.0 54.6 0.0 2016-2017
## 5216 356.3 44.4 30.0 5.8 0.0 2016-2017
## 5217 349.6 41.1 22.0 5.3 0.0 2016-2017
## 5218 342.8 46.3 27.0 5.5 0.0 2016-2017
## 5219 355.7 39.7 22.0 28.8 0.0 2016-2017
## 5220 368.3 49.2 30.0 5.3 0.0 2016-2017
## 5221 337.9 47.7 37.0 52.5 0.0 2016-2017
## 5222 338.1 46.9 29.0 51.9 0.0 2016-2017
## 5223 352.4 41.1 23.0 30.0 0.0 2016-2017
## 5224 344.8 45.8 27.0 29.2 0.0 2016-2017
## 5225 348.7 51.4 33.0 82.0 0.0 2016-2017
## 5226 450.3 42.2 22.0 7.5 0.0 2016-2017
## 5227 456.1 46.6 24.6 8.2 0.0 2016-2017
## 5228 450.4 49.0 28.0 28.8 0.0 2016-2017
## 5229 462.6 48.1 27.6 8.6 0.0 2016-2017
## 5230 454.5 45.9 25.4 30.7 0.0 2016-2017
## 5231 452.0 45.9 27.6 7.1 0.0 2016-2017
## 5232 465.7 44.8 24.2 8.4 0.0 2016-2017
## 5233 463.9 49.8 29.7 49.1 0.0 2016-2017
## 5234 450.0 45.6 29.3 52.6 0.0 2016-2017
## 5235 474.0 45.3 23.1 8.1 0.0 2016-2017
## 5236 457.7 54.0 33.3 28.1 0.0 2016-2017
## 5237 460.9 49.9 30.5 27.1 0.0 2016-2017
## 5238 464.9 50.0 29.2 31.1 0.0 2016-2017
## 5239 473.0 47.5 25.9 8.2 0.0 2016-2017
## 5240 452.7 54.5 33.2 29.4 0.0 2016-2017
## 5241 452.0 49.6 29.4 29.1 0.0 2016-2017
## 5242 471.5 50.0 29.6 29.1 0.0 2016-2017
## 5243 468.3 44.4 23.2 30.4 0.0 2016-2017
## 5244 478.5 50.8 30.1 7.8 0.0 2016-2017
## 5245 451.3 47.4 27.9 30.0 0.0 2016-2017
## 5246 480.0 45.3 24.6 8.4 0.0 2016-2017
## 5247 463.4 45.3 27.0 29.8 0.0 2016-2017
## 5248 456.9 47.6 27.1 50.8 0.0 2016-2017
## 5249 469.0 49.9 29.3 8.0 0.0 2016-2017
## 5250 460.1 55.4 35.4 28.8 0.0 2016-2017
## 5251 462.4 41.2 22.5 50.9 0.0 2016-2017
## 5252 462.5 49.1 27.5 29.6 0.0 2016-2017
## 5253 474.7 48.0 27.4 29.5 0.0 2016-2017
## 5254 457.5 51.8 32.1 29.6 0.0 2016-2017
## 5255 475.2 50.1 27.5 9.3 0.0 2016-2017
## 5256 462.1 49.0 28.9 73.6 0.0 2016-2017
## 5257 455.0 47.8 26.6 29.5 0.0 2016-2017
## 5258 472.3 56.8 36.2 30.6 0.0 2016-2017
## 5259 463.4 48.7 25.4 50.4 0.0 2016-2017
## 5260 461.8 57.3 36.6 52.6 0.0 2016-2017
## 5261 471.7 62.0 41.4 30.5 0.0 2016-2017
## 5262 467.3 46.2 25.0 32.2 0.0 2016-2017
## 5263 463.5 53.8 32.6 76.3 0.0 2016-2017
## 5264 487.8 49.9 28.9 8.0 0.0 2016-2017
## 5265 469.1 49.9 28.9 29.7 0.0 2016-2017
## 5266 483.6 45.3 24.8 32.7 0.0 2016-2017
## 5267 452.5 49.9 29.3 74.8 0.0 2016-2017
## 5268 459.0 50.1 27.2 30.1 0.0 2016-2017
## 5269 467.3 48.5 27.5 30.2 0.0 2016-2017
## 5270 471.4 48.0 26.8 8.7 0.0 2016-2017
## 5271 461.2 48.8 27.6 30.6 0.0 2016-2017
## 5272 471.1 46.6 26.9 53.0 0.0 2016-2017
## 5273 456.1 57.0 34.3 54.6 0.0 2016-2017
## 5274 468.6 50.5 29.0 29.5 0.0 2016-2017
## 5275 467.4 50.2 28.9 51.5 0.0 2016-2017
## 5276 467.1 52.7 31.8 77.6 0.0 2016-2017
## 5277 479.4 49.3 28.3 29.7 0.0 2016-2017
## 5278 478.1 51.4 28.9 8.4 0.0 2016-2017
## 5279 473.2 49.8 27.0 54.5 0.0 2016-2017
## 5280 482.4 53.2 31.6 29.5 0.0 2016-2017
## 5281 479.7 45.9 24.0 8.5 0.0 2016-2017
## 5282 485.0 51.6 29.7 30.7 0.0 2016-2017
## 5283 466.9 51.8 29.9 32.2 0.0 2016-2017
## 5284 496.2 50.9 28.3 31.5 0.0 2016-2017
## 5285 469.9 45.3 24.1 31.5 0.0 2016-2017
## 5286 468.3 48.1 26.8 74.5 0.0 2016-2017
## 5287 494.5 47.7 25.2 8.5 0.0 2016-2017
## 5288 495.6 48.2 28.0 8.9 0.0 2016-2017
## 5289 469.2 51.7 30.5 52.9 0.0 2016-2017
## 5290 462.0 54.9 34.7 55.0 0.0 2016-2017
## 5291 477.1 50.3 27.6 54.8 0.0 2016-2017
## 5292 495.2 49.6 27.9 32.7 0.0 2016-2017
## 5293 485.4 55.2 31.8 53.2 0.0 2016-2017
## 5294 497.2 48.5 25.5 9.2 0.0 2016-2017
## 5295 480.5 54.9 31.9 56.5 0.0 2016-2017
## 5296 491.1 49.4 28.1 32.1 0.0 2016-2017
## 5297 481.6 50.5 27.4 8.8 0.0 2016-2017
## 5298 476.8 46.8 25.7 31.0 0.0 2016-2017
## 5299 479.1 50.6 26.4 55.2 0.0 2016-2017
## 5300 489.9 47.0 23.6 8.9 0.0 2016-2017
## 5301 497.0 47.3 29.1 31.2 0.0 2016-2017
## 5302 483.3 47.5 25.3 32.1 0.0 2016-2017
## 5303 491.9 58.9 35.9 30.6 0.0 2016-2017
## 5304 488.0 51.5 29.9 8.3 0.0 2016-2017
## 5305 490.9 46.0 25.2 32.1 0.0 2016-2017
## 5306 486.8 47.9 24.6 56.2 0.0 2016-2017
## 5307 491.5 44.6 21.7 31.5 0.0 2016-2017
## 5308 478.7 56.5 35.6 57.9 0.0 2016-2017
## 5309 484.0 55.1 34.5 30.2 0.0 2016-2017
## 5310 496.6 47.6 25.5 8.7 0.0 2016-2017
## 5311 480.4 52.8 30.5 54.3 0.0 2016-2017
## 5312 516.0 49.7 25.3 9.2 0.0 2016-2017
## 5313 504.5 45.4 23.1 55.7 0.0 2016-2017
## 5314 491.7 48.6 26.5 79.1 0.0 2016-2017
## 5315 488.2 50.6 29.9 31.7 0.0 2016-2017
## 5316 487.9 61.9 40.4 54.6 0.0 2016-2017
## 5317 484.8 48.4 22.9 32.4 0.0 2016-2017
## 5318 478.3 54.1 32.5 53.4 0.0 2016-2017
## 5319 506.0 56.6 34.8 53.8 0.0 2016-2017
## 5320 479.5 55.4 31.4 31.8 0.0 2016-2017
## 5321 499.3 51.7 27.8 57.0 0.0 2016-2017
## 5322 490.3 47.4 24.1 32.9 0.0 2016-2017
## 5323 510.5 46.9 23.7 34.6 0.0 2016-2017
## 5324 512.8 55.2 31.1 56.7 0.0 2016-2017
## 5325 494.0 53.1 31.3 32.9 0.0 2016-2017
## 5326 495.4 45.5 23.6 58.1 0.0 2016-2017
## 5327 509.3 54.8 31.7 57.9 0.0 2016-2017
## 5328 333.1 42.1 NA 10.5 0.0 2016-2017
## 5329 340.9 39.4 NA 8.7 0.0 2016-2017
## 5330 338.5 40.8 NA 31.3 0.0 2016-2017
## 5331 341.7 41.3 NA 52.2 0.0 2016-2017
## 5332 341.2 44.0 NA 9.1 0.0 2016-2017
## 5333 341.9 43.7 NA 8.0 0.0 2016-2017
## 5334 350.0 49.8 NA 51.1 0.0 2016-2017
## 5335 337.5 43.5 NA 29.5 0.0 2016-2017
## 5336 345.8 47.1 NA 8.8 0.0 2016-2017
## 5337 340.4 47.4 NA 49.9 0.0 2016-2017
## 5338 347.9 44.7 NA 8.4 0.0 2016-2017
## 5339 337.8 42.8 NA 29.5 0.0 2016-2017
## 5340 341.2 42.6 NA 30.0 0.0 2016-2017
## 5341 342.2 47.9 NA 8.1 0.0 2016-2017
## 5342 342.4 44.8 NA 8.8 0.0 2016-2017
## 5343 348.6 43.1 NA 50.1 0.0 2016-2017
## 5344 340.8 56.8 NA 8.5 0.0 2016-2017
## 5345 354.9 47.9 NA 8.9 0.0 2016-2017
## 5346 338.3 51.7 NA 49.8 0.0 2016-2017
## 5347 353.7 42.8 NA 7.7 0.0 2016-2017
## 5348 347.4 45.6 NA 52.0 0.0 2016-2017
## 5349 351.3 43.8 NA 7.7 0.0 2016-2017
## 5350 345.5 46.4 NA 30.0 0.0 2016-2017
## 5351 347.2 48.0 NA 29.8 0.0 2016-2017
## 5352 344.9 42.6 NA 8.5 0.0 2016-2017
## 5353 343.8 47.6 NA 30.4 0.0 2016-2017
## 5354 352.1 45.2 NA 29.2 0.0 2016-2017
## 5355 350.2 46.3 NA 30.0 0.0 2016-2017
## 5356 340.6 50.0 NA 51.8 0.0 2016-2017
## 5357 349.6 43.3 NA 51.4 0.0 2016-2017
## 5358 352.7 47.6 NA 10.4 0.0 2016-2017
## 5359 358.3 49.7 NA 9.4 0.0 2016-2017
## 5360 361.1 42.1 NA 33.4 0.0 2016-2017
## 5361 355.9 47.8 NA 31.9 0.0 2016-2017
## 5362 353.7 46.9 NA 8.9 0.0 2016-2017
## 5363 351.2 45.1 NA 53.8 0.0 2016-2017
## 5364 351.5 43.3 NA 81.2 0.0 2016-2017
## 5365 358.7 47.1 NA 30.6 0.0 2016-2017
## 5366 356.0 44.9 NA 31.1 0.0 2016-2017
## 5367 350.3 51.0 NA 53.5 0.0 2016-2017
## 5368 362.2 47.6 NA 54.6 0.0 2016-2017
## 5369 360.3 45.0 NA 8.9 0.0 2016-2017
## 5370 333.1 39.4 NA 7.7 0.0 2016-2017
## 5371 370.6 47.5 NA 8.6 0.0 2016-2017
## 5372 364.8 46.2 NA 8.8 0.0 2016-2017
## 5373 360.3 48.6 NA 30.5 0.0 2016-2017
## 5374 342.6 47.1 NA 75.0 0.0 2016-2017
## 5375 362.2 49.3 NA 9.0 0.0 2016-2017
## 5376 364.2 48.6 NA 54.8 0.0 2016-2017
## 5377 353.4 58.2 NA 55.4 0.0 2016-2017
## 5378 362.9 45.0 NA 30.2 0.0 2016-2017
## 5379 357.3 52.1 NA 30.6 0.0 2016-2017
## 5380 356.2 42.9 NA 8.5 0.0 2016-2017
## 5381 363.1 49.0 NA 31.8 0.0 2016-2017
## 5382 365.0 53.2 NA 32.3 0.0 2016-2017
## 5383 360.6 54.5 NA 80.8 0.0 2016-2017
## 5384 369.5 50.1 NA 30.8 0.0 2016-2017
## 5385 357.0 47.2 NA 54.4 0.0 2016-2017
## 5386 425.4 43.9 24.0 4.3 0.0 2016-2017
## 5387 434.3 42.2 23.0 4.0 0.0 2016-2017
## 5388 431.6 46.6 24.0 4.6 0.0 2016-2017
## 5389 438.6 46.8 28.0 4.4 0.0 2016-2017
## 5390 434.2 42.6 23.0 25.8 0.0 2016-2017
## 5391 442.0 39.3 21.0 4.0 0.0 2016-2017
## 5392 441.3 44.5 23.0 4.5 0.0 2016-2017
## 5393 426.8 42.3 23.0 25.7 0.0 2016-2017
## 5394 434.6 50.6 28.0 26.9 0.0 2016-2017
## 5395 448.4 43.1 23.0 4.5 0.0 2016-2017
## 5396 439.4 46.9 28.0 4.5 0.0 2016-2017
## 5397 435.5 50.7 31.0 24.5 0.0 2016-2017
## 5398 443.2 53.8 32.0 4.4 0.0 2016-2017
## 5399 432.2 47.5 26.0 27.1 0.0 2016-2017
## 5400 444.7 52.1 29.0 4.2 0.0 2016-2017
## 5401 444.6 52.1 30.0 4.3 0.0 2016-2017
## 5402 442.0 50.3 28.0 26.3 0.0 2016-2017
## 5403 437.4 46.9 25.0 25.4 0.0 2016-2017
## 5404 439.6 42.7 23.0 26.1 0.0 2016-2017
## 5405 428.0 48.8 29.0 63.3 0.0 2016-2017
## 5406 442.4 51.0 32.0 25.4 0.0 2016-2017
## 5407 432.4 48.1 26.0 25.5 0.0 2016-2017
## 5408 442.3 46.5 26.0 4.6 0.0 2016-2017
## 5409 434.1 42.5 23.0 25.0 0.0 2016-2017
## 5410 441.9 50.4 30.0 25.6 0.0 2016-2017
## 5411 434.8 40.4 19.0 27.7 0.0 2016-2017
## 5412 426.2 44.2 25.0 26.0 0.0 2016-2017
## 5413 435.6 48.2 28.0 25.6 0.0 2016-2017
## 5414 443.7 46.5 27.0 24.9 0.0 2016-2017
## 5415 441.7 48.4 35.0 26.5 0.0 2016-2017
## 5416 443.2 47.4 26.0 26.2 0.0 2016-2017
## 5417 454.8 46.8 24.0 4.4 0.0 2016-2017
## 5418 434.3 47.6 27.0 46.8 0.0 2016-2017
## 5419 441.1 48.8 29.0 4.1 0.0 2016-2017
## 5420 442.9 51.2 28.0 26.5 0.0 2016-2017
## 5421 430.8 51.1 29.0 25.7 0.0 2016-2017
## 5422 445.8 51.0 28.0 5.0 0.0 2016-2017
## 5423 447.2 57.3 38.0 4.2 0.0 2016-2017
## 5424 441.2 51.0 31.0 4.5 0.0 2016-2017
## 5425 449.3 44.8 24.0 4.7 0.0 2016-2017
## 5426 431.6 48.4 29.0 49.3 0.0 2016-2017
## 5427 453.5 48.8 25.0 4.6 0.0 2016-2017
## 5428 421.0 48.3 28.0 46.5 0.0 2016-2017
## 5429 455.9 49.0 26.0 5.0 0.0 2016-2017
## 5430 451.2 48.2 26.0 26.6 0.0 2016-2017
## 5431 447.3 50.1 30.0 24.8 0.0 2016-2017
## 5432 446.3 46.8 24.0 26.8 0.0 2016-2017
## 5433 436.9 46.7 24.0 47.6 0.0 2016-2017
## 5434 441.5 45.6 25.0 26.8 0.0 2016-2017
## 5435 454.0 44.8 22.0 4.6 0.0 2016-2017
## 5436 447.4 50.6 29.0 4.6 0.0 2016-2017
## 5437 438.7 45.6 24.0 26.4 0.0 2016-2017
## 5438 432.3 47.6 26.0 4.6 0.0 2016-2017
## 5439 431.4 49.1 28.0 71.9 0.0 2016-2017
## 5440 442.5 49.0 28.0 44.7 0.0 2016-2017
## 5441 442.3 56.1 35.0 26.5 0.0 2016-2017
## 5442 442.7 52.4 29.0 52.4 0.0 2016-2017
## 5443 449.9 46.7 27.0 27.3 0.0 2016-2017
## 5444 442.4 42.2 22.0 4.6 0.0 2016-2017
## 5445 454.4 48.9 29.0 27.2 0.0 2016-2017
## 5446 447.6 65.4 43.0 4.7 0.0 2016-2017
## 5447 455.0 54.6 36.0 27.0 0.0 2016-2017
## 5448 456.2 56.4 36.0 26.3 0.0 2016-2017
## 5449 453.8 47.9 28.0 25.7 0.0 2016-2017
## 5450 437.8 40.7 20.0 25.4 0.0 2016-2017
## 5451 454.3 51.3 31.0 26.5 0.0 2016-2017
## 5452 456.1 40.9 22.0 50.4 0.0 2016-2017
## 5453 455.4 47.0 27.0 28.6 0.0 2016-2017
## 5454 462.7 50.6 28.0 5.0 0.0 2016-2017
## 5455 442.7 46.3 26.0 26.3 0.0 2016-2017
## 5456 454.3 47.0 25.0 27.7 0.0 2016-2017
## 5457 445.3 55.4 34.0 49.8 0.0 2016-2017
## 5458 437.0 53.0 33.0 102.0 0.0 2016-2017
## 5459 439.0 48.9 29.0 52.2 0.0 2016-2017
## 5460 448.9 48.9 30.0 49.7 0.0 2016-2017
## 5461 455.6 52.0 31.0 28.5 0.0 2016-2017
## 5462 462.7 50.9 29.0 50.1 0.0 2016-2017
## 5463 466.8 41.2 19.0 28.1 0.0 2016-2017
## 5464 453.9 53.9 32.0 53.0 0.0 2016-2017
## 5465 449.2 57.2 35.0 26.3 0.0 2016-2017
## 5466 448.6 54.1 31.0 50.9 0.0 2016-2017
## 5467 454.0 52.8 30.0 27.5 0.0 2016-2017
## 5468 442.2 61.9 48.0 25.3 0.0 2016-2017
## 5469 452.2 53.5 29.0 73.5 0.0 2016-2017
## 5470 454.8 48.8 27.0 50.5 0.0 2016-2017
## 5471 453.0 49.8 29.0 27.9 0.0 2016-2017
## 5472 459.0 46.0 26.0 4.5 0.0 2016-2017
## 5473 459.6 49.4 25.0 28.6 0.0 2016-2017
## 5474 461.9 48.8 28.0 4.6 0.0 2016-2017
## 5475 463.9 55.1 34.0 52.0 0.0 2016-2017
## 5476 454.7 52.3 28.0 28.5 0.0 2016-2017
## 5477 455.4 66.7 54.0 72.4 0.0 2016-2017
## 5478 464.5 43.9 25.0 4.2 0.0 2016-2017
## 5479 487.2 51.4 28.0 28.7 0.0 2016-2017
## 5480 478.0 51.4 31.0 51.6 0.0 2016-2017
## 5481 443.8 58.7 39.0 74.0 0.0 2016-2017
## 5482 474.6 52.0 29.0 50.0 0.0 2016-2017
## 5483 457.4 45.7 22.0 51.2 0.0 2016-2017
## 5484 482.0 55.1 32.0 54.0 0.0 2016-2017
## 5485 470.7 54.1 32.0 100.8 0.0 2016-2017
## 5486 459.0 55.3 34.0 97.6 0.0 2016-2017
## 5487 480.0 49.7 25.0 54.7 0.0 2016-2017
## 5488 472.5 51.2 29.0 52.8 0.0 2016-2017
## 5489 475.8 49.7 27.0 54.3 0.0 2016-2017
## 5490 492.5 54.1 32.0 28.2 0.0 2016-2017
## 5491 468.6 50.9 28.0 52.6 0.0 2016-2017
## 5492 469.1 59.5 33.0 75.0 0.0 2016-2017
## 5493 347.1 47.0 27.0 6.0 0.0 2016-2017
## 5494 353.8 56.1 34.0 5.0 0.0 2016-2017
## 5495 356.3 44.3 24.0 6.1 0.0 2016-2017
## 5496 346.9 52.8 27.0 22.4 0.0 2016-2017
## 5497 351.4 48.8 27.0 25.0 0.0 2016-2017
## 5498 351.8 51.2 29.0 4.0 0.0 2016-2017
## 5499 344.8 95.6 31.0 6.0 0.0 2016-2017
## 5500 349.1 50.0 27.0 2.3 0.0 2016-2017
## 5501 357.8 47.9 27.0 5.0 0.0 2016-2017
## 5502 349.8 47.3 25.0 4.5 0.0 2016-2017
## 5503 348.4 60.6 27.0 12.0 0.0 2016-2017
## 5504 343.3 47.8 28.0 4.6 0.0 2016-2017
## 5505 341.1 45.7 23.0 25.0 0.0 2016-2017
## 5506 351.3 91.8 26.0 5.0 0.0 2016-2017
## 5507 350.6 44.9 25.0 4.8 0.0 2016-2017
## 5508 352.5 43.1 27.0 4.7 0.0 2016-2017
## 5509 349.1 61.9 27.0 13.2 0.0 2016-2017
## 5510 350.0 39.1 22.0 8.8 0.0 2016-2017
## 5511 353.1 46.0 28.0 4.8 0.0 2016-2017
## 5512 357.8 73.8 27.0 5.0 0.0 2016-2017
## 5513 350.1 47.9 30.0 4.7 0.0 2016-2017
## 5514 346.1 60.0 28.0 37.0 0.0 2016-2017
## 5515 349.1 50.9 23.0 43.9 0.0 2016-2017
## 5516 348.6 47.2 27.0 28.0 0.0 2016-2017
## 5517 348.2 95.1 29.0 5.0 0.0 2016-2017
## 5518 355.7 50.7 30.0 27.8 0.0 2016-2017
## 5519 356.4 46.3 22.0 5.6 0.0 2016-2017
## 5520 364.6 48.5 30.0 28.7 0.0 2016-2017
## 5521 358.6 44.8 25.0 4.9 0.0 2016-2017
## 5522 350.8 52.3 34.0 29.1 0.0 2016-2017
## 5523 357.6 45.8 24.0 50.8 0.0 2016-2017
## 5524 347.7 42.0 22.0 53.3 0.0 2016-2017
## 5525 352.6 47.1 26.0 52.7 0.0 2016-2017
## 5526 358.7 52.8 32.0 29.0 0.0 2016-2017
## 5527 361.2 53.3 30.0 5.4 0.0 2016-2017
## 5528 375.2 43.4 22.0 31.9 0.0 2016-2017
## 5529 357.5 46.1 24.0 29.7 0.0 2016-2017
## 5530 355.5 57.4 37.0 4.5 0.0 2016-2017
## 5531 358.2 49.8 27.0 55.1 0.0 2016-2017
## 5532 368.0 47.5 25.0 5.1 0.0 2016-2017
## 5533 365.3 49.8 26.0 30.4 0.0 2016-2017
## 5534 371.7 55.6 37.0 57.3 0.0 2016-2017
## 5535 371.4 47.0 24.0 29.7 0.0 2016-2017
## 5536 374.9 47.4 25.0 5.0 0.0 2016-2017
## 5537 372.9 48.1 26.0 4.9 0.0 2016-2017
## 5538 356.9 57.2 34.0 4.6 0.0 2016-2017
## 5539 369.4 53.5 29.0 32.5 0.0 2016-2017
## 5540 376.5 51.9 29.0 29.4 0.0 2016-2017
## 5541 364.7 46.5 23.0 79.5 0.0 2016-2017
## 5542 369.4 50.8 27.0 76.3 0.0 2016-2017
## 5543 364.5 47.0 27.0 27.1 0.0 2016-2017
## 5544 375.1 47.1 28.0 28.5 0.0 2016-2017
## 5545 374.3 46.8 28.0 28.9 0.0 2016-2017
## 5546 388.3 52.0 27.0 84.2 0.0 2016-2017
## 5547 384.2 56.4 31.0 55.9 0.0 2016-2017
## 5548 420.4 42.0 24.0 4.6 0.0 2017-2018
## 5549 425.8 43.5 26.0 4.1 0.0 2017-2018
## 5550 431.1 40.3 22.0 4.0 0.0 2017-2018
## 5551 437.0 40.9 22.0 4.2 0.0 2017-2018
## 5552 432.3 40.2 22.0 3.8 0.0 2017-2018
## 5553 432.5 40.5 20.0 4.1 0.0 2017-2018
## 5554 434.4 46.0 29.0 4.2 0.0 2017-2018
## 5555 442.5 38.7 20.0 4.6 0.0 2017-2018
## 5556 440.8 41.2 23.0 3.9 0.0 2017-2018
## 5557 436.9 43.3 24.0 3.9 0.0 2017-2018
## 5558 439.1 43.7 25.0 4.5 0.0 2017-2018
## 5559 423.5 45.4 26.0 45.9 0.0 2017-2018
## 5560 432.8 50.5 30.0 4.7 0.0 2017-2018
## 5561 439.2 45.8 26.0 4.4 0.0 2017-2018
## 5562 436.9 45.8 27.0 4.6 0.0 2017-2018
## 5563 440.9 44.8 25.0 4.4 0.0 2017-2018
## 5564 446.9 42.5 23.0 4.0 0.0 2017-2018
## 5565 430.3 41.8 22.0 4.4 0.0 2017-2018
## 5566 437.3 42.6 23.0 26.8 0.0 2017-2018
## 5567 434.9 44.1 25.0 26.5 0.0 2017-2018
## 5568 443.5 40.4 21.0 27.5 0.0 2017-2018
## 5569 436.9 49.7 29.0 26.7 0.0 2017-2018
## 5570 438.7 46.6 27.0 25.4 0.0 2017-2018
## 5571 432.2 49.4 30.0 26.6 0.0 2017-2018
## 5572 435.6 42.8 23.0 25.1 0.0 2017-2018
## 5573 442.6 38.9 19.0 47.1 0.0 2017-2018
## 5574 438.8 48.7 29.0 25.9 0.0 2017-2018
## 5575 440.1 41.5 23.0 25.8 0.0 2017-2018
## 5576 450.2 42.9 22.0 4.5 0.0 2017-2018
## 5577 443.6 48.9 29.0 4.5 0.0 2017-2018
## 5578 433.2 48.9 28.0 25.6 0.0 2017-2018
## 5579 451.6 49.0 29.0 4.2 0.0 2017-2018
## 5580 445.3 46.2 27.0 4.5 0.0 2017-2018
## 5581 438.1 52.1 32.0 4.0 0.0 2017-2018
## 5582 443.7 45.9 26.0 4.6 0.0 2017-2018
## 5583 455.5 43.6 24.0 4.1 0.0 2017-2018
## 5584 440.4 42.0 22.0 4.5 0.0 2017-2018
## 5585 441.8 49.8 32.0 24.3 0.0 2017-2018
## 5586 452.5 41.8 21.0 4.7 0.0 2017-2018
## 5587 431.6 44.1 24.0 44.8 0.0 2017-2018
## 5588 454.5 46.0 26.0 4.3 0.0 2017-2018
## 5589 439.4 44.3 23.0 49.0 0.0 2017-2018
## 5590 445.8 44.0 24.0 4.6 0.0 2017-2018
## 5591 435.8 41.2 23.0 73.6 0.0 2017-2018
## 5592 431.0 40.5 21.0 46.2 0.0 2017-2018
## 5593 445.9 44.6 25.0 47.5 0.0 2017-2018
## 5594 448.1 43.2 23.0 26.9 0.0 2017-2018
## 5595 450.7 48.3 27.0 25.4 0.0 2017-2018
## 5596 452.5 44.9 26.0 27.8 0.0 2017-2018
## 5597 441.4 43.5 24.0 26.2 0.0 2017-2018
## 5598 449.4 43.8 24.0 4.0 0.0 2017-2018
## 5599 460.2 41.4 22.0 4.1 0.0 2017-2018
## 5600 442.6 43.1 24.0 26.8 0.0 2017-2018
## 5601 437.1 50.3 31.0 49.6 0.0 2017-2018
## 5602 463.2 38.0 19.0 4.7 0.0 2017-2018
## 5603 455.4 39.6 20.0 4.4 0.0 2017-2018
## 5604 441.9 49.3 29.0 26.7 0.0 2017-2018
## 5605 450.6 45.8 25.0 48.5 0.0 2017-2018
## 5606 452.8 46.7 27.0 25.8 0.0 2017-2018
## 5607 455.9 47.7 28.0 4.6 0.0 2017-2018
## 5608 435.7 44.5 25.0 49.4 0.0 2017-2018
## 5609 436.6 48.0 30.0 27.4 0.0 2017-2018
## 5610 444.1 44.2 23.0 26.7 0.0 2017-2018
## 5611 446.4 48.6 27.0 26.7 0.0 2017-2018
## 5612 443.7 48.6 27.0 25.8 0.0 2017-2018
## 5613 461.4 48.0 27.0 27.4 0.0 2017-2018
## 5614 463.4 45.9 26.0 26.6 0.0 2017-2018
## 5615 449.8 49.3 28.0 27.1 0.0 2017-2018
## 5616 467.1 43.2 23.0 27.8 0.0 2017-2018
## 5617 465.2 42.9 25.0 27.5 0.0 2017-2018
## 5618 445.0 45.2 24.0 47.5 0.0 2017-2018
## 5619 442.5 55.4 36.0 26.6 0.0 2017-2018
## 5620 436.7 41.4 22.0 49.2 0.0 2017-2018
## 5621 447.5 49.8 31.0 48.0 0.0 2017-2018
## 5622 460.2 52.9 33.0 50.0 0.0 2017-2018
## 5623 454.6 50.1 29.0 27.9 0.0 2017-2018
## 5624 461.4 48.0 27.0 28.2 0.0 2017-2018
## 5625 462.6 49.1 29.0 4.9 0.0 2017-2018
## 5626 468.3 44.3 24.0 5.3 0.0 2017-2018
## 5627 456.1 45.4 25.0 51.9 0.0 2017-2018
## 5628 460.2 46.7 28.0 48.0 0.0 2017-2018
## 5629 476.9 44.0 22.0 4.9 0.0 2017-2018
## 5630 451.9 47.9 28.0 27.2 0.0 2017-2018
## 5631 445.4 56.5 35.0 94.6 0.0 2017-2018
## 5632 452.3 44.8 25.0 26.1 0.0 2017-2018
## 5633 435.9 47.9 27.0 48.2 0.0 2017-2018
## 5634 459.6 42.7 23.0 28.2 0.0 2017-2018
## 5635 478.0 55.7 34.0 28.5 0.0 2017-2018
## 5636 469.7 47.7 27.0 4.8 0.0 2017-2018
## 5637 452.2 45.0 25.0 50.1 0.0 2017-2018
## 5638 470.3 42.8 22.0 50.5 0.0 2017-2018
## 5639 442.4 53.2 35.0 120.2 0.0 2017-2018
## 5640 454.2 46.8 27.0 52.8 0.0 2017-2018
## 5641 445.9 60.0 38.0 50.2 0.0 2017-2018
## 5642 455.3 51.7 30.0 77.0 0.0 2017-2018
## 5643 463.9 42.0 21.0 28.3 0.0 2017-2018
## 5644 481.4 44.5 23.0 5.3 0.0 2017-2018
## 5645 471.0 46.1 25.0 28.3 0.0 2017-2018
## 5646 470.4 52.6 32.0 77.8 0.0 2017-2018
## 5647 450.7 47.2 26.0 100.6 0.0 2017-2018
## 5648 472.4 55.1 33.0 51.4 0.0 2017-2018
## 5649 514.6 49.4 25.0 5.0 0.0 2017-2018
## 5650 510.5 66.4 43.0 29.7 0.0 2017-2018
## 5651 395.5 45.3 28.0 5.6 0.0 2017-2018
## 5652 398.9 40.8 23.0 5.1 0.0 2017-2018
## 5653 411.5 41.0 24.0 5.6 0.0 2017-2018
## 5654 411.1 39.7 20.0 5.3 0.0 2017-2018
## 5655 400.0 41.9 23.0 4.9 0.0 2017-2018
## 5656 404.6 42.7 24.0 4.5 0.0 2017-2018
## 5657 411.5 42.5 25.0 4.1 0.0 2017-2018
## 5658 412.0 45.8 26.0 5.0 0.0 2017-2018
## 5659 400.4 39.5 21.0 48.0 0.0 2017-2018
## 5660 411.6 43.1 23.0 4.4 0.0 2017-2018
## 5661 414.2 46.5 28.0 25.5 0.0 2017-2018
## 5662 404.6 41.5 22.0 50.4 0.0 2017-2018
## 5663 413.0 41.3 23.0 4.7 0.0 2017-2018
## 5664 429.0 46.3 25.0 4.3 0.0 2017-2018
## 5665 404.1 47.4 29.0 24.9 0.0 2017-2018
## 5666 418.4 39.9 19.0 27.1 0.0 2017-2018
## 5667 406.9 40.1 21.0 26.5 0.0 2017-2018
## 5668 408.9 44.0 26.0 70.2 0.0 2017-2018
## 5669 412.2 43.5 25.0 4.6 0.0 2017-2018
## 5670 402.2 40.8 21.0 71.5 0.0 2017-2018
## 5671 426.7 47.6 28.0 29.2 0.0 2017-2018
## 5672 423.2 36.6 17.0 28.7 0.0 2017-2018
## 5673 422.0 43.3 26.0 26.0 0.0 2017-2018
## 5674 418.5 41.3 23.0 48.5 0.0 2017-2018
## 5675 400.7 50.2 31.0 98.1 0.0 2017-2018
## 5676 436.4 45.8 26.0 28.0 0.0 2017-2018
## 5677 440.1 44.3 25.0 70.8 0.0 2017-2018
## 5678 442.3 44.1 23.0 50.6 0.0 2017-2018
## 5679 450.9 45.8 26.0 51.5 0.0 2017-2018
## 5680 443.9 41.2 20.0 55.4 0.0 2017-2018
## 5681 357.9 39.8 22.0 5.8 0.0 2017-2018
## 5682 350.1 40.9 22.0 28.9 0.0 2017-2018
## 5683 362.3 40.5 22.0 27.2 0.0 2017-2018
## 5684 355.5 40.6 21.0 5.1 0.0 2017-2018
## 5685 359.1 42.4 23.0 4.4 0.0 2017-2018
## 5686 366.0 41.7 23.0 25.4 0.0 2017-2018
## 5687 354.4 45.0 27.0 24.6 0.0 2017-2018
## 5688 361.5 46.3 28.0 25.8 0.0 2017-2018
## 5689 356.3 41.4 20.0 5.0 0.0 2017-2018
## 5690 357.2 44.0 24.0 26.3 0.0 2017-2018
## 5691 364.2 42.9 25.0 4.5 0.0 2017-2018
## 5692 364.6 39.7 22.0 4.6 0.0 2017-2018
## 5693 356.8 46.8 26.0 24.9 0.0 2017-2018
## 5694 370.6 45.6 24.0 4.6 0.0 2017-2018
## 5695 356.7 40.9 22.0 25.3 0.0 2017-2018
## 5696 361.7 43.8 26.0 28.5 0.0 2017-2018
## 5697 369.9 41.6 22.0 4.7 0.0 2017-2018
## 5698 368.6 45.8 28.0 4.3 0.0 2017-2018
## 5699 357.0 52.5 35.0 26.9 0.0 2017-2018
## 5700 367.9 42.4 24.0 4.2 0.0 2017-2018
## 5701 365.1 45.5 26.0 4.4 0.0 2017-2018
## 5702 368.7 47.4 29.0 5.2 0.0 2017-2018
## 5703 364.8 41.3 23.0 50.4 0.0 2017-2018
## 5704 367.6 45.3 25.0 26.9 0.0 2017-2018
## 5705 375.2 42.7 22.0 26.9 0.0 2017-2018
## 5706 371.9 45.5 26.0 27.9 0.0 2017-2018
## 5707 364.5 44.1 26.0 47.5 0.0 2017-2018
## 5708 367.4 46.4 28.0 49.6 0.0 2017-2018
## 5709 379.5 43.3 23.0 4.6 0.0 2017-2018
## 5710 375.0 42.2 21.0 26.4 0.0 2017-2018
## 5711 378.1 42.1 22.0 28.1 0.0 2017-2018
## 5712 364.1 42.1 24.0 29.4 0.0 2017-2018
## 5713 382.7 45.9 27.0 5.4 0.0 2017-2018
## 5714 375.7 43.4 21.0 4.8 0.0 2017-2018
## 5715 374.3 44.4 24.0 4.6 0.0 2017-2018
## 5716 376.3 46.0 26.0 28.0 0.0 2017-2018
## 5717 377.9 44.8 25.0 4.6 0.0 2017-2018
## 5718 368.6 47.3 28.0 28.5 0.0 2017-2018
## 5719 383.6 48.2 27.0 27.6 0.0 2017-2018
## 5720 373.5 45.9 24.0 28.7 0.0 2017-2018
## 5721 370.2 39.3 18.0 27.7 0.0 2017-2018
## 5722 380.6 46.1 27.0 52.6 0.0 2017-2018
## 5723 370.8 42.3 21.0 28.9 0.0 2017-2018
## 5724 368.5 50.9 31.0 27.5 0.0 2017-2018
## 5725 379.3 43.5 20.0 5.2 0.0 2017-2018
## 5726 374.0 47.7 29.0 78.1 0.0 2017-2018
## 5727 371.9 44.0 23.0 27.1 0.0 2017-2018
## 5728 374.6 42.5 24.0 81.3 0.0 2017-2018
## 5729 373.0 50.2 29.0 75.1 0.0 2017-2018
## 5730 367.4 51.2 31.0 50.9 0.0 2017-2018
## 5731 381.1 49.1 28.0 29.1 0.0 2017-2018
## 5732 390.9 39.2 19.0 5.0 0.0 2017-2018
## 5733 381.8 48.3 28.0 81.9 0.0 2017-2018
## 5734 389.8 44.9 25.0 29.3 0.0 2017-2018
## 5735 387.1 49.5 28.0 54.6 0.0 2017-2018
## 5736 385.6 51.8 31.0 50.2 0.0 2017-2018
## 5737 386.6 43.3 24.0 4.5 0.0 2017-2018
## 5738 412.6 40.9 22.0 8.7 0.0 2017-2018
## 5739 428.2 39.4 21.0 8.1 0.0 2017-2018
## 5740 441.1 47.4 29.0 8.5 0.0 2017-2018
## 5741 431.0 44.1 23.0 30.4 0.0 2017-2018
## 5742 441.1 43.8 24.0 8.5 0.0 2017-2018
## 5743 449.4 41.0 23.0 7.9 0.0 2017-2018
## 5744 442.2 42.9 25.0 53.5 0.0 2017-2018
## 5745 457.1 43.3 24.0 8.6 0.0 2017-2018
## 5746 449.1 46.4 26.0 30.2 0.0 2017-2018
## 5747 457.1 45.5 26.0 8.9 0.0 2017-2018
## 5748 438.4 44.6 27.0 50.6 0.0 2017-2018
## 5749 463.2 47.8 31.0 8.1 0.0 2017-2018
## 5750 432.9 46.3 29.0 31.0 0.0 2017-2018
## 5751 443.3 53.3 35.0 52.4 0.0 2017-2018
## 5752 435.5 46.6 28.0 30.3 0.0 2017-2018
## 5753 438.9 51.2 32.0 33.0 0.0 2017-2018
## 5754 437.4 43.9 30.0 7.4 0.0 2017-2018
## 5755 456.5 44.9 27.0 52.3 0.0 2017-2018
## 5756 441.5 54.6 38.0 51.0 0.0 2017-2018
## 5757 437.6 46.6 29.0 28.8 0.0 2017-2018
## 5758 461.2 56.6 37.0 8.3 0.0 2017-2018
## 5759 442.5 48.1 30.0 51.9 0.0 2017-2018
## 5760 451.1 42.0 22.0 31.9 0.0 2017-2018
## 5761 453.8 50.9 33.0 29.4 0.0 2017-2018
## 5762 460.5 44.6 26.0 8.8 0.0 2017-2018
## 5763 431.8 42.8 24.0 54.1 0.0 2017-2018
## 5764 437.8 43.0 25.0 28.9 0.0 2017-2018
## 5765 445.1 47.4 28.0 31.6 0.0 2017-2018
## 5766 450.6 48.6 29.0 55.7 0.0 2017-2018
## 5767 449.1 46.4 27.0 8.6 0.0 2017-2018
## 5768 457.4 42.4 24.0 55.6 0.0 2017-2018
## 5769 446.9 44.3 26.0 54.9 0.0 2017-2018
## 5770 451.3 51.7 33.0 30.5 0.0 2017-2018
## 5771 447.9 49.9 29.0 30.9 0.0 2017-2018
## 5772 450.6 50.0 31.0 30.7 0.0 2017-2018
## 5773 447.9 54.4 36.0 73.2 0.0 2017-2018
## 5774 444.7 50.7 31.0 31.4 0.0 2017-2018
## 5775 456.2 57.0 36.0 30.5 0.0 2017-2018
## 5776 447.3 49.3 30.0 31.7 0.0 2017-2018
## 5777 461.5 46.5 27.0 54.9 0.0 2017-2018
## 5778 460.7 46.5 26.0 33.1 0.0 2017-2018
## 5779 452.2 47.1 25.0 53.7 0.0 2017-2018
## 5780 451.2 45.7 27.0 53.8 0.0 2017-2018
## 5781 442.4 44.9 25.0 53.4 0.0 2017-2018
## 5782 455.9 50.2 32.0 31.5 0.0 2017-2018
## 5783 455.9 64.2 47.0 30.3 0.0 2017-2018
## 5784 460.9 49.2 29.0 34.4 0.0 2017-2018
## 5785 452.8 43.8 24.0 8.5 0.0 2017-2018
## 5786 458.7 50.6 33.0 56.0 0.0 2017-2018
## 5787 459.5 41.9 22.0 33.0 0.0 2017-2018
## 5788 458.7 47.5 27.0 56.7 0.0 2017-2018
## 5789 451.0 48.6 27.0 33.1 0.0 2017-2018
## 5790 451.1 51.3 31.0 56.2 0.0 2017-2018
## 5791 455.1 45.9 26.0 56.6 0.0 2017-2018
## 5792 456.0 63.8 46.0 53.9 0.0 2017-2018
## 5793 470.7 46.4 27.0 33.1 0.0 2017-2018
## 5794 462.1 48.3 29.0 31.5 0.0 2017-2018
## 5795 442.6 54.4 31.0 101.4 0.0 2017-2018
## 5796 465.1 51.4 32.0 31.6 0.0 2017-2018
## 5797 455.1 43.8 23.0 80.0 0.0 2017-2018
## 5798 444.8 47.9 29.0 79.9 0.0 2017-2018
## 5799 447.1 48.2 29.0 50.9 0.0 2017-2018
## 5800 460.7 73.3 55.0 30.8 0.0 2017-2018
## 5801 447.2 80.1 60.0 54.3 0.0 2017-2018
## 5802 478.5 84.6 66.0 8.2 0.0 2017-2018
## 5803 457.9 54.9 33.0 57.1 0.0 2017-2018
## 5804 477.7 47.2 30.0 8.7 0.0 2017-2018
## 5805 461.8 46.2 25.0 29.7 0.0 2017-2018
## 5806 460.9 52.2 31.0 31.7 0.0 2017-2018
## 5807 458.0 63.0 44.0 55.6 0.0 2017-2018
## 5808 471.3 53.3 33.0 32.8 0.0 2017-2018
## 5809 473.9 47.4 26.0 34.1 0.0 2017-2018
## 5810 458.8 46.3 27.0 32.2 0.0 2017-2018
## 5811 474.1 47.6 29.0 31.1 0.0 2017-2018
## 5812 462.2 47.4 29.0 31.6 0.0 2017-2018
## 5813 476.7 44.2 25.0 9.2 0.0 2017-2018
## 5814 451.2 51.0 29.0 54.8 0.0 2017-2018
## 5815 465.3 56.3 36.0 54.4 0.0 2017-2018
## 5816 469.1 47.3 27.0 60.1 0.0 2017-2018
## 5817 462.3 47.4 28.0 8.6 0.0 2017-2018
## 5818 478.6 44.5 23.0 8.6 0.0 2017-2018
## 5819 491.6 39.8 20.0 9.2 0.0 2017-2018
## 5820 452.4 68.3 48.0 107.3 0.0 2017-2018
## 5821 459.4 53.7 32.0 81.6 0.0 2017-2018
## 5822 474.3 44.6 24.0 35.1 0.0 2017-2018
## 5823 479.3 47.6 28.0 32.4 0.0 2017-2018
## 5824 467.0 55.3 35.0 57.9 0.0 2017-2018
## 5825 463.8 54.4 34.0 104.2 0.0 2017-2018
## 5826 492.8 53.3 30.0 33.3 0.0 2017-2018
## 5827 461.3 48.4 28.0 30.9 0.0 2017-2018
## 5828 467.8 55.9 34.0 56.2 0.0 2017-2018
## 5829 447.9 58.6 38.0 79.3 0.0 2017-2018
## 5830 465.2 58.5 38.0 55.4 0.0 2017-2018
## 5831 490.9 46.9 27.0 33.6 0.0 2017-2018
## 5832 464.6 50.2 31.0 57.8 0.0 2017-2018
## 5833 488.5 67.6 48.0 31.8 0.0 2017-2018
## 5834 472.0 60.0 38.0 85.5 0.0 2017-2018
## 5835 489.9 71.3 52.0 81.6 0.0 2017-2018
## 5836 476.7 55.9 36.0 83.4 0.0 2017-2018
## 5837 481.1 49.7 28.0 89.3 0.0 2017-2018
## 5838 465.1 56.3 33.0 106.6 0.0 2017-2018
## 5839 462.9 56.0 37.0 109.3 0.0 2017-2018
## 5840 487.1 46.6 26.0 32.8 0.0 2017-2018
## 5841 493.1 58.9 37.0 33.1 0.0 2017-2018
## 5842 482.3 60.0 37.0 33.8 0.0 2017-2018
## 5843 478.3 57.5 35.0 86.9 0.0 2017-2018
## 5844 481.0 52.0 29.0 64.0 0.0 2017-2018
## 5845 474.8 65.8 40.0 83.1 0.0 2017-2018
## 5846 540.4 53.6 29.0 63.3 0.0 2017-2018
## 5847 424.8 42.3 23.0 33.1 0.0 2017-2018
## 5848 428.4 48.4 28.0 30.1 0.0 2017-2018
## 5849 426.6 49.4 29.0 30.4 0.0 2017-2018
## 5850 433.3 47.9 31.0 30.6 0.0 2017-2018
## 5851 435.0 46.8 27.0 7.8 0.0 2017-2018
## 5852 424.4 41.2 21.0 32.6 0.0 2017-2018
## 5853 440.4 41.7 22.0 32.7 0.0 2017-2018
## 5854 430.3 45.9 29.0 49.6 0.0 2017-2018
## 5855 446.5 43.0 23.0 32.8 0.0 2017-2018
## 5856 439.9 45.3 26.0 29.8 0.0 2017-2018
## 5857 434.6 47.2 28.0 31.7 0.0 2017-2018
## 5858 447.4 51.5 31.0 31.7 0.0 2017-2018
## 5859 438.8 47.8 28.0 31.9 0.0 2017-2018
## 5860 446.2 44.8 24.0 9.2 0.0 2017-2018
## 5861 440.2 43.3 21.0 8.9 0.0 2017-2018
## 5862 442.0 48.3 27.0 30.0 0.0 2017-2018
## 5863 434.7 44.9 24.0 54.9 0.0 2017-2018
## 5864 439.7 45.8 25.0 31.7 0.0 2017-2018
## 5865 446.1 47.6 30.0 31.3 0.0 2017-2018
## 5866 439.3 43.0 23.0 31.2 0.0 2017-2018
## 5867 423.6 42.8 23.0 31.7 0.0 2017-2018
## 5868 434.3 45.2 26.0 31.4 0.0 2017-2018
## 5869 427.6 41.2 20.0 57.6 0.0 2017-2018
## 5870 450.9 49.7 30.0 33.5 0.0 2017-2018
## 5871 443.0 46.0 26.0 30.7 0.0 2017-2018
## 5872 444.4 48.3 28.0 33.9 0.0 2017-2018
## 5873 434.0 47.7 27.0 105.7 0.0 2017-2018
## 5874 438.7 47.9 26.0 84.6 0.0 2017-2018
## 5875 441.7 44.6 25.0 105.4 0.0 2017-2018
## 5876 461.3 47.9 28.0 60.4 0.0 2017-2018
## 5877 330.0 40.0 23.0 10.6 0.0 2017-2018
## 5878 331.4 40.8 22.0 10.9 0.0 2017-2018
## 5879 333.6 43.1 24.0 10.4 0.0 2017-2018
## 5880 335.6 43.6 28.0 8.3 0.0 2017-2018
## 5881 332.8 46.3 26.0 8.8 0.0 2017-2018
## 5882 342.7 40.4 23.0 31.3 0.0 2017-2018
## 5883 337.4 40.8 23.0 30.0 0.0 2017-2018
## 5884 338.3 47.3 27.0 28.8 0.0 2017-2018
## 5885 338.4 39.5 19.0 29.6 0.0 2017-2018
## 5886 332.8 39.3 20.0 7.8 0.0 2017-2018
## 5887 331.5 46.5 26.0 28.3 0.0 2017-2018
## 5888 337.6 43.4 24.0 51.1 0.0 2017-2018
## 5889 339.8 40.6 21.0 51.4 0.0 2017-2018
## 5890 342.4 49.4 30.0 9.3 0.0 2017-2018
## 5891 331.6 46.6 26.0 9.0 0.0 2017-2018
## 5892 332.0 47.1 29.0 28.6 0.0 2017-2018
## 5893 329.2 42.2 25.0 28.3 0.0 2017-2018
## 5894 326.9 42.0 24.0 27.9 0.0 2017-2018
## 5895 332.0 44.2 24.0 30.4 0.0 2017-2018
## 5896 333.5 43.4 24.0 28.5 0.0 2017-2018
## 5897 339.5 44.6 26.0 28.2 0.0 2017-2018
## 5898 328.8 45.9 26.0 29.7 0.0 2017-2018
## 5899 335.7 44.3 24.0 10.7 0.0 2017-2018
## 5900 330.7 45.6 28.0 29.2 0.0 2017-2018
## 5901 353.2 41.8 22.0 28.8 0.0 2017-2018
## 5902 336.6 46.0 27.0 29.9 0.0 2017-2018
## 5903 334.1 47.3 29.0 31.0 0.0 2017-2018
## 5904 341.1 49.6 32.0 28.4 0.0 2017-2018
## 5905 336.2 42.9 24.0 73.4 0.0 2017-2018
## 5906 340.7 49.0 31.0 9.1 0.0 2017-2018
## 5907 344.1 47.8 28.0 9.2 0.0 2017-2018
## 5908 338.1 40.9 22.0 54.6 0.0 2017-2018
## 5909 345.3 44.8 26.0 34.4 0.0 2017-2018
## 5910 338.2 48.0 28.0 8.5 0.0 2017-2018
## 5911 347.3 49.3 29.0 33.1 0.0 2017-2018
## 5912 332.4 45.7 28.0 7.9 0.0 2017-2018
## 5913 333.1 47.7 27.0 54.3 0.0 2017-2018
## 5914 341.6 41.9 21.0 31.1 0.0 2017-2018
## 5915 336.1 45.9 26.0 32.3 0.0 2017-2018
## 5916 336.3 45.9 25.0 32.1 0.0 2017-2018
## 5917 350.6 49.7 31.0 31.0 0.0 2017-2018
## 5918 343.6 47.0 29.0 32.4 0.0 2017-2018
## 5919 343.9 43.0 23.0 8.5 0.0 2017-2018
## 5920 356.2 37.8 17.0 8.7 0.0 2017-2018
## 5921 336.8 44.0 24.0 31.4 0.0 2017-2018
## 5922 342.8 44.5 23.0 29.2 0.0 2017-2018
## 5923 334.5 50.8 31.0 31.2 0.0 2017-2018
## 5924 348.9 45.7 24.0 30.2 0.0 2017-2018
## 5925 345.6 53.9 32.0 79.7 0.0 2017-2018
## 5926 337.1 48.5 26.0 82.2 0.0 2017-2018
## 5927 358.1 43.8 24.0 31.2 0.0 2017-2018
## 5928 358.4 45.8 25.0 58.4 0.0 2017-2018
## 5929 451.9 50.2 24.0 4.4 0.0 2017-2018
## 5930 460.8 50.4 23.0 4.4 0.0 2017-2018
## 5931 466.9 51.6 25.0 4.4 0.0 2017-2018
## 5932 466.3 54.7 31.0 25.5 0.0 2017-2018
## 5933 471.6 55.1 26.0 4.6 0.0 2017-2018
## 5934 474.0 53.3 26.0 4.4 0.0 2017-2018
## 5935 466.9 54.0 28.0 4.9 0.0 2017-2018
## 5936 468.3 51.1 24.0 4.2 0.0 2017-2018
## 5937 467.8 49.5 21.0 4.3 0.0 2017-2018
## 5938 473.6 50.4 25.0 4.4 0.0 2017-2018
## 5939 475.1 50.9 23.0 4.4 0.0 2017-2018
## 5940 476.3 50.0 23.0 27.9 0.0 2017-2018
## 5941 473.6 50.7 21.0 26.5 0.0 2017-2018
## 5942 478.6 51.2 24.0 25.1 0.0 2017-2018
## 5943 465.3 48.5 22.0 24.5 0.0 2017-2018
## 5944 477.7 50.7 22.0 28.6 0.0 2017-2018
## 5945 474.6 46.7 21.0 26.5 0.0 2017-2018
## 5946 465.2 58.3 30.0 26.9 0.0 2017-2018
## 5947 491.0 49.6 24.0 4.5 0.0 2017-2018
## 5948 480.9 53.3 27.0 27.6 0.0 2017-2018
## 5949 470.0 54.6 28.0 4.3 0.0 2017-2018
## 5950 470.7 54.5 24.0 4.8 0.0 2017-2018
## 5951 487.1 51.9 24.0 4.7 0.0 2017-2018
## 5952 472.4 57.4 31.0 24.8 0.0 2017-2018
## 5953 476.9 56.0 28.0 26.1 0.0 2017-2018
## 5954 478.7 59.6 32.0 4.1 0.0 2017-2018
## 5955 487.7 59.2 32.0 25.6 0.0 2017-2018
## 5956 485.0 50.3 23.0 27.4 0.0 2017-2018
## 5957 473.6 54.1 28.0 27.4 0.0 2017-2018
## 5958 495.6 54.6 28.0 4.8 0.0 2017-2018
## 5959 490.4 56.8 27.0 4.4 0.0 2017-2018
## 5960 479.0 55.6 26.0 51.3 0.0 2017-2018
## 5961 482.3 51.9 23.0 28.2 0.0 2017-2018
## 5962 478.4 51.1 22.0 26.8 0.0 2017-2018
## 5963 479.1 53.3 25.0 28.4 0.0 2017-2018
## 5964 485.3 51.3 25.0 4.4 0.0 2017-2018
## 5965 507.0 53.2 28.0 4.5 0.0 2017-2018
## 5966 474.2 54.3 26.0 53.2 0.0 2017-2018
## 5967 474.0 51.3 24.0 47.8 0.0 2017-2018
## 5968 496.7 48.4 21.0 28.4 0.0 2017-2018
## 5969 472.6 55.7 30.0 50.2 0.0 2017-2018
## 5970 484.7 62.8 33.0 28.1 0.0 2017-2018
## 5971 480.9 52.5 25.0 26.8 0.0 2017-2018
## 5972 476.4 60.4 31.0 71.1 0.0 2017-2018
## 5973 497.6 53.9 26.0 29.0 0.0 2017-2018
## 5974 474.1 65.8 37.0 48.4 0.0 2017-2018
## 5975 466.8 53.3 27.0 27.0 0.0 2017-2018
## 5976 494.9 55.3 27.0 29.2 0.0 2017-2018
## 5977 492.9 66.8 36.0 30.1 0.0 2017-2018
## 5978 486.0 54.7 28.0 50.4 0.0 2017-2018
## 5979 479.7 57.7 29.0 49.7 0.0 2017-2018
## 5980 491.6 56.3 30.0 27.1 0.0 2017-2018
## 5981 489.0 54.1 24.0 4.7 0.0 2017-2018
## 5982 504.1 64.8 36.0 4.8 0.0 2017-2018
## 5983 484.2 54.7 27.0 49.9 0.0 2017-2018
## 5984 501.5 59.8 31.0 28.0 0.0 2017-2018
## 5985 486.5 51.3 23.0 29.1 0.0 2017-2018
## 5986 489.2 54.7 27.0 27.4 0.0 2017-2018
## 5987 488.2 59.9 30.0 52.3 0.0 2017-2018
## 5988 489.4 54.4 26.0 28.6 0.0 2017-2018
## 5989 503.4 59.2 30.0 28.4 0.0 2017-2018
## 5990 485.8 55.0 23.0 52.7 0.0 2017-2018
## 5991 476.1 52.5 25.0 28.6 0.0 2017-2018
## 5992 500.3 54.3 24.0 4.7 0.0 2017-2018
## 5993 497.7 63.2 34.0 28.6 0.0 2017-2018
## 5994 479.9 52.8 20.0 52.9 0.0 2017-2018
## 5995 514.6 54.2 26.0 4.4 0.0 2017-2018
## 5996 495.4 54.3 26.0 4.4 0.0 2017-2018
## 5997 493.2 57.0 30.0 29.8 0.0 2017-2018
## 5998 505.3 57.5 29.0 27.9 0.0 2017-2018
## 5999 495.6 58.3 29.0 4.8 0.0 2017-2018
## 6000 480.6 54.7 26.0 27.5 0.0 2017-2018
## 6001 509.3 58.9 29.0 26.7 0.0 2017-2018
## 6002 492.7 57.4 28.0 49.3 0.0 2017-2018
## 6003 484.8 54.8 26.0 53.2 0.0 2017-2018
## 6004 487.7 55.9 26.0 51.1 0.0 2017-2018
## 6005 479.5 61.0 31.0 54.3 0.0 2017-2018
## 6006 494.4 62.6 35.0 30.4 0.0 2017-2018
## 6007 481.2 52.0 22.0 29.0 0.0 2017-2018
## 6008 454.7 54.1 28.0 92.8 0.0 2017-2018
## 6009 496.0 55.7 25.0 53.5 0.0 2017-2018
## 6010 491.5 55.8 27.0 4.9 0.0 2017-2018
## 6011 470.9 54.1 25.0 28.2 0.0 2017-2018
## 6012 495.3 59.2 30.0 29.4 0.0 2017-2018
## 6013 510.5 49.2 22.0 4.6 0.0 2017-2018
## 6014 496.8 59.5 28.0 78.4 0.0 2017-2018
## 6015 515.5 55.0 23.0 31.3 0.0 2017-2018
## 6016 500.7 62.2 33.0 4.7 0.0 2017-2018
## 6017 505.6 55.7 27.0 56.8 0.0 2017-2018
## 6018 507.0 54.8 26.0 30.5 0.0 2017-2018
## 6019 474.9 53.2 27.0 75.4 0.0 2017-2018
## 6020 496.9 52.7 26.0 96.8 0.0 2017-2018
## 6021 500.0 60.2 32.0 76.1 0.0 2017-2018
## 6022 480.7 65.4 31.0 51.9 0.0 2017-2018
## 6023 499.0 51.3 24.0 29.7 0.0 2017-2018
## 6024 517.9 55.1 28.0 29.6 0.0 2017-2018
## 6025 483.5 60.3 32.0 96.8 0.0 2017-2018
## 6026 495.7 52.0 23.0 81.7 0.0 2017-2018
## 6027 498.5 58.1 29.0 28.9 0.0 2017-2018
## 6028 503.2 60.3 32.0 79.5 0.0 2017-2018
## 6029 520.6 55.2 24.0 5.5 0.0 2017-2018
## 6030 511.3 60.8 30.0 57.3 0.0 2017-2018
## 6031 499.1 58.8 29.0 53.3 0.0 2017-2018
## 6032 519.7 53.6 25.0 5.6 0.0 2017-2018
## 6033 516.7 66.3 33.0 28.4 0.0 2017-2018
## 6034 492.7 60.1 32.0 51.7 0.0 2017-2018
## 6035 543.5 59.2 27.0 56.7 0.0 2017-2018
## 6036 516.3 69.0 39.0 83.0 0.0 2017-2018
## 6037 381.7 46.6 20.0 5.9 0.0 2017-2018
## 6038 392.2 54.9 27.0 5.7 0.0 2017-2018
## 6039 387.6 56.2 31.0 75.6 0.0 2017-2018
## 6040 378.5 52.8 26.0 5.1 0.0 2017-2018
## 6041 378.9 53.2 26.0 5.2 0.0 2017-2018
## 6042 389.7 61.1 35.0 5.6 0.0 2017-2018
## 6043 376.8 55.3 28.0 27.0 0.0 2017-2018
## 6044 377.2 51.6 24.0 30.4 0.0 2017-2018
## 6045 394.3 48.9 22.0 5.5 0.0 2017-2018
## 6046 384.2 53.4 24.0 28.0 0.0 2017-2018
## 6047 390.6 55.9 28.0 28.8 0.0 2017-2018
## 6048 377.5 54.0 26.0 52.8 0.0 2017-2018
## 6049 385.4 57.3 30.0 5.6 0.0 2017-2018
## 6050 390.2 55.2 28.0 27.3 0.0 2017-2018
## 6051 388.1 47.4 22.0 30.5 0.0 2017-2018
## 6052 394.6 51.7 24.0 5.0 0.0 2017-2018
## 6053 395.1 51.0 25.0 5.3 0.0 2017-2018
## 6054 388.0 49.5 23.0 29.3 0.0 2017-2018
## 6055 395.7 52.8 24.0 31.9 0.0 2017-2018
## 6056 396.2 57.1 31.0 31.5 0.0 2017-2018
## 6057 381.4 53.1 25.0 5.9 0.0 2017-2018
## 6058 388.8 48.9 22.0 29.7 0.0 2017-2018
## 6059 382.7 57.7 31.0 51.0 0.0 2017-2018
## 6060 384.9 54.7 29.0 5.6 0.0 2017-2018
## 6061 395.4 54.6 29.0 28.9 0.0 2017-2018
## 6062 381.7 51.8 26.0 28.9 0.0 2017-2018
## 6063 381.8 52.7 24.0 5.1 0.0 2017-2018
## 6064 391.3 49.7 22.0 6.3 0.0 2017-2018
## 6065 385.2 59.5 34.0 5.2 0.0 2017-2018
## 6066 384.5 52.0 26.0 76.2 0.0 2017-2018
## 6067 403.5 54.6 27.0 28.8 0.0 2017-2018
## 6068 410.2 47.8 19.0 6.9 0.0 2017-2018
## 6069 392.1 54.9 28.0 29.9 0.0 2017-2018
## 6070 390.4 54.9 25.0 5.2 0.0 2017-2018
## 6071 393.4 58.2 31.0 51.7 0.0 2017-2018
## 6072 392.7 59.9 30.0 5.6 0.0 2017-2018
## 6073 387.1 75.6 45.0 5.4 0.0 2017-2018
## 6074 397.6 59.9 30.0 31.9 0.0 2017-2018
## 6075 396.8 63.3 33.0 5.9 0.0 2017-2018
## 6076 392.9 61.6 31.0 30.9 0.0 2017-2018
## 6077 383.7 63.6 34.0 51.7 0.0 2017-2018
## 6078 385.8 58.2 28.0 54.2 0.0 2017-2018
## 6079 400.9 49.4 22.0 30.6 0.0 2017-2018
## 6080 385.0 58.0 32.0 81.1 0.0 2017-2018
## 6081 409.0 50.9 21.0 31.8 0.0 2017-2018
## 6082 405.6 46.3 20.0 5.3 0.0 2017-2018
## 6083 390.0 51.1 24.0 31.0 0.0 2017-2018
## 6084 388.9 54.8 26.0 55.3 0.0 2017-2018
## 6085 408.6 53.9 27.0 57.1 0.0 2017-2018
## 6086 400.9 58.9 30.0 29.7 0.0 2017-2018
## 6087 407.1 58.8 30.0 30.0 0.0 2017-2018
## 6088 406.7 63.8 37.0 54.0 0.0 2017-2018
## 6089 407.0 84.0 58.0 31.3 0.0 2017-2018
## 6090 403.7 56.3 28.0 56.6 0.0 2017-2018
## 6091 410.5 52.2 25.0 82.6 0.0 2017-2018
## 6092 414.3 57.1 26.0 32.7 0.0 2017-2018
## 6093 426.5 49.7 23.0 31.5 0.0 2017-2018
## 6094 454.6 44.8 27.4 6.3 0.0 2017-2018
## 6095 456.4 50.6 30.2 6.6 0.0 2017-2018
## 6096 452.4 48.2 27.3 7.2 0.0 2017-2018
## 6097 448.2 38.3 20.3 48.3 0.0 2017-2018
## 6098 457.1 48.7 31.7 27.6 0.0 2017-2018
## 6099 462.0 49.1 32.1 6.3 0.0 2017-2018
## 6100 463.8 44.3 24.0 28.8 0.0 2017-2018
## 6101 455.3 43.1 25.7 28.4 0.0 2017-2018
## 6102 462.5 51.1 31.3 26.3 0.0 2017-2018
## 6103 458.6 42.6 25.2 27.6 0.0 2017-2018
## 6104 458.3 51.2 30.0 28.2 0.0 2017-2018
## 6105 467.8 42.2 24.1 6.9 0.0 2017-2018
## 6106 468.4 49.0 28.7 7.1 0.0 2017-2018
## 6107 469.7 40.2 18.8 6.8 0.0 2017-2018
## 6108 466.1 41.3 23.7 30.5 0.0 2017-2018
## 6109 459.7 48.2 26.1 29.8 0.0 2017-2018
## 6110 459.9 44.5 24.7 29.3 0.0 2017-2018
## 6111 463.9 48.4 28.0 7.4 0.0 2017-2018
## 6112 457.9 47.1 26.3 52.5 0.0 2017-2018
## 6113 461.4 45.1 25.5 30.3 0.0 2017-2018
## 6114 465.8 48.3 26.4 27.9 0.0 2017-2018
## 6115 471.9 47.1 25.2 7.4 0.0 2017-2018
## 6116 450.1 44.8 26.8 52.5 0.0 2017-2018
## 6117 469.9 47.8 26.1 7.0 0.0 2017-2018
## 6118 464.4 47.7 27.0 28.1 0.0 2017-2018
## 6119 467.9 43.0 22.3 7.0 0.0 2017-2018
## 6120 478.5 51.9 31.7 7.3 0.0 2017-2018
## 6121 446.2 41.0 21.5 50.2 0.0 2017-2018
## 6122 474.9 46.6 28.7 30.0 0.0 2017-2018
## 6123 473.8 51.5 34.4 29.2 0.0 2017-2018
## 6124 472.0 47.8 25.7 7.5 0.0 2017-2018
## 6125 479.5 51.2 27.5 6.9 0.0 2017-2018
## 6126 467.9 44.6 25.9 28.9 0.0 2017-2018
## 6127 481.2 47.4 27.0 7.1 0.0 2017-2018
## 6128 458.2 44.8 25.1 51.9 0.0 2017-2018
## 6129 474.1 46.5 26.6 50.6 0.0 2017-2018
## 6130 483.7 46.0 25.9 7.2 0.0 2017-2018
## 6131 469.5 47.2 27.7 51.1 0.0 2017-2018
## 6132 482.4 55.7 34.1 29.1 0.0 2017-2018
## 6133 486.3 42.9 24.0 30.8 0.0 2017-2018
## 6134 462.9 41.7 21.3 31.0 0.0 2017-2018
## 6135 473.6 50.2 29.1 30.4 0.0 2017-2018
## 6136 475.0 64.3 42.5 7.7 0.0 2017-2018
## 6137 465.0 48.6 25.5 53.8 0.0 2017-2018
## 6138 474.4 48.3 26.6 29.3 0.0 2017-2018
## 6139 465.1 46.8 25.5 54.9 0.0 2017-2018
## 6140 465.3 48.5 27.7 29.6 0.0 2017-2018
## 6141 478.3 51.5 29.7 7.8 0.0 2017-2018
## 6142 475.0 44.3 26.6 28.0 0.0 2017-2018
## 6143 475.8 50.0 28.0 31.4 0.0 2017-2018
## 6144 482.4 54.1 31.6 32.4 0.0 2017-2018
## 6145 492.2 48.0 28.4 31.3 0.0 2017-2018
## 6146 480.3 44.5 23.9 6.8 0.0 2017-2018
## 6147 457.5 49.4 27.9 29.8 0.0 2017-2018
## 6148 490.6 49.4 30.3 7.5 0.0 2017-2018
## 6149 476.9 48.6 26.2 30.5 0.0 2017-2018
## 6150 465.0 49.8 27.5 52.7 0.0 2017-2018
## 6151 486.5 53.4 30.9 32.8 0.0 2017-2018
## 6152 487.4 48.8 29.2 6.9 0.0 2017-2018
## 6153 480.2 49.5 29.6 31.0 0.0 2017-2018
## 6154 453.3 47.4 22.2 76.2 0.0 2017-2018
## 6155 476.5 45.3 26.2 53.1 0.0 2017-2018
## 6156 477.7 54.6 31.6 53.2 0.0 2017-2018
## 6157 475.7 47.8 25.0 55.4 0.0 2017-2018
## 6158 485.5 45.9 24.3 7.6 0.0 2017-2018
## 6159 487.4 51.9 30.8 7.8 0.0 2017-2018
## 6160 474.4 48.6 26.7 53.9 0.0 2017-2018
## 6161 479.8 52.8 32.3 29.5 0.0 2017-2018
## 6162 463.2 51.3 30.7 27.7 0.0 2017-2018
## 6163 487.6 49.8 27.6 53.5 0.0 2017-2018
## 6164 485.1 50.3 29.0 31.7 0.0 2017-2018
## 6165 494.6 47.0 25.2 33.7 0.0 2017-2018
## 6166 476.2 50.8 31.0 52.3 0.0 2017-2018
## 6167 476.2 55.4 35.5 49.5 0.0 2017-2018
## 6168 478.9 53.1 30.9 86.5 0.0 2017-2018
## 6169 473.4 54.4 34.2 77.7 0.0 2017-2018
## 6170 483.7 54.7 32.6 51.6 0.0 2017-2018
## 6171 493.5 49.9 29.5 33.0 0.0 2017-2018
## 6172 496.0 47.8 27.4 32.9 0.0 2017-2018
## 6173 482.0 47.6 25.8 54.3 0.0 2017-2018
## 6174 489.4 47.7 24.7 30.7 0.0 2017-2018
## 6175 491.5 57.0 32.0 30.9 0.0 2017-2018
## 6176 487.3 54.6 30.3 31.0 0.0 2017-2018
## 6177 498.3 51.4 30.4 32.7 0.0 2017-2018
## 6178 496.4 46.7 27.6 29.2 0.0 2017-2018
## 6179 495.6 48.2 26.1 54.3 0.0 2017-2018
## 6180 473.5 46.6 23.4 86.7 0.0 2017-2018
## 6181 477.3 57.4 39.8 98.6 0.0 2017-2018
## 6182 476.4 49.2 28.5 30.7 0.0 2017-2018
## 6183 507.2 49.3 29.6 7.4 0.0 2017-2018
## 6184 502.7 44.3 23.8 7.2 0.0 2017-2018
## 6185 484.6 51.8 30.5 83.1 0.0 2017-2018
## 6186 467.2 63.7 42.0 109.3 0.0 2017-2018
## 6187 499.4 48.9 26.9 55.1 0.0 2017-2018
## 6188 528.0 50.9 28.3 8.8 0.0 2017-2018
## 6189 511.5 52.0 31.4 80.2 0.0 2017-2018
## 6190 517.4 55.0 34.1 82.7 0.0 2017-2018
## 6191 552.3 50.7 29.7 7.8 0.0 2017-2018
## 6192 504.2 56.0 31.6 82.2 0.0 2017-2018
## 6193 531.6 54.3 30.4 34.9 0.0 2017-2018
## 6194 420.8 41.1 22.8 30.4 0.0 2017-2018
## 6195 417.0 42.5 23.6 8.6 0.0 2017-2018
## 6196 422.0 44.1 24.2 7.7 0.0 2017-2018
## 6197 421.3 48.6 30.0 30.4 0.0 2017-2018
## 6198 427.6 45.3 33.1 7.3 0.0 2017-2018
## 6199 423.5 49.0 29.1 51.5 0.0 2017-2018
## 6200 420.9 43.5 24.5 6.5 0.0 2017-2018
## 6201 421.7 53.2 32.8 6.8 0.0 2017-2018
## 6202 434.1 43.9 22.2 8.2 0.0 2017-2018
## 6203 423.0 45.4 23.7 8.1 0.0 2017-2018
## 6204 433.8 40.6 20.2 31.8 0.0 2017-2018
## 6205 434.2 46.6 23.9 28.1 0.0 2017-2018
## 6206 423.4 44.4 26.0 6.7 0.0 2017-2018
## 6207 431.6 47.1 25.2 29.1 0.0 2017-2018
## 6208 436.7 48.3 29.0 7.2 0.0 2017-2018
## 6209 424.4 50.7 32.7 28.9 0.0 2017-2018
## 6210 440.8 48.1 26.2 8.1 0.0 2017-2018
## 6211 422.8 47.9 29.2 29.3 0.0 2017-2018
## 6212 422.1 46.0 39.0 52.0 0.0 2017-2018
## 6213 434.4 46.6 27.7 29.5 0.0 2017-2018
## 6214 446.1 39.2 19.6 6.6 0.0 2017-2018
## 6215 437.5 45.2 25.0 55.0 0.0 2017-2018
## 6216 442.9 45.9 24.3 33.7 0.0 2017-2018
## 6217 452.6 42.5 22.3 7.8 0.0 2017-2018
## 6218 461.1 41.4 19.7 30.9 0.0 2017-2018
## 6219 449.5 44.8 24.3 7.5 0.0 2017-2018
## 6220 459.3 46.4 27.3 31.4 0.0 2017-2018
## 6221 453.6 40.7 22.8 56.6 0.0 2017-2018
## 6222 427.5 52.5 33.9 96.8 0.0 2017-2018
## 6223 461.2 42.2 22.1 31.6 0.0 2017-2018
## 6224 468.1 45.1 25.0 4.0 0.0 2017-2018
## 6225 468.1 49.5 28.0 4.2 0.0 2017-2018
## 6226 458.1 47.6 23.0 4.3 0.0 2017-2018
## 6227 470.2 48.0 26.0 4.0 0.0 2017-2018
## 6228 464.0 53.3 31.0 27.0 0.0 2017-2018
## 6229 472.1 44.8 25.0 3.7 0.0 2017-2018
## 6230 483.3 47.9 25.0 4.1 0.0 2017-2018
## 6231 474.4 56.6 35.0 4.1 0.0 2017-2018
## 6232 476.3 51.5 31.0 27.7 0.0 2017-2018
## 6233 479.4 44.0 22.0 4.2 0.0 2017-2018
## 6234 480.5 44.5 23.0 4.0 0.0 2017-2018
## 6235 478.1 44.3 24.0 27.5 0.0 2017-2018
## 6236 487.1 48.7 26.0 4.0 0.0 2017-2018
## 6237 483.0 41.2 19.0 28.2 0.0 2017-2018
## 6238 483.3 42.2 20.0 4.1 0.0 2017-2018
## 6239 471.7 49.0 25.0 28.8 0.0 2017-2018
## 6240 471.9 51.6 30.0 52.1 0.0 2017-2018
## 6241 471.2 43.8 21.0 28.2 0.0 2017-2018
## 6242 489.9 44.9 22.0 5.0 0.0 2017-2018
## 6243 474.7 54.4 34.0 50.2 0.0 2017-2018
## 6244 491.3 47.0 25.0 4.2 0.0 2017-2018
## 6245 483.6 47.9 28.0 50.0 0.0 2017-2018
## 6246 472.3 47.6 26.0 52.5 0.0 2017-2018
## 6247 483.6 47.5 23.0 28.8 0.0 2017-2018
## 6248 486.9 56.6 32.0 28.9 0.0 2017-2018
## 6249 490.6 45.6 23.0 28.9 0.0 2017-2018
## location race_type ID
## 1 Anterselva Sprint 2
## 2 Anterselva Sprint 2
## 3 Anterselva Sprint 2
## 4 Anterselva Sprint 2
## 5 Anterselva Sprint 2
## 6 Anterselva Sprint 2
## 7 Anterselva Sprint 2
## 8 Anterselva Sprint 2
## 9 Anterselva Sprint 2
## 10 Anterselva Sprint 2
## 11 Anterselva Sprint 2
## 12 Anterselva Sprint 2
## 13 Anterselva Sprint 2
## 14 Anterselva Sprint 2
## 15 Anterselva Sprint 2
## 16 Anterselva Sprint 2
## 17 Anterselva Sprint 2
## 18 Anterselva Sprint 2
## 19 Anterselva Sprint 2
## 20 Anterselva Sprint 2
## 21 Anterselva Sprint 2
## 22 Anterselva Sprint 2
## 23 Anterselva Sprint 2
## 24 Anterselva Sprint 2
## 25 Anterselva Sprint 2
## 26 Anterselva Sprint 2
## 27 Anterselva Sprint 2
## 28 Anterselva Sprint 2
## 29 Anterselva Sprint 2
## 30 Anterselva Sprint 2
## 31 Anterselva Sprint 2
## 32 Anterselva Sprint 2
## 33 Anterselva Sprint 2
## 34 Anterselva Sprint 2
## 35 Anterselva Sprint 2
## 36 Anterselva Sprint 2
## 37 Anterselva Sprint 2
## 38 Anterselva Sprint 2
## 39 Anterselva Sprint 2
## 40 Anterselva Sprint 2
## 41 Anterselva Sprint 2
## 42 Anterselva Sprint 2
## 43 Anterselva Sprint 2
## 44 Anterselva Sprint 2
## 45 Anterselva Sprint 2
## 46 Anterselva Sprint 2
## 47 Anterselva Sprint 2
## 48 Anterselva Sprint 2
## 49 Anterselva Sprint 2
## 50 Anterselva Sprint 2
## 51 Anterselva Sprint 2
## 52 Anterselva Sprint 2
## 53 Anterselva Sprint 2
## 54 Anterselva Sprint 2
## 55 Anterselva Sprint 2
## 56 Anterselva Sprint 2
## 57 Anterselva Sprint 2
## 58 Anterselva Sprint 2
## 59 Anterselva Sprint 2
## 60 Anterselva Sprint 2
## 61 Anterselva Sprint 2
## 62 Anterselva Sprint 2
## 63 Anterselva Sprint 2
## 64 Anterselva Sprint 2
## 65 Anterselva Sprint 2
## 66 Anterselva Sprint 2
## 67 Anterselva Sprint 2
## 68 Anterselva Sprint 2
## 69 Anterselva Sprint 2
## 70 Anterselva Sprint 2
## 71 Anterselva Sprint 2
## 72 Anterselva Sprint 2
## 73 Anterselva Sprint 2
## 74 Anterselva Sprint 2
## 75 Anterselva Sprint 2
## 76 Anterselva Sprint 2
## 77 Anterselva Sprint 2
## 78 Anterselva Sprint 2
## 79 Anterselva Sprint 2
## 80 Anterselva Sprint 2
## 81 Anterselva Sprint 2
## 82 Anterselva Sprint 2
## 83 Anterselva Sprint 2
## 84 Anterselva Sprint 2
## 85 Anterselva Sprint 2
## 86 Anterselva Sprint 2
## 87 Anterselva Sprint 2
## 88 Anterselva Sprint 2
## 89 Anterselva Sprint 2
## 90 Anterselva Sprint 2
## 91 Anterselva Sprint 2
## 92 Anterselva Sprint 2
## 93 Anterselva Sprint 2
## 94 Anterselva Sprint 2
## 95 Anterselva Sprint 2
## 96 Anterselva Sprint 2
## 97 Anterselva Sprint 2
## 98 Anterselva Sprint 2
## 99 Anterselva Sprint 2
## 100 Anterselva Sprint 2
## 101 Anterselva Sprint 2
## 102 Anterselva Pursuit 1
## 103 Anterselva Pursuit 1
## 104 Anterselva Pursuit 1
## 105 Anterselva Pursuit 1
## 106 Anterselva Pursuit 1
## 107 Anterselva Pursuit 1
## 108 Anterselva Pursuit 1
## 109 Anterselva Pursuit 1
## 110 Anterselva Pursuit 1
## 111 Anterselva Pursuit 1
## 112 Anterselva Pursuit 1
## 113 Anterselva Pursuit 1
## 114 Anterselva Pursuit 1
## 115 Anterselva Pursuit 1
## 116 Anterselva Pursuit 1
## 117 Anterselva Pursuit 1
## 118 Anterselva Pursuit 1
## 119 Anterselva Pursuit 1
## 120 Anterselva Pursuit 1
## 121 Anterselva Pursuit 1
## 122 Anterselva Pursuit 1
## 123 Anterselva Pursuit 1
## 124 Anterselva Pursuit 1
## 125 Anterselva Pursuit 1
## 126 Anterselva Pursuit 1
## 127 Anterselva Pursuit 1
## 128 Anterselva Pursuit 1
## 129 Anterselva Pursuit 1
## 130 Anterselva Pursuit 1
## 131 Anterselva Pursuit 1
## 132 Anterselva Pursuit 1
## 133 Anterselva Pursuit 1
## 134 Anterselva Pursuit 1
## 135 Anterselva Pursuit 1
## 136 Anterselva Pursuit 1
## 137 Anterselva Pursuit 1
## 138 Anterselva Pursuit 1
## 139 Anterselva Pursuit 1
## 140 Anterselva Pursuit 1
## 141 Anterselva Pursuit 1
## 142 Anterselva Pursuit 1
## 143 Anterselva Pursuit 1
## 144 Anterselva Pursuit 1
## 145 Anterselva Pursuit 1
## 146 Anterselva Pursuit 1
## 147 Anterselva Pursuit 1
## 148 Anterselva Pursuit 1
## 149 Anterselva Pursuit 1
## 150 Anterselva Pursuit 1
## 151 Anterselva Pursuit 1
## 152 Anterselva Pursuit 1
## 153 Anterselva Pursuit 1
## 154 Anterselva Pursuit 1
## 155 Hochfilzen Sprint 4
## 156 Hochfilzen Sprint 4
## 157 Hochfilzen Sprint 4
## 158 Hochfilzen Sprint 4
## 159 Hochfilzen Sprint 4
## 160 Hochfilzen Sprint 4
## 161 Hochfilzen Sprint 4
## 162 Hochfilzen Sprint 4
## 163 Hochfilzen Sprint 4
## 164 Hochfilzen Sprint 4
## 165 Hochfilzen Sprint 4
## 166 Hochfilzen Sprint 4
## 167 Hochfilzen Sprint 4
## 168 Hochfilzen Sprint 4
## 169 Hochfilzen Sprint 4
## 170 Hochfilzen Sprint 4
## 171 Hochfilzen Sprint 4
## 172 Hochfilzen Sprint 4
## 173 Hochfilzen Sprint 4
## 174 Hochfilzen Sprint 4
## 175 Hochfilzen Sprint 4
## 176 Hochfilzen Sprint 4
## 177 Hochfilzen Sprint 4
## 178 Hochfilzen Sprint 4
## 179 Hochfilzen Sprint 4
## 180 Hochfilzen Sprint 4
## 181 Hochfilzen Sprint 4
## 182 Hochfilzen Sprint 4
## 183 Hochfilzen Sprint 4
## 184 Hochfilzen Sprint 4
## 185 Hochfilzen Sprint 4
## 186 Hochfilzen Sprint 4
## 187 Hochfilzen Sprint 4
## 188 Hochfilzen Sprint 4
## 189 Hochfilzen Sprint 4
## 190 Hochfilzen Sprint 4
## 191 Hochfilzen Sprint 4
## 192 Hochfilzen Sprint 4
## 193 Hochfilzen Sprint 4
## 194 Hochfilzen Sprint 4
## 195 Hochfilzen Sprint 4
## 196 Hochfilzen Sprint 4
## 197 Hochfilzen Sprint 4
## 198 Hochfilzen Sprint 4
## 199 Hochfilzen Sprint 4
## 200 Hochfilzen Sprint 4
## 201 Hochfilzen Sprint 4
## 202 Hochfilzen Sprint 4
## 203 Hochfilzen Sprint 4
## 204 Hochfilzen Sprint 4
## 205 Hochfilzen Sprint 4
## 206 Hochfilzen Sprint 4
## 207 Hochfilzen Sprint 4
## 208 Hochfilzen Sprint 4
## 209 Hochfilzen Sprint 4
## 210 Hochfilzen Sprint 4
## 211 Hochfilzen Sprint 4
## 212 Hochfilzen Sprint 4
## 213 Hochfilzen Sprint 4
## 214 Hochfilzen Sprint 4
## 215 Hochfilzen Sprint 4
## 216 Hochfilzen Sprint 4
## 217 Hochfilzen Sprint 4
## 218 Hochfilzen Sprint 4
## 219 Hochfilzen Sprint 4
## 220 Hochfilzen Sprint 4
## 221 Hochfilzen Sprint 4
## 222 Hochfilzen Sprint 4
## 223 Hochfilzen Sprint 4
## 224 Hochfilzen Sprint 4
## 225 Hochfilzen Sprint 4
## 226 Hochfilzen Sprint 4
## 227 Hochfilzen Sprint 4
## 228 Hochfilzen Sprint 4
## 229 Hochfilzen Sprint 4
## 230 Hochfilzen Sprint 4
## 231 Hochfilzen Sprint 4
## 232 Hochfilzen Sprint 4
## 233 Hochfilzen Sprint 4
## 234 Hochfilzen Sprint 4
## 235 Hochfilzen Sprint 4
## 236 Hochfilzen Sprint 4
## 237 Hochfilzen Sprint 4
## 238 Hochfilzen Sprint 4
## 239 Hochfilzen Sprint 4
## 240 Hochfilzen Sprint 4
## 241 Hochfilzen Sprint 4
## 242 Hochfilzen Sprint 4
## 243 Hochfilzen Sprint 4
## 244 Hochfilzen Sprint 4
## 245 Hochfilzen Sprint 4
## 246 Hochfilzen Sprint 4
## 247 Hochfilzen Sprint 4
## 248 Hochfilzen Sprint 4
## 249 Hochfilzen Sprint 4
## 250 Hochfilzen Sprint 4
## 251 Hochfilzen Sprint 4
## 252 Hochfilzen Sprint 4
## 253 Hochfilzen Sprint 4
## 254 Hochfilzen Sprint 4
## 255 Hochfilzen Sprint 4
## 256 Hochfilzen Sprint 4
## 257 Hochfilzen Sprint 4
## 258 Hochfilzen Sprint 4
## 259 Hochfilzen Pursuit 3
## 260 Hochfilzen Pursuit 3
## 261 Hochfilzen Pursuit 3
## 262 Hochfilzen Pursuit 3
## 263 Hochfilzen Pursuit 3
## 264 Hochfilzen Pursuit 3
## 265 Hochfilzen Pursuit 3
## 266 Hochfilzen Pursuit 3
## 267 Hochfilzen Pursuit 3
## 268 Hochfilzen Pursuit 3
## 269 Hochfilzen Pursuit 3
## 270 Hochfilzen Pursuit 3
## 271 Hochfilzen Pursuit 3
## 272 Hochfilzen Pursuit 3
## 273 Hochfilzen Pursuit 3
## 274 Hochfilzen Pursuit 3
## 275 Hochfilzen Pursuit 3
## 276 Hochfilzen Pursuit 3
## 277 Hochfilzen Pursuit 3
## 278 Hochfilzen Pursuit 3
## 279 Hochfilzen Pursuit 3
## 280 Hochfilzen Pursuit 3
## 281 Hochfilzen Pursuit 3
## 282 Hochfilzen Pursuit 3
## 283 Hochfilzen Pursuit 3
## 284 Hochfilzen Pursuit 3
## 285 Hochfilzen Pursuit 3
## 286 Hochfilzen Pursuit 3
## 287 Hochfilzen Pursuit 3
## 288 Hochfilzen Pursuit 3
## 289 Hochfilzen Pursuit 3
## 290 Hochfilzen Pursuit 3
## 291 Hochfilzen Pursuit 3
## 292 Hochfilzen Pursuit 3
## 293 Hochfilzen Pursuit 3
## 294 Hochfilzen Pursuit 3
## 295 Hochfilzen Pursuit 3
## 296 Hochfilzen Pursuit 3
## 297 Hochfilzen Pursuit 3
## 298 Hochfilzen Pursuit 3
## 299 Hochfilzen Pursuit 3
## 300 Hochfilzen Pursuit 3
## 301 Hochfilzen Pursuit 3
## 302 Hochfilzen Pursuit 3
## 303 Hochfilzen Pursuit 3
## 304 Hochfilzen Pursuit 3
## 305 Hochfilzen Pursuit 3
## 306 Hochfilzen Pursuit 3
## 307 Hochfilzen Pursuit 3
## 308 Hochfilzen Pursuit 3
## 309 Hochfilzen Pursuit 3
## 310 Hochfilzen Pursuit 3
## 311 Hochfilzen Pursuit 3
## 312 Hochfilzen Pursuit 3
## 313 Hochfilzen Pursuit 3
## 314 Hochfilzen Pursuit 3
## 315 Khanty-Mansiysk Sprint 7
## 316 Khanty-Mansiysk Sprint 7
## 317 Khanty-Mansiysk Sprint 7
## 318 Khanty-Mansiysk Sprint 7
## 319 Khanty-Mansiysk Sprint 7
## 320 Khanty-Mansiysk Sprint 7
## 321 Khanty-Mansiysk Sprint 7
## 322 Khanty-Mansiysk Sprint 7
## 323 Khanty-Mansiysk Sprint 7
## 324 Khanty-Mansiysk Sprint 7
## 325 Khanty-Mansiysk Sprint 7
## 326 Khanty-Mansiysk Sprint 7
## 327 Khanty-Mansiysk Sprint 7
## 328 Khanty-Mansiysk Sprint 7
## 329 Khanty-Mansiysk Sprint 7
## 330 Khanty-Mansiysk Sprint 7
## 331 Khanty-Mansiysk Sprint 7
## 332 Khanty-Mansiysk Sprint 7
## 333 Khanty-Mansiysk Sprint 7
## 334 Khanty-Mansiysk Sprint 7
## 335 Khanty-Mansiysk Sprint 7
## 336 Khanty-Mansiysk Sprint 7
## 337 Khanty-Mansiysk Sprint 7
## 338 Khanty-Mansiysk Sprint 7
## 339 Khanty-Mansiysk Sprint 7
## 340 Khanty-Mansiysk Sprint 7
## 341 Khanty-Mansiysk Sprint 7
## 342 Khanty-Mansiysk Sprint 7
## 343 Khanty-Mansiysk Sprint 7
## 344 Khanty-Mansiysk Sprint 7
## 345 Khanty-Mansiysk Sprint 7
## 346 Khanty-Mansiysk Sprint 7
## 347 Khanty-Mansiysk Sprint 7
## 348 Khanty-Mansiysk Sprint 7
## 349 Khanty-Mansiysk Sprint 7
## 350 Khanty-Mansiysk Sprint 7
## 351 Khanty-Mansiysk Sprint 7
## 352 Khanty-Mansiysk Sprint 7
## 353 Khanty-Mansiysk Sprint 7
## 354 Khanty-Mansiysk Sprint 7
## 355 Khanty-Mansiysk Sprint 7
## 356 Khanty-Mansiysk Sprint 7
## 357 Khanty-Mansiysk Sprint 7
## 358 Khanty-Mansiysk Sprint 7
## 359 Khanty-Mansiysk Sprint 7
## 360 Khanty-Mansiysk Sprint 7
## 361 Khanty-Mansiysk Sprint 7
## 362 Khanty-Mansiysk Sprint 7
## 363 Khanty-Mansiysk Sprint 7
## 364 Khanty-Mansiysk Sprint 7
## 365 Khanty-Mansiysk Sprint 7
## 366 Khanty-Mansiysk Sprint 7
## 367 Khanty-Mansiysk Sprint 7
## 368 Khanty-Mansiysk Sprint 7
## 369 Khanty-Mansiysk Sprint 7
## 370 Khanty-Mansiysk Sprint 7
## 371 Khanty-Mansiysk Sprint 7
## 372 Khanty-Mansiysk Sprint 7
## 373 Khanty-Mansiysk Sprint 7
## 374 Khanty-Mansiysk Sprint 7
## 375 Khanty-Mansiysk Sprint 7
## 376 Khanty-Mansiysk Sprint 7
## 377 Khanty-Mansiysk Sprint 7
## 378 Khanty-Mansiysk Sprint 7
## 379 Khanty-Mansiysk Sprint 7
## 380 Khanty-Mansiysk Sprint 7
## 381 Khanty-Mansiysk Sprint 7
## 382 Khanty-Mansiysk Sprint 7
## 383 Khanty-Mansiysk Sprint 7
## 384 Khanty-Mansiysk Sprint 7
## 385 Khanty-Mansiysk Sprint 7
## 386 Khanty-Mansiysk Sprint 7
## 387 Khanty-Mansiysk Sprint 7
## 388 Khanty-Mansiysk Sprint 7
## 389 Khanty-Mansiysk Sprint 7
## 390 Khanty-Mansiysk Sprint 7
## 391 Khanty-Mansiysk Sprint 7
## 392 Khanty-Mansiysk Sprint 7
## 393 Khanty-Mansiysk Sprint 7
## 394 Khanty-Mansiysk Sprint 7
## 395 Khanty-Mansiysk Sprint 7
## 396 Khanty-Mansiysk Sprint 7
## 397 Khanty-Mansiysk Sprint 7
## 398 Khanty-Mansiysk Sprint 7
## 399 Khanty-Mansiysk Sprint 7
## 400 Khanty-Mansiysk Sprint 7
## 401 Khanty-Mansiysk Sprint 7
## 402 Khanty-Mansiysk Sprint 7
## 403 Khanty-Mansiysk Mass start 5
## 404 Khanty-Mansiysk Mass start 5
## 405 Khanty-Mansiysk Mass start 5
## 406 Khanty-Mansiysk Mass start 5
## 407 Khanty-Mansiysk Mass start 5
## 408 Khanty-Mansiysk Mass start 5
## 409 Khanty-Mansiysk Mass start 5
## 410 Khanty-Mansiysk Mass start 5
## 411 Khanty-Mansiysk Mass start 5
## 412 Khanty-Mansiysk Mass start 5
## 413 Khanty-Mansiysk Mass start 5
## 414 Khanty-Mansiysk Mass start 5
## 415 Khanty-Mansiysk Mass start 5
## 416 Khanty-Mansiysk Mass start 5
## 417 Khanty-Mansiysk Mass start 5
## 418 Khanty-Mansiysk Mass start 5
## 419 Khanty-Mansiysk Mass start 5
## 420 Khanty-Mansiysk Mass start 5
## 421 Khanty-Mansiysk Mass start 5
## 422 Khanty-Mansiysk Mass start 5
## 423 Khanty-Mansiysk Mass start 5
## 424 Khanty-Mansiysk Mass start 5
## 425 Khanty-Mansiysk Mass start 5
## 426 Khanty-Mansiysk Mass start 5
## 427 Khanty-Mansiysk Mass start 5
## 428 Khanty-Mansiysk Mass start 5
## 429 Khanty-Mansiysk Mass start 5
## 430 Khanty-Mansiysk Mass start 5
## 431 Khanty-Mansiysk Mass start 5
## 432 Khanty-Mansiysk Mass start 5
## 433 Khanty-Mansiysk Pursuit 6
## 434 Khanty-Mansiysk Pursuit 6
## 435 Khanty-Mansiysk Pursuit 6
## 436 Khanty-Mansiysk Pursuit 6
## 437 Khanty-Mansiysk Pursuit 6
## 438 Khanty-Mansiysk Pursuit 6
## 439 Khanty-Mansiysk Pursuit 6
## 440 Khanty-Mansiysk Pursuit 6
## 441 Khanty-Mansiysk Pursuit 6
## 442 Khanty-Mansiysk Pursuit 6
## 443 Khanty-Mansiysk Pursuit 6
## 444 Khanty-Mansiysk Pursuit 6
## 445 Khanty-Mansiysk Pursuit 6
## 446 Khanty-Mansiysk Pursuit 6
## 447 Khanty-Mansiysk Pursuit 6
## 448 Khanty-Mansiysk Pursuit 6
## 449 Khanty-Mansiysk Pursuit 6
## 450 Khanty-Mansiysk Pursuit 6
## 451 Khanty-Mansiysk Pursuit 6
## 452 Khanty-Mansiysk Pursuit 6
## 453 Khanty-Mansiysk Pursuit 6
## 454 Khanty-Mansiysk Pursuit 6
## 455 Khanty-Mansiysk Pursuit 6
## 456 Khanty-Mansiysk Pursuit 6
## 457 Khanty-Mansiysk Pursuit 6
## 458 Khanty-Mansiysk Pursuit 6
## 459 Khanty-Mansiysk Pursuit 6
## 460 Khanty-Mansiysk Pursuit 6
## 461 Khanty-Mansiysk Pursuit 6
## 462 Khanty-Mansiysk Pursuit 6
## 463 Khanty-Mansiysk Pursuit 6
## 464 Khanty-Mansiysk Pursuit 6
## 465 Khanty-Mansiysk Pursuit 6
## 466 Khanty-Mansiysk Pursuit 6
## 467 Khanty-Mansiysk Pursuit 6
## 468 Khanty-Mansiysk Pursuit 6
## 469 Khanty-Mansiysk Pursuit 6
## 470 Khanty-Mansiysk Pursuit 6
## 471 Khanty-Mansiysk Pursuit 6
## 472 Khanty-Mansiysk Pursuit 6
## 473 Khanty-Mansiysk Pursuit 6
## 474 Khanty-Mansiysk Pursuit 6
## 475 Khanty-Mansiysk Pursuit 6
## 476 Khanty-Mansiysk Pursuit 6
## 477 Khanty-Mansiysk Pursuit 6
## 478 Khanty-Mansiysk Pursuit 6
## 479 Khanty-Mansiysk Pursuit 6
## 480 Khanty-Mansiysk Pursuit 6
## 481 Khanty-Mansiysk Pursuit 6
## 482 Khanty-Mansiysk Pursuit 6
## 483 Khanty-Mansiysk Pursuit 6
## 484 Khanty-Mansiysk Pursuit 6
## 485 Khanty-Mansiysk Pursuit 6
## 486 Khanty-Mansiysk Pursuit 6
## 487 Khanty-Mansiysk Pursuit 6
## 488 Kontiolahti Sprint 11
## 489 Kontiolahti Sprint 11
## 490 Kontiolahti Sprint 11
## 491 Kontiolahti Sprint 11
## 492 Kontiolahti Sprint 11
## 493 Kontiolahti Sprint 11
## 494 Kontiolahti Sprint 11
## 495 Kontiolahti Sprint 11
## 496 Kontiolahti Sprint 11
## 497 Kontiolahti Sprint 11
## 498 Kontiolahti Sprint 11
## 499 Kontiolahti Sprint 11
## 500 Kontiolahti Sprint 11
## 501 Kontiolahti Sprint 11
## 502 Kontiolahti Sprint 11
## 503 Kontiolahti Sprint 11
## 504 Kontiolahti Sprint 11
## 505 Kontiolahti Sprint 11
## 506 Kontiolahti Sprint 11
## 507 Kontiolahti Sprint 11
## 508 Kontiolahti Sprint 11
## 509 Kontiolahti Sprint 11
## 510 Kontiolahti Sprint 11
## 511 Kontiolahti Sprint 11
## 512 Kontiolahti Sprint 11
## 513 Kontiolahti Sprint 11
## 514 Kontiolahti Sprint 11
## 515 Kontiolahti Sprint 11
## 516 Kontiolahti Sprint 11
## 517 Kontiolahti Sprint 11
## 518 Kontiolahti Sprint 11
## 519 Kontiolahti Sprint 11
## 520 Kontiolahti Sprint 11
## 521 Kontiolahti Sprint 11
## 522 Kontiolahti Sprint 11
## 523 Kontiolahti Sprint 11
## 524 Kontiolahti Sprint 11
## 525 Kontiolahti Sprint 11
## 526 Kontiolahti Sprint 11
## 527 Kontiolahti Sprint 11
## 528 Kontiolahti Sprint 11
## 529 Kontiolahti Sprint 11
## 530 Kontiolahti Sprint 11
## 531 Kontiolahti Sprint 11
## 532 Kontiolahti Sprint 11
## 533 Kontiolahti Sprint 11
## 534 Kontiolahti Sprint 11
## 535 Kontiolahti Sprint 11
## 536 Kontiolahti Sprint 11
## 537 Kontiolahti Sprint 11
## 538 Kontiolahti Sprint 11
## 539 Kontiolahti Sprint 11
## 540 Kontiolahti Sprint 11
## 541 Kontiolahti Sprint 11
## 542 Kontiolahti Sprint 11
## 543 Kontiolahti Sprint 11
## 544 Kontiolahti Sprint 11
## 545 Kontiolahti Sprint 11
## 546 Kontiolahti Sprint 11
## 547 Kontiolahti Sprint 11
## 548 Kontiolahti Sprint 11
## 549 Kontiolahti Sprint 11
## 550 Kontiolahti Sprint 11
## 551 Kontiolahti Sprint 11
## 552 Kontiolahti Sprint 11
## 553 Kontiolahti Sprint 11
## 554 Kontiolahti Sprint 11
## 555 Kontiolahti Sprint 11
## 556 Kontiolahti Sprint 11
## 557 Kontiolahti Sprint 11
## 558 Kontiolahti Sprint 11
## 559 Kontiolahti Sprint 11
## 560 Kontiolahti Sprint 11
## 561 Kontiolahti Sprint 11
## 562 Kontiolahti Sprint 11
## 563 Kontiolahti Sprint 11
## 564 Kontiolahti Sprint 11
## 565 Kontiolahti Sprint 11
## 566 Kontiolahti Sprint 11
## 567 Kontiolahti Sprint 11
## 568 Kontiolahti Sprint 11
## 569 Kontiolahti Sprint 11
## 570 Kontiolahti Sprint 11
## 571 Kontiolahti Sprint 11
## 572 Kontiolahti Sprint 11
## 573 Kontiolahti Sprint 11
## 574 Kontiolahti Sprint 11
## 575 Kontiolahti Sprint 11
## 576 Kontiolahti Sprint 11
## 577 Kontiolahti Sprint 11
## 578 Kontiolahti Sprint 11
## 579 Kontiolahti Sprint 11
## 580 Kontiolahti Sprint 11
## 581 Kontiolahti Sprint 11
## 582 Kontiolahti Sprint 11
## 583 Kontiolahti Sprint 11
## 584 Kontiolahti Sprint 11
## 585 Kontiolahti Sprint 11
## 586 Kontiolahti Sprint 11
## 587 Kontiolahti Sprint 11
## 588 Kontiolahti Sprint 11
## 589 Kontiolahti Sprint 11
## 590 Kontiolahti Sprint 11
## 591 Kontiolahti Sprint 11
## 592 Kontiolahti Sprint 11
## 593 Kontiolahti Sprint 11
## 594 Kontiolahti Sprint 11
## 595 Kontiolahti Sprint 11
## 596 Kontiolahti Sprint 11
## 597 Kontiolahti Sprint 11
## 598 Kontiolahti Sprint 11
## 599 Kontiolahti Sprint 11
## 600 Kontiolahti Sprint 11
## 601 Kontiolahti Sprint 11
## 602 Kontiolahti Sprint 11
## 603 Kontiolahti Sprint 11
## 604 Kontiolahti Sprint 11
## 605 Kontiolahti Sprint 11
## 606 Kontiolahti Sprint 11
## 607 Kontiolahti Sprint 11
## 608 Kontiolahti Individual 8
## 609 Kontiolahti Individual 8
## 610 Kontiolahti Individual 8
## 611 Kontiolahti Individual 8
## 612 Kontiolahti Individual 8
## 613 Kontiolahti Individual 8
## 614 Kontiolahti Individual 8
## 615 Kontiolahti Individual 8
## 616 Kontiolahti Individual 8
## 617 Kontiolahti Individual 8
## 618 Kontiolahti Individual 8
## 619 Kontiolahti Individual 8
## 620 Kontiolahti Individual 8
## 621 Kontiolahti Individual 8
## 622 Kontiolahti Individual 8
## 623 Kontiolahti Individual 8
## 624 Kontiolahti Individual 8
## 625 Kontiolahti Individual 8
## 626 Kontiolahti Individual 8
## 627 Kontiolahti Individual 8
## 628 Kontiolahti Individual 8
## 629 Kontiolahti Individual 8
## 630 Kontiolahti Individual 8
## 631 Kontiolahti Individual 8
## 632 Kontiolahti Individual 8
## 633 Kontiolahti Individual 8
## 634 Kontiolahti Individual 8
## 635 Kontiolahti Individual 8
## 636 Kontiolahti Individual 8
## 637 Kontiolahti Individual 8
## 638 Kontiolahti Individual 8
## 639 Kontiolahti Individual 8
## 640 Kontiolahti Individual 8
## 641 Kontiolahti Individual 8
## 642 Kontiolahti Individual 8
## 643 Kontiolahti Individual 8
## 644 Kontiolahti Individual 8
## 645 Kontiolahti Individual 8
## 646 Kontiolahti Individual 8
## 647 Kontiolahti Individual 8
## 648 Kontiolahti Individual 8
## 649 Kontiolahti Individual 8
## 650 Kontiolahti Individual 8
## 651 Kontiolahti Individual 8
## 652 Kontiolahti Individual 8
## 653 Kontiolahti Individual 8
## 654 Kontiolahti Individual 8
## 655 Kontiolahti Individual 8
## 656 Kontiolahti Individual 8
## 657 Kontiolahti Individual 8
## 658 Kontiolahti Individual 8
## 659 Kontiolahti Individual 8
## 660 Kontiolahti Individual 8
## 661 Kontiolahti Individual 8
## 662 Kontiolahti Individual 8
## 663 Kontiolahti Individual 8
## 664 Kontiolahti Individual 8
## 665 Kontiolahti Individual 8
## 666 Kontiolahti Individual 8
## 667 Kontiolahti Individual 8
## 668 Kontiolahti Individual 8
## 669 Kontiolahti Individual 8
## 670 Kontiolahti Individual 8
## 671 Kontiolahti Individual 8
## 672 Kontiolahti Individual 8
## 673 Kontiolahti Individual 8
## 674 Kontiolahti Individual 8
## 675 Kontiolahti Individual 8
## 676 Kontiolahti Individual 8
## 677 Kontiolahti Individual 8
## 678 Kontiolahti Individual 8
## 679 Kontiolahti Individual 8
## 680 Kontiolahti Individual 8
## 681 Kontiolahti Individual 8
## 682 Kontiolahti Individual 8
## 683 Kontiolahti Individual 8
## 684 Kontiolahti Individual 8
## 685 Kontiolahti Individual 8
## 686 Kontiolahti Individual 8
## 687 Kontiolahti Individual 8
## 688 Kontiolahti Individual 8
## 689 Kontiolahti Individual 8
## 690 Kontiolahti Individual 8
## 691 Kontiolahti Individual 8
## 692 Kontiolahti Individual 8
## 693 Kontiolahti Individual 8
## 694 Kontiolahti Individual 8
## 695 Kontiolahti Individual 8
## 696 Kontiolahti Individual 8
## 697 Kontiolahti Individual 8
## 698 Kontiolahti Individual 8
## 699 Kontiolahti Individual 8
## 700 Kontiolahti Individual 8
## 701 Kontiolahti Individual 8
## 702 Kontiolahti Individual 8
## 703 Kontiolahti Individual 8
## 704 Kontiolahti Individual 8
## 705 Kontiolahti Individual 8
## 706 Kontiolahti Individual 8
## 707 Kontiolahti Individual 8
## 708 Kontiolahti Individual 8
## 709 Kontiolahti Individual 8
## 710 Kontiolahti Individual 8
## 711 Kontiolahti Individual 8
## 712 Kontiolahti Individual 8
## 713 Kontiolahti Individual 8
## 714 Kontiolahti Individual 8
## 715 Kontiolahti Individual 8
## 716 Kontiolahti Individual 8
## 717 Kontiolahti Individual 8
## 718 Kontiolahti Individual 8
## 719 Kontiolahti Individual 8
## 720 Kontiolahti Individual 8
## 721 Kontiolahti Individual 8
## 722 Kontiolahti Individual 8
## 723 Kontiolahti Individual 8
## 724 Kontiolahti Individual 8
## 725 Kontiolahti Individual 8
## 726 Kontiolahti Individual 8
## 727 Kontiolahti Individual 8
## 728 Kontiolahti Mass start 9
## 729 Kontiolahti Mass start 9
## 730 Kontiolahti Mass start 9
## 731 Kontiolahti Mass start 9
## 732 Kontiolahti Mass start 9
## 733 Kontiolahti Mass start 9
## 734 Kontiolahti Mass start 9
## 735 Kontiolahti Mass start 9
## 736 Kontiolahti Mass start 9
## 737 Kontiolahti Mass start 9
## 738 Kontiolahti Mass start 9
## 739 Kontiolahti Mass start 9
## 740 Kontiolahti Mass start 9
## 741 Kontiolahti Mass start 9
## 742 Kontiolahti Mass start 9
## 743 Kontiolahti Mass start 9
## 744 Kontiolahti Mass start 9
## 745 Kontiolahti Mass start 9
## 746 Kontiolahti Mass start 9
## 747 Kontiolahti Mass start 9
## 748 Kontiolahti Mass start 9
## 749 Kontiolahti Mass start 9
## 750 Kontiolahti Mass start 9
## 751 Kontiolahti Mass start 9
## 752 Kontiolahti Mass start 9
## 753 Kontiolahti Mass start 9
## 754 Kontiolahti Mass start 9
## 755 Kontiolahti Mass start 9
## 756 Kontiolahti Mass start 9
## 757 Kontiolahti Mass start 9
## 758 Kontiolahti Pursuit 10
## 759 Kontiolahti Pursuit 10
## 760 Kontiolahti Pursuit 10
## 761 Kontiolahti Pursuit 10
## 762 Kontiolahti Pursuit 10
## 763 Kontiolahti Pursuit 10
## 764 Kontiolahti Pursuit 10
## 765 Kontiolahti Pursuit 10
## 766 Kontiolahti Pursuit 10
## 767 Kontiolahti Pursuit 10
## 768 Kontiolahti Pursuit 10
## 769 Kontiolahti Pursuit 10
## 770 Kontiolahti Pursuit 10
## 771 Kontiolahti Pursuit 10
## 772 Kontiolahti Pursuit 10
## 773 Kontiolahti Pursuit 10
## 774 Kontiolahti Pursuit 10
## 775 Kontiolahti Pursuit 10
## 776 Kontiolahti Pursuit 10
## 777 Kontiolahti Pursuit 10
## 778 Kontiolahti Pursuit 10
## 779 Kontiolahti Pursuit 10
## 780 Kontiolahti Pursuit 10
## 781 Kontiolahti Pursuit 10
## 782 Kontiolahti Pursuit 10
## 783 Kontiolahti Pursuit 10
## 784 Kontiolahti Pursuit 10
## 785 Kontiolahti Pursuit 10
## 786 Kontiolahti Pursuit 10
## 787 Kontiolahti Pursuit 10
## 788 Kontiolahti Pursuit 10
## 789 Kontiolahti Pursuit 10
## 790 Kontiolahti Pursuit 10
## 791 Kontiolahti Pursuit 10
## 792 Kontiolahti Pursuit 10
## 793 Kontiolahti Pursuit 10
## 794 Kontiolahti Pursuit 10
## 795 Kontiolahti Pursuit 10
## 796 Kontiolahti Pursuit 10
## 797 Kontiolahti Pursuit 10
## 798 Kontiolahti Pursuit 10
## 799 Kontiolahti Pursuit 10
## 800 Kontiolahti Pursuit 10
## 801 Kontiolahti Pursuit 10
## 802 Kontiolahti Pursuit 10
## 803 Kontiolahti Pursuit 10
## 804 Kontiolahti Pursuit 10
## 805 Kontiolahti Pursuit 10
## 806 Kontiolahti Pursuit 10
## 807 Kontiolahti Pursuit 10
## 808 Kontiolahti Pursuit 10
## 809 Kontiolahti Pursuit 10
## 810 Kontiolahti Pursuit 10
## 811 Kontiolahti Pursuit 10
## 812 Kontiolahti Pursuit 10
## 813 Kontiolahti Pursuit 10
## 814 Kontiolahti Pursuit 10
## 815 Kontiolahti Pursuit 10
## 816 Kontiolahti Pursuit 10
## 817 Kontiolahti Pursuit 10
## 818 Nove_Mesto Sprint 13
## 819 Nove_Mesto Sprint 13
## 820 Nove_Mesto Sprint 13
## 821 Nove_Mesto Sprint 13
## 822 Nove_Mesto Sprint 13
## 823 Nove_Mesto Sprint 13
## 824 Nove_Mesto Sprint 13
## 825 Nove_Mesto Sprint 13
## 826 Nove_Mesto Sprint 13
## 827 Nove_Mesto Sprint 13
## 828 Nove_Mesto Sprint 13
## 829 Nove_Mesto Sprint 13
## 830 Nove_Mesto Sprint 13
## 831 Nove_Mesto Sprint 13
## 832 Nove_Mesto Sprint 13
## 833 Nove_Mesto Sprint 13
## 834 Nove_Mesto Sprint 13
## 835 Nove_Mesto Sprint 13
## 836 Nove_Mesto Sprint 13
## 837 Nove_Mesto Sprint 13
## 838 Nove_Mesto Sprint 13
## 839 Nove_Mesto Sprint 13
## 840 Nove_Mesto Sprint 13
## 841 Nove_Mesto Sprint 13
## 842 Nove_Mesto Sprint 13
## 843 Nove_Mesto Sprint 13
## 844 Nove_Mesto Sprint 13
## 845 Nove_Mesto Sprint 13
## 846 Nove_Mesto Sprint 13
## 847 Nove_Mesto Sprint 13
## 848 Nove_Mesto Sprint 13
## 849 Nove_Mesto Sprint 13
## 850 Nove_Mesto Sprint 13
## 851 Nove_Mesto Sprint 13
## 852 Nove_Mesto Sprint 13
## 853 Nove_Mesto Sprint 13
## 854 Nove_Mesto Sprint 13
## 855 Nove_Mesto Sprint 13
## 856 Nove_Mesto Sprint 13
## 857 Nove_Mesto Sprint 13
## 858 Nove_Mesto Sprint 13
## 859 Nove_Mesto Sprint 13
## 860 Nove_Mesto Sprint 13
## 861 Nove_Mesto Sprint 13
## 862 Nove_Mesto Sprint 13
## 863 Nove_Mesto Sprint 13
## 864 Nove_Mesto Sprint 13
## 865 Nove_Mesto Sprint 13
## 866 Nove_Mesto Sprint 13
## 867 Nove_Mesto Sprint 13
## 868 Nove_Mesto Sprint 13
## 869 Nove_Mesto Sprint 13
## 870 Nove_Mesto Sprint 13
## 871 Nove_Mesto Sprint 13
## 872 Nove_Mesto Sprint 13
## 873 Nove_Mesto Sprint 13
## 874 Nove_Mesto Sprint 13
## 875 Nove_Mesto Sprint 13
## 876 Nove_Mesto Sprint 13
## 877 Nove_Mesto Sprint 13
## 878 Nove_Mesto Sprint 13
## 879 Nove_Mesto Sprint 13
## 880 Nove_Mesto Sprint 13
## 881 Nove_Mesto Sprint 13
## 882 Nove_Mesto Sprint 13
## 883 Nove_Mesto Sprint 13
## 884 Nove_Mesto Sprint 13
## 885 Nove_Mesto Sprint 13
## 886 Nove_Mesto Sprint 13
## 887 Nove_Mesto Sprint 13
## 888 Nove_Mesto Sprint 13
## 889 Nove_Mesto Sprint 13
## 890 Nove_Mesto Sprint 13
## 891 Nove_Mesto Sprint 13
## 892 Nove_Mesto Sprint 13
## 893 Nove_Mesto Sprint 13
## 894 Nove_Mesto Sprint 13
## 895 Nove_Mesto Sprint 13
## 896 Nove_Mesto Sprint 13
## 897 Nove_Mesto Sprint 13
## 898 Nove_Mesto Sprint 13
## 899 Nove_Mesto Sprint 13
## 900 Nove_Mesto Sprint 13
## 901 Nove_Mesto Sprint 13
## 902 Nove_Mesto Sprint 13
## 903 Nove_Mesto Sprint 13
## 904 Nove_Mesto Sprint 13
## 905 Nove_Mesto Sprint 13
## 906 Nove_Mesto Sprint 13
## 907 Nove_Mesto Sprint 13
## 908 Nove_Mesto Sprint 13
## 909 Nove_Mesto Sprint 13
## 910 Nove_Mesto Sprint 13
## 911 Nove_Mesto Sprint 13
## 912 Nove_Mesto Pursuit 12
## 913 Nove_Mesto Pursuit 12
## 914 Nove_Mesto Pursuit 12
## 915 Nove_Mesto Pursuit 12
## 916 Nove_Mesto Pursuit 12
## 917 Nove_Mesto Pursuit 12
## 918 Nove_Mesto Pursuit 12
## 919 Nove_Mesto Pursuit 12
## 920 Nove_Mesto Pursuit 12
## 921 Nove_Mesto Pursuit 12
## 922 Nove_Mesto Pursuit 12
## 923 Nove_Mesto Pursuit 12
## 924 Nove_Mesto Pursuit 12
## 925 Nove_Mesto Pursuit 12
## 926 Nove_Mesto Pursuit 12
## 927 Nove_Mesto Pursuit 12
## 928 Nove_Mesto Pursuit 12
## 929 Nove_Mesto Pursuit 12
## 930 Nove_Mesto Pursuit 12
## 931 Nove_Mesto Pursuit 12
## 932 Nove_Mesto Pursuit 12
## 933 Nove_Mesto Pursuit 12
## 934 Nove_Mesto Pursuit 12
## 935 Nove_Mesto Pursuit 12
## 936 Nove_Mesto Pursuit 12
## 937 Nove_Mesto Pursuit 12
## 938 Nove_Mesto Pursuit 12
## 939 Nove_Mesto Pursuit 12
## 940 Nove_Mesto Pursuit 12
## 941 Nove_Mesto Pursuit 12
## 942 Nove_Mesto Pursuit 12
## 943 Nove_Mesto Pursuit 12
## 944 Nove_Mesto Pursuit 12
## 945 Nove_Mesto Pursuit 12
## 946 Nove_Mesto Pursuit 12
## 947 Nove_Mesto Pursuit 12
## 948 Nove_Mesto Pursuit 12
## 949 Nove_Mesto Pursuit 12
## 950 Nove_Mesto Pursuit 12
## 951 Nove_Mesto Pursuit 12
## 952 Nove_Mesto Pursuit 12
## 953 Nove_Mesto Pursuit 12
## 954 Nove_Mesto Pursuit 12
## 955 Nove_Mesto Pursuit 12
## 956 Nove_Mesto Pursuit 12
## 957 Nove_Mesto Pursuit 12
## 958 Nove_Mesto Pursuit 12
## 959 Nove_Mesto Pursuit 12
## 960 Nove_Mesto Pursuit 12
## 961 Nove_Mesto Pursuit 12
## 962 Nove_Mesto Pursuit 12
## 963 Nove_Mesto Pursuit 12
## 964 Nove_Mesto Pursuit 12
## 965 Nove_Mesto Pursuit 12
## 966 Oberhof Sprint 15
## 967 Oberhof Sprint 15
## 968 Oberhof Sprint 15
## 969 Oberhof Sprint 15
## 970 Oberhof Sprint 15
## 971 Oberhof Sprint 15
## 972 Oberhof Sprint 15
## 973 Oberhof Sprint 15
## 974 Oberhof Sprint 15
## 975 Oberhof Sprint 15
## 976 Oberhof Sprint 15
## 977 Oberhof Sprint 15
## 978 Oberhof Sprint 15
## 979 Oberhof Sprint 15
## 980 Oberhof Sprint 15
## 981 Oberhof Sprint 15
## 982 Oberhof Sprint 15
## 983 Oberhof Sprint 15
## 984 Oberhof Sprint 15
## 985 Oberhof Sprint 15
## 986 Oberhof Sprint 15
## 987 Oberhof Sprint 15
## 988 Oberhof Sprint 15
## 989 Oberhof Sprint 15
## 990 Oberhof Sprint 15
## 991 Oberhof Sprint 15
## 992 Oberhof Sprint 15
## 993 Oberhof Sprint 15
## 994 Oberhof Sprint 15
## 995 Oberhof Sprint 15
## 996 Oberhof Sprint 15
## 997 Oberhof Sprint 15
## 998 Oberhof Sprint 15
## 999 Oberhof Sprint 15
## 1000 Oberhof Sprint 15
## 1001 Oberhof Sprint 15
## 1002 Oberhof Sprint 15
## 1003 Oberhof Sprint 15
## 1004 Oberhof Sprint 15
## 1005 Oberhof Sprint 15
## 1006 Oberhof Sprint 15
## 1007 Oberhof Sprint 15
## 1008 Oberhof Sprint 15
## 1009 Oberhof Sprint 15
## 1010 Oberhof Sprint 15
## 1011 Oberhof Sprint 15
## 1012 Oberhof Sprint 15
## 1013 Oberhof Sprint 15
## 1014 Oberhof Sprint 15
## 1015 Oberhof Sprint 15
## 1016 Oberhof Sprint 15
## 1017 Oberhof Sprint 15
## 1018 Oberhof Sprint 15
## 1019 Oberhof Sprint 15
## 1020 Oberhof Sprint 15
## 1021 Oberhof Sprint 15
## 1022 Oberhof Sprint 15
## 1023 Oberhof Sprint 15
## 1024 Oberhof Sprint 15
## 1025 Oberhof Sprint 15
## 1026 Oberhof Sprint 15
## 1027 Oberhof Sprint 15
## 1028 Oberhof Sprint 15
## 1029 Oberhof Sprint 15
## 1030 Oberhof Sprint 15
## 1031 Oberhof Sprint 15
## 1032 Oberhof Sprint 15
## 1033 Oberhof Sprint 15
## 1034 Oberhof Sprint 15
## 1035 Oberhof Sprint 15
## 1036 Oberhof Sprint 15
## 1037 Oberhof Sprint 15
## 1038 Oberhof Sprint 15
## 1039 Oberhof Sprint 15
## 1040 Oberhof Sprint 15
## 1041 Oberhof Sprint 15
## 1042 Oberhof Sprint 15
## 1043 Oberhof Sprint 15
## 1044 Oberhof Sprint 15
## 1045 Oberhof Sprint 15
## 1046 Oberhof Sprint 15
## 1047 Oberhof Sprint 15
## 1048 Oberhof Sprint 15
## 1049 Oberhof Sprint 15
## 1050 Oberhof Sprint 15
## 1051 Oberhof Sprint 15
## 1052 Oberhof Sprint 15
## 1053 Oberhof Sprint 15
## 1054 Oberhof Sprint 15
## 1055 Oberhof Sprint 15
## 1056 Oberhof Sprint 15
## 1057 Oberhof Sprint 15
## 1058 Oberhof Sprint 15
## 1059 Oberhof Sprint 15
## 1060 Oberhof Sprint 15
## 1061 Oberhof Sprint 15
## 1062 Oberhof Sprint 15
## 1063 Oberhof Sprint 15
## 1064 Oberhof Sprint 15
## 1065 Oberhof Mass start 14
## 1066 Oberhof Mass start 14
## 1067 Oberhof Mass start 14
## 1068 Oberhof Mass start 14
## 1069 Oberhof Mass start 14
## 1070 Oberhof Mass start 14
## 1071 Oberhof Mass start 14
## 1072 Oberhof Mass start 14
## 1073 Oberhof Mass start 14
## 1074 Oberhof Mass start 14
## 1075 Oberhof Mass start 14
## 1076 Oberhof Mass start 14
## 1077 Oberhof Mass start 14
## 1078 Oberhof Mass start 14
## 1079 Oberhof Mass start 14
## 1080 Oberhof Mass start 14
## 1081 Oberhof Mass start 14
## 1082 Oberhof Mass start 14
## 1083 Oberhof Mass start 14
## 1084 Oberhof Mass start 14
## 1085 Oberhof Mass start 14
## 1086 Oberhof Mass start 14
## 1087 Oberhof Mass start 14
## 1088 Oberhof Mass start 14
## 1089 Oberhof Mass start 14
## 1090 Oberhof Mass start 14
## 1091 Oberhof Mass start 14
## 1092 Oberhof Mass start 14
## 1093 Oberhof Mass start 14
## 1094 Oestersund Sprint 18
## 1095 Oestersund Sprint 18
## 1096 Oestersund Sprint 18
## 1097 Oestersund Sprint 18
## 1098 Oestersund Sprint 18
## 1099 Oestersund Sprint 18
## 1100 Oestersund Sprint 18
## 1101 Oestersund Sprint 18
## 1102 Oestersund Sprint 18
## 1103 Oestersund Sprint 18
## 1104 Oestersund Sprint 18
## 1105 Oestersund Sprint 18
## 1106 Oestersund Sprint 18
## 1107 Oestersund Sprint 18
## 1108 Oestersund Sprint 18
## 1109 Oestersund Sprint 18
## 1110 Oestersund Sprint 18
## 1111 Oestersund Sprint 18
## 1112 Oestersund Sprint 18
## 1113 Oestersund Sprint 18
## 1114 Oestersund Sprint 18
## 1115 Oestersund Sprint 18
## 1116 Oestersund Sprint 18
## 1117 Oestersund Sprint 18
## 1118 Oestersund Sprint 18
## 1119 Oestersund Sprint 18
## 1120 Oestersund Sprint 18
## 1121 Oestersund Sprint 18
## 1122 Oestersund Sprint 18
## 1123 Oestersund Sprint 18
## 1124 Oestersund Sprint 18
## 1125 Oestersund Sprint 18
## 1126 Oestersund Sprint 18
## 1127 Oestersund Sprint 18
## 1128 Oestersund Sprint 18
## 1129 Oestersund Sprint 18
## 1130 Oestersund Sprint 18
## 1131 Oestersund Sprint 18
## 1132 Oestersund Sprint 18
## 1133 Oestersund Sprint 18
## 1134 Oestersund Sprint 18
## 1135 Oestersund Sprint 18
## 1136 Oestersund Sprint 18
## 1137 Oestersund Sprint 18
## 1138 Oestersund Sprint 18
## 1139 Oestersund Sprint 18
## 1140 Oestersund Sprint 18
## 1141 Oestersund Sprint 18
## 1142 Oestersund Sprint 18
## 1143 Oestersund Sprint 18
## 1144 Oestersund Sprint 18
## 1145 Oestersund Sprint 18
## 1146 Oestersund Sprint 18
## 1147 Oestersund Sprint 18
## 1148 Oestersund Sprint 18
## 1149 Oestersund Sprint 18
## 1150 Oestersund Sprint 18
## 1151 Oestersund Sprint 18
## 1152 Oestersund Sprint 18
## 1153 Oestersund Sprint 18
## 1154 Oestersund Sprint 18
## 1155 Oestersund Sprint 18
## 1156 Oestersund Sprint 18
## 1157 Oestersund Sprint 18
## 1158 Oestersund Sprint 18
## 1159 Oestersund Sprint 18
## 1160 Oestersund Sprint 18
## 1161 Oestersund Sprint 18
## 1162 Oestersund Sprint 18
## 1163 Oestersund Sprint 18
## 1164 Oestersund Sprint 18
## 1165 Oestersund Sprint 18
## 1166 Oestersund Sprint 18
## 1167 Oestersund Sprint 18
## 1168 Oestersund Sprint 18
## 1169 Oestersund Sprint 18
## 1170 Oestersund Sprint 18
## 1171 Oestersund Sprint 18
## 1172 Oestersund Sprint 18
## 1173 Oestersund Sprint 18
## 1174 Oestersund Sprint 18
## 1175 Oestersund Sprint 18
## 1176 Oestersund Sprint 18
## 1177 Oestersund Sprint 18
## 1178 Oestersund Sprint 18
## 1179 Oestersund Sprint 18
## 1180 Oestersund Sprint 18
## 1181 Oestersund Sprint 18
## 1182 Oestersund Sprint 18
## 1183 Oestersund Sprint 18
## 1184 Oestersund Sprint 18
## 1185 Oestersund Sprint 18
## 1186 Oestersund Sprint 18
## 1187 Oestersund Sprint 18
## 1188 Oestersund Sprint 18
## 1189 Oestersund Sprint 18
## 1190 Oestersund Sprint 18
## 1191 Oestersund Sprint 18
## 1192 Oestersund Sprint 18
## 1193 Oestersund Individual 16
## 1194 Oestersund Individual 16
## 1195 Oestersund Individual 16
## 1196 Oestersund Individual 16
## 1197 Oestersund Individual 16
## 1198 Oestersund Individual 16
## 1199 Oestersund Individual 16
## 1200 Oestersund Individual 16
## 1201 Oestersund Individual 16
## 1202 Oestersund Individual 16
## 1203 Oestersund Individual 16
## 1204 Oestersund Individual 16
## 1205 Oestersund Individual 16
## 1206 Oestersund Individual 16
## 1207 Oestersund Individual 16
## 1208 Oestersund Individual 16
## 1209 Oestersund Individual 16
## 1210 Oestersund Individual 16
## 1211 Oestersund Individual 16
## 1212 Oestersund Individual 16
## 1213 Oestersund Individual 16
## 1214 Oestersund Individual 16
## 1215 Oestersund Individual 16
## 1216 Oestersund Individual 16
## 1217 Oestersund Individual 16
## 1218 Oestersund Individual 16
## 1219 Oestersund Individual 16
## 1220 Oestersund Individual 16
## 1221 Oestersund Individual 16
## 1222 Oestersund Individual 16
## 1223 Oestersund Individual 16
## 1224 Oestersund Individual 16
## 1225 Oestersund Individual 16
## 1226 Oestersund Individual 16
## 1227 Oestersund Individual 16
## 1228 Oestersund Individual 16
## 1229 Oestersund Individual 16
## 1230 Oestersund Individual 16
## 1231 Oestersund Individual 16
## 1232 Oestersund Individual 16
## 1233 Oestersund Individual 16
## 1234 Oestersund Individual 16
## 1235 Oestersund Individual 16
## 1236 Oestersund Individual 16
## 1237 Oestersund Individual 16
## 1238 Oestersund Individual 16
## 1239 Oestersund Individual 16
## 1240 Oestersund Individual 16
## 1241 Oestersund Individual 16
## 1242 Oestersund Individual 16
## 1243 Oestersund Individual 16
## 1244 Oestersund Individual 16
## 1245 Oestersund Individual 16
## 1246 Oestersund Individual 16
## 1247 Oestersund Individual 16
## 1248 Oestersund Individual 16
## 1249 Oestersund Individual 16
## 1250 Oestersund Individual 16
## 1251 Oestersund Individual 16
## 1252 Oestersund Individual 16
## 1253 Oestersund Individual 16
## 1254 Oestersund Individual 16
## 1255 Oestersund Individual 16
## 1256 Oestersund Individual 16
## 1257 Oestersund Individual 16
## 1258 Oestersund Individual 16
## 1259 Oestersund Individual 16
## 1260 Oestersund Individual 16
## 1261 Oestersund Individual 16
## 1262 Oestersund Individual 16
## 1263 Oestersund Individual 16
## 1264 Oestersund Individual 16
## 1265 Oestersund Individual 16
## 1266 Oestersund Individual 16
## 1267 Oestersund Individual 16
## 1268 Oestersund Individual 16
## 1269 Oestersund Individual 16
## 1270 Oestersund Individual 16
## 1271 Oestersund Individual 16
## 1272 Oestersund Individual 16
## 1273 Oestersund Individual 16
## 1274 Oestersund Individual 16
## 1275 Oestersund Individual 16
## 1276 Oestersund Individual 16
## 1277 Oestersund Individual 16
## 1278 Oestersund Individual 16
## 1279 Oestersund Individual 16
## 1280 Oestersund Individual 16
## 1281 Oestersund Individual 16
## 1282 Oestersund Individual 16
## 1283 Oestersund Individual 16
## 1284 Oestersund Individual 16
## 1285 Oestersund Individual 16
## 1286 Oestersund Individual 16
## 1287 Oestersund Individual 16
## 1288 Oestersund Individual 16
## 1289 Oestersund Individual 16
## 1290 Oestersund Individual 16
## 1291 Oestersund Individual 16
## 1292 Oestersund Pursuit 17
## 1293 Oestersund Pursuit 17
## 1294 Oestersund Pursuit 17
## 1295 Oestersund Pursuit 17
## 1296 Oestersund Pursuit 17
## 1297 Oestersund Pursuit 17
## 1298 Oestersund Pursuit 17
## 1299 Oestersund Pursuit 17
## 1300 Oestersund Pursuit 17
## 1301 Oestersund Pursuit 17
## 1302 Oestersund Pursuit 17
## 1303 Oestersund Pursuit 17
## 1304 Oestersund Pursuit 17
## 1305 Oestersund Pursuit 17
## 1306 Oestersund Pursuit 17
## 1307 Oestersund Pursuit 17
## 1308 Oestersund Pursuit 17
## 1309 Oestersund Pursuit 17
## 1310 Oestersund Pursuit 17
## 1311 Oestersund Pursuit 17
## 1312 Oestersund Pursuit 17
## 1313 Oestersund Pursuit 17
## 1314 Oestersund Pursuit 17
## 1315 Oestersund Pursuit 17
## 1316 Oestersund Pursuit 17
## 1317 Oestersund Pursuit 17
## 1318 Oestersund Pursuit 17
## 1319 Oestersund Pursuit 17
## 1320 Oestersund Pursuit 17
## 1321 Oestersund Pursuit 17
## 1322 Oestersund Pursuit 17
## 1323 Oestersund Pursuit 17
## 1324 Oestersund Pursuit 17
## 1325 Oestersund Pursuit 17
## 1326 Oestersund Pursuit 17
## 1327 Oestersund Pursuit 17
## 1328 Oestersund Pursuit 17
## 1329 Oestersund Pursuit 17
## 1330 Oestersund Pursuit 17
## 1331 Oestersund Pursuit 17
## 1332 Oestersund Pursuit 17
## 1333 Oestersund Pursuit 17
## 1334 Oestersund Pursuit 17
## 1335 Oestersund Pursuit 17
## 1336 Oestersund Pursuit 17
## 1337 Oestersund Pursuit 17
## 1338 Oestersund Pursuit 17
## 1339 Oestersund Pursuit 17
## 1340 Oestersund Pursuit 17
## 1341 Oestersund Pursuit 17
## 1342 Oestersund Pursuit 17
## 1343 Oestersund Pursuit 17
## 1344 Oestersund Pursuit 17
## 1345 Oestersund Pursuit 17
## 1346 Oestersund Pursuit 17
## 1347 Oestersund Pursuit 17
## 1348 Oestersund Pursuit 17
## 1349 Oestersund Pursuit 17
## 1350 Oestersund Pursuit 17
## 1351 Oslo_Holmenkollen Sprint 20
## 1352 Oslo_Holmenkollen Sprint 20
## 1353 Oslo_Holmenkollen Sprint 20
## 1354 Oslo_Holmenkollen Sprint 20
## 1355 Oslo_Holmenkollen Sprint 20
## 1356 Oslo_Holmenkollen Sprint 20
## 1357 Oslo_Holmenkollen Sprint 20
## 1358 Oslo_Holmenkollen Sprint 20
## 1359 Oslo_Holmenkollen Sprint 20
## 1360 Oslo_Holmenkollen Sprint 20
## 1361 Oslo_Holmenkollen Sprint 20
## 1362 Oslo_Holmenkollen Sprint 20
## 1363 Oslo_Holmenkollen Sprint 20
## 1364 Oslo_Holmenkollen Sprint 20
## 1365 Oslo_Holmenkollen Sprint 20
## 1366 Oslo_Holmenkollen Sprint 20
## 1367 Oslo_Holmenkollen Sprint 20
## 1368 Oslo_Holmenkollen Sprint 20
## 1369 Oslo_Holmenkollen Sprint 20
## 1370 Oslo_Holmenkollen Sprint 20
## 1371 Oslo_Holmenkollen Sprint 20
## 1372 Oslo_Holmenkollen Sprint 20
## 1373 Oslo_Holmenkollen Sprint 20
## 1374 Oslo_Holmenkollen Sprint 20
## 1375 Oslo_Holmenkollen Sprint 20
## 1376 Oslo_Holmenkollen Sprint 20
## 1377 Oslo_Holmenkollen Sprint 20
## 1378 Oslo_Holmenkollen Sprint 20
## 1379 Oslo_Holmenkollen Sprint 20
## 1380 Oslo_Holmenkollen Sprint 20
## 1381 Oslo_Holmenkollen Sprint 20
## 1382 Oslo_Holmenkollen Sprint 20
## 1383 Oslo_Holmenkollen Sprint 20
## 1384 Oslo_Holmenkollen Sprint 20
## 1385 Oslo_Holmenkollen Sprint 20
## 1386 Oslo_Holmenkollen Sprint 20
## 1387 Oslo_Holmenkollen Sprint 20
## 1388 Oslo_Holmenkollen Sprint 20
## 1389 Oslo_Holmenkollen Sprint 20
## 1390 Oslo_Holmenkollen Sprint 20
## 1391 Oslo_Holmenkollen Sprint 20
## 1392 Oslo_Holmenkollen Sprint 20
## 1393 Oslo_Holmenkollen Sprint 20
## 1394 Oslo_Holmenkollen Sprint 20
## 1395 Oslo_Holmenkollen Sprint 20
## 1396 Oslo_Holmenkollen Sprint 20
## 1397 Oslo_Holmenkollen Sprint 20
## 1398 Oslo_Holmenkollen Sprint 20
## 1399 Oslo_Holmenkollen Sprint 20
## 1400 Oslo_Holmenkollen Sprint 20
## 1401 Oslo_Holmenkollen Sprint 20
## 1402 Oslo_Holmenkollen Sprint 20
## 1403 Oslo_Holmenkollen Sprint 20
## 1404 Oslo_Holmenkollen Sprint 20
## 1405 Oslo_Holmenkollen Sprint 20
## 1406 Oslo_Holmenkollen Sprint 20
## 1407 Oslo_Holmenkollen Sprint 20
## 1408 Oslo_Holmenkollen Sprint 20
## 1409 Oslo_Holmenkollen Sprint 20
## 1410 Oslo_Holmenkollen Sprint 20
## 1411 Oslo_Holmenkollen Sprint 20
## 1412 Oslo_Holmenkollen Sprint 20
## 1413 Oslo_Holmenkollen Sprint 20
## 1414 Oslo_Holmenkollen Sprint 20
## 1415 Oslo_Holmenkollen Sprint 20
## 1416 Oslo_Holmenkollen Sprint 20
## 1417 Oslo_Holmenkollen Sprint 20
## 1418 Oslo_Holmenkollen Sprint 20
## 1419 Oslo_Holmenkollen Sprint 20
## 1420 Oslo_Holmenkollen Sprint 20
## 1421 Oslo_Holmenkollen Sprint 20
## 1422 Oslo_Holmenkollen Sprint 20
## 1423 Oslo_Holmenkollen Sprint 20
## 1424 Oslo_Holmenkollen Sprint 20
## 1425 Oslo_Holmenkollen Sprint 20
## 1426 Oslo_Holmenkollen Sprint 20
## 1427 Oslo_Holmenkollen Sprint 20
## 1428 Oslo_Holmenkollen Sprint 20
## 1429 Oslo_Holmenkollen Sprint 20
## 1430 Oslo_Holmenkollen Sprint 20
## 1431 Oslo_Holmenkollen Sprint 20
## 1432 Oslo_Holmenkollen Sprint 20
## 1433 Oslo_Holmenkollen Sprint 20
## 1434 Oslo_Holmenkollen Sprint 20
## 1435 Oslo_Holmenkollen Sprint 20
## 1436 Oslo_Holmenkollen Sprint 20
## 1437 Oslo_Holmenkollen Sprint 20
## 1438 Oslo_Holmenkollen Sprint 20
## 1439 Oslo_Holmenkollen Sprint 20
## 1440 Oslo_Holmenkollen Sprint 20
## 1441 Oslo_Holmenkollen Sprint 20
## 1442 Oslo_Holmenkollen Sprint 20
## 1443 Oslo_Holmenkollen Sprint 20
## 1444 Oslo_Holmenkollen Sprint 20
## 1445 Oslo_Holmenkollen Sprint 20
## 1446 Oslo_Holmenkollen Sprint 20
## 1447 Oslo_Holmenkollen Sprint 20
## 1448 Oslo_Holmenkollen Individual 19
## 1449 Oslo_Holmenkollen Individual 19
## 1450 Oslo_Holmenkollen Individual 19
## 1451 Oslo_Holmenkollen Individual 19
## 1452 Oslo_Holmenkollen Individual 19
## 1453 Oslo_Holmenkollen Individual 19
## 1454 Oslo_Holmenkollen Individual 19
## 1455 Oslo_Holmenkollen Individual 19
## 1456 Oslo_Holmenkollen Individual 19
## 1457 Oslo_Holmenkollen Individual 19
## 1458 Oslo_Holmenkollen Individual 19
## 1459 Oslo_Holmenkollen Individual 19
## 1460 Oslo_Holmenkollen Individual 19
## 1461 Oslo_Holmenkollen Individual 19
## 1462 Oslo_Holmenkollen Individual 19
## 1463 Oslo_Holmenkollen Individual 19
## 1464 Oslo_Holmenkollen Individual 19
## 1465 Oslo_Holmenkollen Individual 19
## 1466 Oslo_Holmenkollen Individual 19
## 1467 Oslo_Holmenkollen Individual 19
## 1468 Oslo_Holmenkollen Individual 19
## 1469 Oslo_Holmenkollen Individual 19
## 1470 Oslo_Holmenkollen Individual 19
## 1471 Oslo_Holmenkollen Individual 19
## 1472 Oslo_Holmenkollen Individual 19
## 1473 Oslo_Holmenkollen Individual 19
## 1474 Oslo_Holmenkollen Individual 19
## 1475 Oslo_Holmenkollen Individual 19
## 1476 Oslo_Holmenkollen Individual 19
## 1477 Oslo_Holmenkollen Individual 19
## 1478 Oslo_Holmenkollen Individual 19
## 1479 Oslo_Holmenkollen Individual 19
## 1480 Oslo_Holmenkollen Individual 19
## 1481 Oslo_Holmenkollen Individual 19
## 1482 Oslo_Holmenkollen Individual 19
## 1483 Oslo_Holmenkollen Individual 19
## 1484 Oslo_Holmenkollen Individual 19
## 1485 Oslo_Holmenkollen Individual 19
## 1486 Oslo_Holmenkollen Individual 19
## 1487 Oslo_Holmenkollen Individual 19
## 1488 Oslo_Holmenkollen Individual 19
## 1489 Oslo_Holmenkollen Individual 19
## 1490 Oslo_Holmenkollen Individual 19
## 1491 Oslo_Holmenkollen Individual 19
## 1492 Oslo_Holmenkollen Individual 19
## 1493 Oslo_Holmenkollen Individual 19
## 1494 Oslo_Holmenkollen Individual 19
## 1495 Oslo_Holmenkollen Individual 19
## 1496 Oslo_Holmenkollen Individual 19
## 1497 Oslo_Holmenkollen Individual 19
## 1498 Oslo_Holmenkollen Individual 19
## 1499 Oslo_Holmenkollen Individual 19
## 1500 Oslo_Holmenkollen Individual 19
## 1501 Oslo_Holmenkollen Individual 19
## 1502 Oslo_Holmenkollen Individual 19
## 1503 Oslo_Holmenkollen Individual 19
## 1504 Oslo_Holmenkollen Individual 19
## 1505 Oslo_Holmenkollen Individual 19
## 1506 Oslo_Holmenkollen Individual 19
## 1507 Oslo_Holmenkollen Individual 19
## 1508 Oslo_Holmenkollen Individual 19
## 1509 Oslo_Holmenkollen Individual 19
## 1510 Oslo_Holmenkollen Individual 19
## 1511 Oslo_Holmenkollen Individual 19
## 1512 Oslo_Holmenkollen Individual 19
## 1513 Oslo_Holmenkollen Individual 19
## 1514 Oslo_Holmenkollen Individual 19
## 1515 Oslo_Holmenkollen Individual 19
## 1516 Oslo_Holmenkollen Individual 19
## 1517 Oslo_Holmenkollen Individual 19
## 1518 Oslo_Holmenkollen Individual 19
## 1519 Oslo_Holmenkollen Individual 19
## 1520 Oslo_Holmenkollen Individual 19
## 1521 Oslo_Holmenkollen Individual 19
## 1522 Oslo_Holmenkollen Individual 19
## 1523 Oslo_Holmenkollen Individual 19
## 1524 Oslo_Holmenkollen Individual 19
## 1525 Oslo_Holmenkollen Individual 19
## 1526 Oslo_Holmenkollen Individual 19
## 1527 Oslo_Holmenkollen Individual 19
## 1528 Oslo_Holmenkollen Individual 19
## 1529 Oslo_Holmenkollen Individual 19
## 1530 Oslo_Holmenkollen Individual 19
## 1531 Oslo_Holmenkollen Individual 19
## 1532 Oslo_Holmenkollen Individual 19
## 1533 Oslo_Holmenkollen Individual 19
## 1534 Oslo_Holmenkollen Individual 19
## 1535 Oslo_Holmenkollen Individual 19
## 1536 Oslo_Holmenkollen Individual 19
## 1537 Oslo_Holmenkollen Individual 19
## 1538 Oslo_Holmenkollen Individual 19
## 1539 Oslo_Holmenkollen Individual 19
## 1540 Oslo_Holmenkollen Individual 19
## 1541 Oslo_Holmenkollen Individual 19
## 1542 Pokljuka Sprint 23
## 1543 Pokljuka Sprint 23
## 1544 Pokljuka Sprint 23
## 1545 Pokljuka Sprint 23
## 1546 Pokljuka Sprint 23
## 1547 Pokljuka Sprint 23
## 1548 Pokljuka Sprint 23
## 1549 Pokljuka Sprint 23
## 1550 Pokljuka Sprint 23
## 1551 Pokljuka Sprint 23
## 1552 Pokljuka Sprint 23
## 1553 Pokljuka Sprint 23
## 1554 Pokljuka Sprint 23
## 1555 Pokljuka Sprint 23
## 1556 Pokljuka Sprint 23
## 1557 Pokljuka Sprint 23
## 1558 Pokljuka Sprint 23
## 1559 Pokljuka Sprint 23
## 1560 Pokljuka Sprint 23
## 1561 Pokljuka Sprint 23
## 1562 Pokljuka Sprint 23
## 1563 Pokljuka Sprint 23
## 1564 Pokljuka Sprint 23
## 1565 Pokljuka Sprint 23
## 1566 Pokljuka Sprint 23
## 1567 Pokljuka Sprint 23
## 1568 Pokljuka Sprint 23
## 1569 Pokljuka Sprint 23
## 1570 Pokljuka Sprint 23
## 1571 Pokljuka Sprint 23
## 1572 Pokljuka Sprint 23
## 1573 Pokljuka Sprint 23
## 1574 Pokljuka Sprint 23
## 1575 Pokljuka Sprint 23
## 1576 Pokljuka Sprint 23
## 1577 Pokljuka Sprint 23
## 1578 Pokljuka Sprint 23
## 1579 Pokljuka Sprint 23
## 1580 Pokljuka Sprint 23
## 1581 Pokljuka Sprint 23
## 1582 Pokljuka Sprint 23
## 1583 Pokljuka Sprint 23
## 1584 Pokljuka Sprint 23
## 1585 Pokljuka Sprint 23
## 1586 Pokljuka Sprint 23
## 1587 Pokljuka Sprint 23
## 1588 Pokljuka Sprint 23
## 1589 Pokljuka Sprint 23
## 1590 Pokljuka Sprint 23
## 1591 Pokljuka Sprint 23
## 1592 Pokljuka Sprint 23
## 1593 Pokljuka Sprint 23
## 1594 Pokljuka Sprint 23
## 1595 Pokljuka Sprint 23
## 1596 Pokljuka Sprint 23
## 1597 Pokljuka Sprint 23
## 1598 Pokljuka Sprint 23
## 1599 Pokljuka Sprint 23
## 1600 Pokljuka Sprint 23
## 1601 Pokljuka Sprint 23
## 1602 Pokljuka Sprint 23
## 1603 Pokljuka Sprint 23
## 1604 Pokljuka Sprint 23
## 1605 Pokljuka Sprint 23
## 1606 Pokljuka Sprint 23
## 1607 Pokljuka Sprint 23
## 1608 Pokljuka Sprint 23
## 1609 Pokljuka Sprint 23
## 1610 Pokljuka Sprint 23
## 1611 Pokljuka Sprint 23
## 1612 Pokljuka Sprint 23
## 1613 Pokljuka Sprint 23
## 1614 Pokljuka Sprint 23
## 1615 Pokljuka Sprint 23
## 1616 Pokljuka Sprint 23
## 1617 Pokljuka Sprint 23
## 1618 Pokljuka Sprint 23
## 1619 Pokljuka Sprint 23
## 1620 Pokljuka Sprint 23
## 1621 Pokljuka Sprint 23
## 1622 Pokljuka Sprint 23
## 1623 Pokljuka Sprint 23
## 1624 Pokljuka Sprint 23
## 1625 Pokljuka Sprint 23
## 1626 Pokljuka Sprint 23
## 1627 Pokljuka Sprint 23
## 1628 Pokljuka Sprint 23
## 1629 Pokljuka Sprint 23
## 1630 Pokljuka Sprint 23
## 1631 Pokljuka Sprint 23
## 1632 Pokljuka Sprint 23
## 1633 Pokljuka Sprint 23
## 1634 Pokljuka Sprint 23
## 1635 Pokljuka Sprint 23
## 1636 Pokljuka Sprint 23
## 1637 Pokljuka Sprint 23
## 1638 Pokljuka Sprint 23
## 1639 Pokljuka Sprint 23
## 1640 Pokljuka Sprint 23
## 1641 Pokljuka Sprint 23
## 1642 Pokljuka Sprint 23
## 1643 Pokljuka Sprint 23
## 1644 Pokljuka Mass start 21
## 1645 Pokljuka Mass start 21
## 1646 Pokljuka Mass start 21
## 1647 Pokljuka Mass start 21
## 1648 Pokljuka Mass start 21
## 1649 Pokljuka Mass start 21
## 1650 Pokljuka Mass start 21
## 1651 Pokljuka Mass start 21
## 1652 Pokljuka Mass start 21
## 1653 Pokljuka Mass start 21
## 1654 Pokljuka Mass start 21
## 1655 Pokljuka Mass start 21
## 1656 Pokljuka Mass start 21
## 1657 Pokljuka Mass start 21
## 1658 Pokljuka Mass start 21
## 1659 Pokljuka Mass start 21
## 1660 Pokljuka Mass start 21
## 1661 Pokljuka Mass start 21
## 1662 Pokljuka Mass start 21
## 1663 Pokljuka Mass start 21
## 1664 Pokljuka Mass start 21
## 1665 Pokljuka Mass start 21
## 1666 Pokljuka Mass start 21
## 1667 Pokljuka Mass start 21
## 1668 Pokljuka Mass start 21
## 1669 Pokljuka Mass start 21
## 1670 Pokljuka Mass start 21
## 1671 Pokljuka Mass start 21
## 1672 Pokljuka Mass start 21
## 1673 Pokljuka Mass start 21
## 1674 Pokljuka Pursuit 22
## 1675 Pokljuka Pursuit 22
## 1676 Pokljuka Pursuit 22
## 1677 Pokljuka Pursuit 22
## 1678 Pokljuka Pursuit 22
## 1679 Pokljuka Pursuit 22
## 1680 Pokljuka Pursuit 22
## 1681 Pokljuka Pursuit 22
## 1682 Pokljuka Pursuit 22
## 1683 Pokljuka Pursuit 22
## 1684 Pokljuka Pursuit 22
## 1685 Pokljuka Pursuit 22
## 1686 Pokljuka Pursuit 22
## 1687 Pokljuka Pursuit 22
## 1688 Pokljuka Pursuit 22
## 1689 Pokljuka Pursuit 22
## 1690 Pokljuka Pursuit 22
## 1691 Pokljuka Pursuit 22
## 1692 Pokljuka Pursuit 22
## 1693 Pokljuka Pursuit 22
## 1694 Pokljuka Pursuit 22
## 1695 Pokljuka Pursuit 22
## 1696 Pokljuka Pursuit 22
## 1697 Pokljuka Pursuit 22
## 1698 Pokljuka Pursuit 22
## 1699 Pokljuka Pursuit 22
## 1700 Pokljuka Pursuit 22
## 1701 Pokljuka Pursuit 22
## 1702 Pokljuka Pursuit 22
## 1703 Pokljuka Pursuit 22
## 1704 Pokljuka Pursuit 22
## 1705 Pokljuka Pursuit 22
## 1706 Pokljuka Pursuit 22
## 1707 Pokljuka Pursuit 22
## 1708 Pokljuka Pursuit 22
## 1709 Pokljuka Pursuit 22
## 1710 Pokljuka Pursuit 22
## 1711 Pokljuka Pursuit 22
## 1712 Pokljuka Pursuit 22
## 1713 Pokljuka Pursuit 22
## 1714 Pokljuka Pursuit 22
## 1715 Pokljuka Pursuit 22
## 1716 Pokljuka Pursuit 22
## 1717 Pokljuka Pursuit 22
## 1718 Pokljuka Pursuit 22
## 1719 Pokljuka Pursuit 22
## 1720 Pokljuka Pursuit 22
## 1721 Pokljuka Pursuit 22
## 1722 Pokljuka Pursuit 22
## 1723 Pokljuka Pursuit 22
## 1724 Pokljuka Pursuit 22
## 1725 Pokljuka Pursuit 22
## 1726 Pokljuka Pursuit 22
## 1727 Pokljuka Pursuit 22
## 1728 Pokljuka Pursuit 22
## 1729 Pokljuka Pursuit 22
## 1730 Pokljuka Pursuit 22
## 1731 Pokljuka Pursuit 22
## 1732 Pokljuka Pursuit 22
## 1733 Ruhpolding Sprint 25
## 1734 Ruhpolding Sprint 25
## 1735 Ruhpolding Sprint 25
## 1736 Ruhpolding Sprint 25
## 1737 Ruhpolding Sprint 25
## 1738 Ruhpolding Sprint 25
## 1739 Ruhpolding Sprint 25
## 1740 Ruhpolding Sprint 25
## 1741 Ruhpolding Sprint 25
## 1742 Ruhpolding Sprint 25
## 1743 Ruhpolding Sprint 25
## 1744 Ruhpolding Sprint 25
## 1745 Ruhpolding Sprint 25
## 1746 Ruhpolding Sprint 25
## 1747 Ruhpolding Sprint 25
## 1748 Ruhpolding Sprint 25
## 1749 Ruhpolding Sprint 25
## 1750 Ruhpolding Sprint 25
## 1751 Ruhpolding Sprint 25
## 1752 Ruhpolding Sprint 25
## 1753 Ruhpolding Sprint 25
## 1754 Ruhpolding Sprint 25
## 1755 Ruhpolding Sprint 25
## 1756 Ruhpolding Sprint 25
## 1757 Ruhpolding Sprint 25
## 1758 Ruhpolding Sprint 25
## 1759 Ruhpolding Sprint 25
## 1760 Ruhpolding Sprint 25
## 1761 Ruhpolding Sprint 25
## 1762 Ruhpolding Sprint 25
## 1763 Ruhpolding Sprint 25
## 1764 Ruhpolding Sprint 25
## 1765 Ruhpolding Sprint 25
## 1766 Ruhpolding Sprint 25
## 1767 Ruhpolding Sprint 25
## 1768 Ruhpolding Sprint 25
## 1769 Ruhpolding Sprint 25
## 1770 Ruhpolding Sprint 25
## 1771 Ruhpolding Sprint 25
## 1772 Ruhpolding Sprint 25
## 1773 Ruhpolding Sprint 25
## 1774 Ruhpolding Sprint 25
## 1775 Ruhpolding Sprint 25
## 1776 Ruhpolding Sprint 25
## 1777 Ruhpolding Sprint 25
## 1778 Ruhpolding Sprint 25
## 1779 Ruhpolding Sprint 25
## 1780 Ruhpolding Sprint 25
## 1781 Ruhpolding Sprint 25
## 1782 Ruhpolding Sprint 25
## 1783 Ruhpolding Sprint 25
## 1784 Ruhpolding Sprint 25
## 1785 Ruhpolding Sprint 25
## 1786 Ruhpolding Sprint 25
## 1787 Ruhpolding Sprint 25
## 1788 Ruhpolding Sprint 25
## 1789 Ruhpolding Sprint 25
## 1790 Ruhpolding Sprint 25
## 1791 Ruhpolding Sprint 25
## 1792 Ruhpolding Sprint 25
## 1793 Ruhpolding Sprint 25
## 1794 Ruhpolding Sprint 25
## 1795 Ruhpolding Sprint 25
## 1796 Ruhpolding Sprint 25
## 1797 Ruhpolding Sprint 25
## 1798 Ruhpolding Sprint 25
## 1799 Ruhpolding Sprint 25
## 1800 Ruhpolding Sprint 25
## 1801 Ruhpolding Sprint 25
## 1802 Ruhpolding Sprint 25
## 1803 Ruhpolding Sprint 25
## 1804 Ruhpolding Sprint 25
## 1805 Ruhpolding Sprint 25
## 1806 Ruhpolding Sprint 25
## 1807 Ruhpolding Sprint 25
## 1808 Ruhpolding Sprint 25
## 1809 Ruhpolding Sprint 25
## 1810 Ruhpolding Sprint 25
## 1811 Ruhpolding Sprint 25
## 1812 Ruhpolding Sprint 25
## 1813 Ruhpolding Sprint 25
## 1814 Ruhpolding Sprint 25
## 1815 Ruhpolding Sprint 25
## 1816 Ruhpolding Sprint 25
## 1817 Ruhpolding Sprint 25
## 1818 Ruhpolding Sprint 25
## 1819 Ruhpolding Sprint 25
## 1820 Ruhpolding Sprint 25
## 1821 Ruhpolding Sprint 25
## 1822 Ruhpolding Sprint 25
## 1823 Ruhpolding Sprint 25
## 1824 Ruhpolding Sprint 25
## 1825 Ruhpolding Sprint 25
## 1826 Ruhpolding Sprint 25
## 1827 Ruhpolding Sprint 25
## 1828 Ruhpolding Sprint 25
## 1829 Ruhpolding Sprint 25
## 1830 Ruhpolding Sprint 25
## 1831 Ruhpolding Sprint 25
## 1832 Ruhpolding Mass start 24
## 1833 Ruhpolding Mass start 24
## 1834 Ruhpolding Mass start 24
## 1835 Ruhpolding Mass start 24
## 1836 Ruhpolding Mass start 24
## 1837 Ruhpolding Mass start 24
## 1838 Ruhpolding Mass start 24
## 1839 Ruhpolding Mass start 24
## 1840 Ruhpolding Mass start 24
## 1841 Ruhpolding Mass start 24
## 1842 Ruhpolding Mass start 24
## 1843 Ruhpolding Mass start 24
## 1844 Ruhpolding Mass start 24
## 1845 Ruhpolding Mass start 24
## 1846 Ruhpolding Mass start 24
## 1847 Ruhpolding Mass start 24
## 1848 Ruhpolding Mass start 24
## 1849 Ruhpolding Mass start 24
## 1850 Ruhpolding Mass start 24
## 1851 Ruhpolding Mass start 24
## 1852 Ruhpolding Mass start 24
## 1853 Ruhpolding Mass start 24
## 1854 Ruhpolding Mass start 24
## 1855 Ruhpolding Mass start 24
## 1856 Ruhpolding Mass start 24
## 1857 Ruhpolding Mass start 24
## 1858 Ruhpolding Mass start 24
## 1859 Ruhpolding Mass start 24
## 1860 Ruhpolding Mass start 24
## 1861 Ruhpolding Mass start 24
## 1862 Anterselva Sprint 27
## 1863 Anterselva Sprint 27
## 1864 Anterselva Sprint 27
## 1865 Anterselva Sprint 27
## 1866 Anterselva Sprint 27
## 1867 Anterselva Sprint 27
## 1868 Anterselva Sprint 27
## 1869 Anterselva Sprint 27
## 1870 Anterselva Sprint 27
## 1871 Anterselva Sprint 27
## 1872 Anterselva Sprint 27
## 1873 Anterselva Sprint 27
## 1874 Anterselva Sprint 27
## 1875 Anterselva Sprint 27
## 1876 Anterselva Sprint 27
## 1877 Anterselva Sprint 27
## 1878 Anterselva Sprint 27
## 1879 Anterselva Sprint 27
## 1880 Anterselva Sprint 27
## 1881 Anterselva Sprint 27
## 1882 Anterselva Sprint 27
## 1883 Anterselva Sprint 27
## 1884 Anterselva Sprint 27
## 1885 Anterselva Sprint 27
## 1886 Anterselva Sprint 27
## 1887 Anterselva Sprint 27
## 1888 Anterselva Sprint 27
## 1889 Anterselva Sprint 27
## 1890 Anterselva Sprint 27
## 1891 Anterselva Sprint 27
## 1892 Anterselva Sprint 27
## 1893 Anterselva Sprint 27
## 1894 Anterselva Sprint 27
## 1895 Anterselva Sprint 27
## 1896 Anterselva Sprint 27
## 1897 Anterselva Sprint 27
## 1898 Anterselva Sprint 27
## 1899 Anterselva Sprint 27
## 1900 Anterselva Sprint 27
## 1901 Anterselva Sprint 27
## 1902 Anterselva Sprint 27
## 1903 Anterselva Sprint 27
## 1904 Anterselva Sprint 27
## 1905 Anterselva Sprint 27
## 1906 Anterselva Sprint 27
## 1907 Anterselva Sprint 27
## 1908 Anterselva Sprint 27
## 1909 Anterselva Sprint 27
## 1910 Anterselva Sprint 27
## 1911 Anterselva Sprint 27
## 1912 Anterselva Sprint 27
## 1913 Anterselva Sprint 27
## 1914 Anterselva Sprint 27
## 1915 Anterselva Sprint 27
## 1916 Anterselva Sprint 27
## 1917 Anterselva Sprint 27
## 1918 Anterselva Sprint 27
## 1919 Anterselva Sprint 27
## 1920 Anterselva Sprint 27
## 1921 Anterselva Sprint 27
## 1922 Anterselva Sprint 27
## 1923 Anterselva Sprint 27
## 1924 Anterselva Sprint 27
## 1925 Anterselva Sprint 27
## 1926 Anterselva Sprint 27
## 1927 Anterselva Sprint 27
## 1928 Anterselva Sprint 27
## 1929 Anterselva Sprint 27
## 1930 Anterselva Sprint 27
## 1931 Anterselva Sprint 27
## 1932 Anterselva Sprint 27
## 1933 Anterselva Sprint 27
## 1934 Anterselva Sprint 27
## 1935 Anterselva Sprint 27
## 1936 Anterselva Sprint 27
## 1937 Anterselva Sprint 27
## 1938 Anterselva Sprint 27
## 1939 Anterselva Sprint 27
## 1940 Anterselva Sprint 27
## 1941 Anterselva Sprint 27
## 1942 Anterselva Sprint 27
## 1943 Anterselva Sprint 27
## 1944 Anterselva Sprint 27
## 1945 Anterselva Sprint 27
## 1946 Anterselva Sprint 27
## 1947 Anterselva Sprint 27
## 1948 Anterselva Sprint 27
## 1949 Anterselva Sprint 27
## 1950 Anterselva Sprint 27
## 1951 Anterselva Sprint 27
## 1952 Anterselva Sprint 27
## 1953 Anterselva Sprint 27
## 1954 Anterselva Sprint 27
## 1955 Anterselva Sprint 27
## 1956 Anterselva Sprint 27
## 1957 Anterselva Sprint 27
## 1958 Anterselva Sprint 27
## 1959 Anterselva Sprint 27
## 1960 Anterselva Sprint 27
## 1961 Anterselva Sprint 27
## 1962 Anterselva Sprint 27
## 1963 Anterselva Sprint 27
## 1964 Anterselva Sprint 27
## 1965 Anterselva Sprint 27
## 1966 Anterselva Sprint 27
## 1967 Anterselva Sprint 27
## 1968 Anterselva Pursuit 26
## 1969 Anterselva Pursuit 26
## 1970 Anterselva Pursuit 26
## 1971 Anterselva Pursuit 26
## 1972 Anterselva Pursuit 26
## 1973 Anterselva Pursuit 26
## 1974 Anterselva Pursuit 26
## 1975 Anterselva Pursuit 26
## 1976 Anterselva Pursuit 26
## 1977 Anterselva Pursuit 26
## 1978 Anterselva Pursuit 26
## 1979 Anterselva Pursuit 26
## 1980 Anterselva Pursuit 26
## 1981 Anterselva Pursuit 26
## 1982 Anterselva Pursuit 26
## 1983 Anterselva Pursuit 26
## 1984 Anterselva Pursuit 26
## 1985 Anterselva Pursuit 26
## 1986 Anterselva Pursuit 26
## 1987 Anterselva Pursuit 26
## 1988 Anterselva Pursuit 26
## 1989 Anterselva Pursuit 26
## 1990 Anterselva Pursuit 26
## 1991 Anterselva Pursuit 26
## 1992 Anterselva Pursuit 26
## 1993 Anterselva Pursuit 26
## 1994 Anterselva Pursuit 26
## 1995 Anterselva Pursuit 26
## 1996 Anterselva Pursuit 26
## 1997 Anterselva Pursuit 26
## 1998 Anterselva Pursuit 26
## 1999 Anterselva Pursuit 26
## 2000 Anterselva Pursuit 26
## 2001 Anterselva Pursuit 26
## 2002 Anterselva Pursuit 26
## 2003 Anterselva Pursuit 26
## 2004 Anterselva Pursuit 26
## 2005 Anterselva Pursuit 26
## 2006 Anterselva Pursuit 26
## 2007 Anterselva Pursuit 26
## 2008 Anterselva Pursuit 26
## 2009 Anterselva Pursuit 26
## 2010 Anterselva Pursuit 26
## 2011 Anterselva Pursuit 26
## 2012 Anterselva Pursuit 26
## 2013 Anterselva Pursuit 26
## 2014 Anterselva Pursuit 26
## 2015 Anterselva Pursuit 26
## 2016 Anterselva Pursuit 26
## 2017 Anterselva Pursuit 26
## 2018 Anterselva Pursuit 26
## 2019 Anterselva Pursuit 26
## 2020 Canmore Sprint 29
## 2021 Canmore Sprint 29
## 2022 Canmore Sprint 29
## 2023 Canmore Sprint 29
## 2024 Canmore Sprint 29
## 2025 Canmore Sprint 29
## 2026 Canmore Sprint 29
## 2027 Canmore Sprint 29
## 2028 Canmore Sprint 29
## 2029 Canmore Sprint 29
## 2030 Canmore Sprint 29
## 2031 Canmore Sprint 29
## 2032 Canmore Sprint 29
## 2033 Canmore Sprint 29
## 2034 Canmore Sprint 29
## 2035 Canmore Sprint 29
## 2036 Canmore Sprint 29
## 2037 Canmore Sprint 29
## 2038 Canmore Sprint 29
## 2039 Canmore Sprint 29
## 2040 Canmore Sprint 29
## 2041 Canmore Sprint 29
## 2042 Canmore Sprint 29
## 2043 Canmore Sprint 29
## 2044 Canmore Sprint 29
## 2045 Canmore Sprint 29
## 2046 Canmore Sprint 29
## 2047 Canmore Sprint 29
## 2048 Canmore Sprint 29
## 2049 Canmore Sprint 29
## 2050 Canmore Sprint 29
## 2051 Canmore Sprint 29
## 2052 Canmore Sprint 29
## 2053 Canmore Sprint 29
## 2054 Canmore Sprint 29
## 2055 Canmore Sprint 29
## 2056 Canmore Sprint 29
## 2057 Canmore Sprint 29
## 2058 Canmore Sprint 29
## 2059 Canmore Sprint 29
## 2060 Canmore Sprint 29
## 2061 Canmore Sprint 29
## 2062 Canmore Sprint 29
## 2063 Canmore Sprint 29
## 2064 Canmore Sprint 29
## 2065 Canmore Sprint 29
## 2066 Canmore Sprint 29
## 2067 Canmore Sprint 29
## 2068 Canmore Sprint 29
## 2069 Canmore Sprint 29
## 2070 Canmore Sprint 29
## 2071 Canmore Sprint 29
## 2072 Canmore Sprint 29
## 2073 Canmore Sprint 29
## 2074 Canmore Sprint 29
## 2075 Canmore Sprint 29
## 2076 Canmore Sprint 29
## 2077 Canmore Sprint 29
## 2078 Canmore Sprint 29
## 2079 Canmore Sprint 29
## 2080 Canmore Sprint 29
## 2081 Canmore Sprint 29
## 2082 Canmore Sprint 29
## 2083 Canmore Sprint 29
## 2084 Canmore Sprint 29
## 2085 Canmore Sprint 29
## 2086 Canmore Sprint 29
## 2087 Canmore Sprint 29
## 2088 Canmore Sprint 29
## 2089 Canmore Sprint 29
## 2090 Canmore Sprint 29
## 2091 Canmore Sprint 29
## 2092 Canmore Sprint 29
## 2093 Canmore Sprint 29
## 2094 Canmore Sprint 29
## 2095 Canmore Sprint 29
## 2096 Canmore Sprint 29
## 2097 Canmore Sprint 29
## 2098 Canmore Sprint 29
## 2099 Canmore Sprint 29
## 2100 Canmore Sprint 29
## 2101 Canmore Sprint 29
## 2102 Canmore Sprint 29
## 2103 Canmore Sprint 29
## 2104 Canmore Sprint 29
## 2105 Canmore Sprint 29
## 2106 Canmore Sprint 29
## 2107 Canmore Mass start 28
## 2108 Canmore Mass start 28
## 2109 Canmore Mass start 28
## 2110 Canmore Mass start 28
## 2111 Canmore Mass start 28
## 2112 Canmore Mass start 28
## 2113 Canmore Mass start 28
## 2114 Canmore Mass start 28
## 2115 Canmore Mass start 28
## 2116 Canmore Mass start 28
## 2117 Canmore Mass start 28
## 2118 Canmore Mass start 28
## 2119 Canmore Mass start 28
## 2120 Canmore Mass start 28
## 2121 Canmore Mass start 28
## 2122 Canmore Mass start 28
## 2123 Canmore Mass start 28
## 2124 Canmore Mass start 28
## 2125 Canmore Mass start 28
## 2126 Canmore Mass start 28
## 2127 Canmore Mass start 28
## 2128 Canmore Mass start 28
## 2129 Canmore Mass start 28
## 2130 Canmore Mass start 28
## 2131 Canmore Mass start 28
## 2132 Canmore Mass start 28
## 2133 Canmore Mass start 28
## 2134 Canmore Mass start 28
## 2135 Canmore Mass start 28
## 2136 Canmore Mass start 28
## 2137 Hochfilzen Sprint 31
## 2138 Hochfilzen Sprint 31
## 2139 Hochfilzen Sprint 31
## 2140 Hochfilzen Sprint 31
## 2141 Hochfilzen Sprint 31
## 2142 Hochfilzen Sprint 31
## 2143 Hochfilzen Sprint 31
## 2144 Hochfilzen Sprint 31
## 2145 Hochfilzen Sprint 31
## 2146 Hochfilzen Sprint 31
## 2147 Hochfilzen Sprint 31
## 2148 Hochfilzen Sprint 31
## 2149 Hochfilzen Sprint 31
## 2150 Hochfilzen Sprint 31
## 2151 Hochfilzen Sprint 31
## 2152 Hochfilzen Sprint 31
## 2153 Hochfilzen Sprint 31
## 2154 Hochfilzen Sprint 31
## 2155 Hochfilzen Sprint 31
## 2156 Hochfilzen Sprint 31
## 2157 Hochfilzen Sprint 31
## 2158 Hochfilzen Sprint 31
## 2159 Hochfilzen Sprint 31
## 2160 Hochfilzen Sprint 31
## 2161 Hochfilzen Sprint 31
## 2162 Hochfilzen Sprint 31
## 2163 Hochfilzen Sprint 31
## 2164 Hochfilzen Sprint 31
## 2165 Hochfilzen Sprint 31
## 2166 Hochfilzen Sprint 31
## 2167 Hochfilzen Sprint 31
## 2168 Hochfilzen Sprint 31
## 2169 Hochfilzen Sprint 31
## 2170 Hochfilzen Sprint 31
## 2171 Hochfilzen Sprint 31
## 2172 Hochfilzen Sprint 31
## 2173 Hochfilzen Sprint 31
## 2174 Hochfilzen Sprint 31
## 2175 Hochfilzen Sprint 31
## 2176 Hochfilzen Sprint 31
## 2177 Hochfilzen Sprint 31
## 2178 Hochfilzen Sprint 31
## 2179 Hochfilzen Sprint 31
## 2180 Hochfilzen Sprint 31
## 2181 Hochfilzen Sprint 31
## 2182 Hochfilzen Sprint 31
## 2183 Hochfilzen Sprint 31
## 2184 Hochfilzen Sprint 31
## 2185 Hochfilzen Sprint 31
## 2186 Hochfilzen Sprint 31
## 2187 Hochfilzen Sprint 31
## 2188 Hochfilzen Sprint 31
## 2189 Hochfilzen Sprint 31
## 2190 Hochfilzen Sprint 31
## 2191 Hochfilzen Sprint 31
## 2192 Hochfilzen Sprint 31
## 2193 Hochfilzen Sprint 31
## 2194 Hochfilzen Sprint 31
## 2195 Hochfilzen Sprint 31
## 2196 Hochfilzen Sprint 31
## 2197 Hochfilzen Sprint 31
## 2198 Hochfilzen Sprint 31
## 2199 Hochfilzen Sprint 31
## 2200 Hochfilzen Sprint 31
## 2201 Hochfilzen Sprint 31
## 2202 Hochfilzen Sprint 31
## 2203 Hochfilzen Sprint 31
## 2204 Hochfilzen Sprint 31
## 2205 Hochfilzen Sprint 31
## 2206 Hochfilzen Sprint 31
## 2207 Hochfilzen Sprint 31
## 2208 Hochfilzen Sprint 31
## 2209 Hochfilzen Sprint 31
## 2210 Hochfilzen Sprint 31
## 2211 Hochfilzen Sprint 31
## 2212 Hochfilzen Sprint 31
## 2213 Hochfilzen Sprint 31
## 2214 Hochfilzen Sprint 31
## 2215 Hochfilzen Sprint 31
## 2216 Hochfilzen Sprint 31
## 2217 Hochfilzen Sprint 31
## 2218 Hochfilzen Sprint 31
## 2219 Hochfilzen Sprint 31
## 2220 Hochfilzen Sprint 31
## 2221 Hochfilzen Sprint 31
## 2222 Hochfilzen Sprint 31
## 2223 Hochfilzen Sprint 31
## 2224 Hochfilzen Sprint 31
## 2225 Hochfilzen Sprint 31
## 2226 Hochfilzen Sprint 31
## 2227 Hochfilzen Sprint 31
## 2228 Hochfilzen Sprint 31
## 2229 Hochfilzen Sprint 31
## 2230 Hochfilzen Sprint 31
## 2231 Hochfilzen Sprint 31
## 2232 Hochfilzen Sprint 31
## 2233 Hochfilzen Sprint 31
## 2234 Hochfilzen Sprint 31
## 2235 Hochfilzen Sprint 31
## 2236 Hochfilzen Sprint 31
## 2237 Hochfilzen Sprint 31
## 2238 Hochfilzen Sprint 31
## 2239 Hochfilzen Sprint 31
## 2240 Hochfilzen Sprint 31
## 2241 Hochfilzen Sprint 31
## 2242 Hochfilzen Sprint 31
## 2243 Hochfilzen Sprint 31
## 2244 Hochfilzen Sprint 31
## 2245 Hochfilzen Pursuit 30
## 2246 Hochfilzen Pursuit 30
## 2247 Hochfilzen Pursuit 30
## 2248 Hochfilzen Pursuit 30
## 2249 Hochfilzen Pursuit 30
## 2250 Hochfilzen Pursuit 30
## 2251 Hochfilzen Pursuit 30
## 2252 Hochfilzen Pursuit 30
## 2253 Hochfilzen Pursuit 30
## 2254 Hochfilzen Pursuit 30
## 2255 Hochfilzen Pursuit 30
## 2256 Hochfilzen Pursuit 30
## 2257 Hochfilzen Pursuit 30
## 2258 Hochfilzen Pursuit 30
## 2259 Hochfilzen Pursuit 30
## 2260 Hochfilzen Pursuit 30
## 2261 Hochfilzen Pursuit 30
## 2262 Hochfilzen Pursuit 30
## 2263 Hochfilzen Pursuit 30
## 2264 Hochfilzen Pursuit 30
## 2265 Hochfilzen Pursuit 30
## 2266 Hochfilzen Pursuit 30
## 2267 Hochfilzen Pursuit 30
## 2268 Hochfilzen Pursuit 30
## 2269 Hochfilzen Pursuit 30
## 2270 Hochfilzen Pursuit 30
## 2271 Hochfilzen Pursuit 30
## 2272 Hochfilzen Pursuit 30
## 2273 Hochfilzen Pursuit 30
## 2274 Hochfilzen Pursuit 30
## 2275 Hochfilzen Pursuit 30
## 2276 Hochfilzen Pursuit 30
## 2277 Hochfilzen Pursuit 30
## 2278 Hochfilzen Pursuit 30
## 2279 Hochfilzen Pursuit 30
## 2280 Hochfilzen Pursuit 30
## 2281 Hochfilzen Pursuit 30
## 2282 Hochfilzen Pursuit 30
## 2283 Hochfilzen Pursuit 30
## 2284 Hochfilzen Pursuit 30
## 2285 Hochfilzen Pursuit 30
## 2286 Hochfilzen Pursuit 30
## 2287 Hochfilzen Pursuit 30
## 2288 Hochfilzen Pursuit 30
## 2289 Hochfilzen Pursuit 30
## 2290 Hochfilzen Pursuit 30
## 2291 Hochfilzen Pursuit 30
## 2292 Hochfilzen Pursuit 30
## 2293 Hochfilzen Pursuit 30
## 2294 Hochfilzen Pursuit 30
## 2295 Hochfilzen Pursuit 30
## 2296 Hochfilzen Pursuit 30
## 2297 Hochfilzen Pursuit 30
## 2298 Hochfilzen Pursuit 30
## 2299 Hochfilzen Pursuit 30
## 2300 Hochfilzen Pursuit 30
## 2301 Hochfilzen Pursuit 30
## 2302 Hochfilzen Pursuit 30
## 2303 Hochfilzen Pursuit 30
## 2304 Khanty-Mansiysk Sprint 33
## 2305 Khanty-Mansiysk Sprint 33
## 2306 Khanty-Mansiysk Sprint 33
## 2307 Khanty-Mansiysk Sprint 33
## 2308 Khanty-Mansiysk Sprint 33
## 2309 Khanty-Mansiysk Sprint 33
## 2310 Khanty-Mansiysk Sprint 33
## 2311 Khanty-Mansiysk Sprint 33
## 2312 Khanty-Mansiysk Sprint 33
## 2313 Khanty-Mansiysk Sprint 33
## 2314 Khanty-Mansiysk Sprint 33
## 2315 Khanty-Mansiysk Sprint 33
## 2316 Khanty-Mansiysk Sprint 33
## 2317 Khanty-Mansiysk Sprint 33
## 2318 Khanty-Mansiysk Sprint 33
## 2319 Khanty-Mansiysk Sprint 33
## 2320 Khanty-Mansiysk Sprint 33
## 2321 Khanty-Mansiysk Sprint 33
## 2322 Khanty-Mansiysk Sprint 33
## 2323 Khanty-Mansiysk Sprint 33
## 2324 Khanty-Mansiysk Sprint 33
## 2325 Khanty-Mansiysk Sprint 33
## 2326 Khanty-Mansiysk Sprint 33
## 2327 Khanty-Mansiysk Sprint 33
## 2328 Khanty-Mansiysk Sprint 33
## 2329 Khanty-Mansiysk Sprint 33
## 2330 Khanty-Mansiysk Sprint 33
## 2331 Khanty-Mansiysk Sprint 33
## 2332 Khanty-Mansiysk Sprint 33
## 2333 Khanty-Mansiysk Sprint 33
## 2334 Khanty-Mansiysk Sprint 33
## 2335 Khanty-Mansiysk Sprint 33
## 2336 Khanty-Mansiysk Sprint 33
## 2337 Khanty-Mansiysk Sprint 33
## 2338 Khanty-Mansiysk Sprint 33
## 2339 Khanty-Mansiysk Sprint 33
## 2340 Khanty-Mansiysk Sprint 33
## 2341 Khanty-Mansiysk Sprint 33
## 2342 Khanty-Mansiysk Sprint 33
## 2343 Khanty-Mansiysk Sprint 33
## 2344 Khanty-Mansiysk Sprint 33
## 2345 Khanty-Mansiysk Sprint 33
## 2346 Khanty-Mansiysk Sprint 33
## 2347 Khanty-Mansiysk Sprint 33
## 2348 Khanty-Mansiysk Sprint 33
## 2349 Khanty-Mansiysk Sprint 33
## 2350 Khanty-Mansiysk Sprint 33
## 2351 Khanty-Mansiysk Sprint 33
## 2352 Khanty-Mansiysk Sprint 33
## 2353 Khanty-Mansiysk Sprint 33
## 2354 Khanty-Mansiysk Sprint 33
## 2355 Khanty-Mansiysk Sprint 33
## 2356 Khanty-Mansiysk Sprint 33
## 2357 Khanty-Mansiysk Sprint 33
## 2358 Khanty-Mansiysk Sprint 33
## 2359 Khanty-Mansiysk Sprint 33
## 2360 Khanty-Mansiysk Sprint 33
## 2361 Khanty-Mansiysk Sprint 33
## 2362 Khanty-Mansiysk Sprint 33
## 2363 Khanty-Mansiysk Sprint 33
## 2364 Khanty-Mansiysk Sprint 33
## 2365 Khanty-Mansiysk Sprint 33
## 2366 Khanty-Mansiysk Sprint 33
## 2367 Khanty-Mansiysk Sprint 33
## 2368 Khanty-Mansiysk Sprint 33
## 2369 Khanty-Mansiysk Sprint 33
## 2370 Khanty-Mansiysk Sprint 33
## 2371 Khanty-Mansiysk Sprint 33
## 2372 Khanty-Mansiysk Sprint 33
## 2373 Khanty-Mansiysk Sprint 33
## 2374 Khanty-Mansiysk Sprint 33
## 2375 Khanty-Mansiysk Sprint 33
## 2376 Khanty-Mansiysk Sprint 33
## 2377 Khanty-Mansiysk Sprint 33
## 2378 Khanty-Mansiysk Sprint 33
## 2379 Khanty-Mansiysk Sprint 33
## 2380 Khanty-Mansiysk Sprint 33
## 2381 Khanty-Mansiysk Sprint 33
## 2382 Khanty-Mansiysk Sprint 33
## 2383 Khanty-Mansiysk Sprint 33
## 2384 Khanty-Mansiysk Sprint 33
## 2385 Khanty-Mansiysk Sprint 33
## 2386 Khanty-Mansiysk Sprint 33
## 2387 Khanty-Mansiysk Sprint 33
## 2388 Khanty-Mansiysk Pursuit 32
## 2389 Khanty-Mansiysk Pursuit 32
## 2390 Khanty-Mansiysk Pursuit 32
## 2391 Khanty-Mansiysk Pursuit 32
## 2392 Khanty-Mansiysk Pursuit 32
## 2393 Khanty-Mansiysk Pursuit 32
## 2394 Khanty-Mansiysk Pursuit 32
## 2395 Khanty-Mansiysk Pursuit 32
## 2396 Khanty-Mansiysk Pursuit 32
## 2397 Khanty-Mansiysk Pursuit 32
## 2398 Khanty-Mansiysk Pursuit 32
## 2399 Khanty-Mansiysk Pursuit 32
## 2400 Khanty-Mansiysk Pursuit 32
## 2401 Khanty-Mansiysk Pursuit 32
## 2402 Khanty-Mansiysk Pursuit 32
## 2403 Khanty-Mansiysk Pursuit 32
## 2404 Khanty-Mansiysk Pursuit 32
## 2405 Khanty-Mansiysk Pursuit 32
## 2406 Khanty-Mansiysk Pursuit 32
## 2407 Khanty-Mansiysk Pursuit 32
## 2408 Khanty-Mansiysk Pursuit 32
## 2409 Khanty-Mansiysk Pursuit 32
## 2410 Khanty-Mansiysk Pursuit 32
## 2411 Khanty-Mansiysk Pursuit 32
## 2412 Khanty-Mansiysk Pursuit 32
## 2413 Khanty-Mansiysk Pursuit 32
## 2414 Khanty-Mansiysk Pursuit 32
## 2415 Khanty-Mansiysk Pursuit 32
## 2416 Khanty-Mansiysk Pursuit 32
## 2417 Khanty-Mansiysk Pursuit 32
## 2418 Khanty-Mansiysk Pursuit 32
## 2419 Khanty-Mansiysk Pursuit 32
## 2420 Khanty-Mansiysk Pursuit 32
## 2421 Khanty-Mansiysk Pursuit 32
## 2422 Khanty-Mansiysk Pursuit 32
## 2423 Khanty-Mansiysk Pursuit 32
## 2424 Khanty-Mansiysk Pursuit 32
## 2425 Khanty-Mansiysk Pursuit 32
## 2426 Khanty-Mansiysk Pursuit 32
## 2427 Khanty-Mansiysk Pursuit 32
## 2428 Khanty-Mansiysk Pursuit 32
## 2429 Khanty-Mansiysk Pursuit 32
## 2430 Khanty-Mansiysk Pursuit 32
## 2431 Khanty-Mansiysk Pursuit 32
## 2432 Khanty-Mansiysk Pursuit 32
## 2433 Khanty-Mansiysk Pursuit 32
## 2434 Khanty-Mansiysk Pursuit 32
## 2435 Khanty-Mansiysk Pursuit 32
## 2436 Khanty-Mansiysk Pursuit 32
## 2437 Khanty-Mansiysk Pursuit 32
## 2438 Khanty-Mansiysk Pursuit 32
## 2439 Khanty-Mansiysk Pursuit 32
## 2440 Khanty-Mansiysk Pursuit 32
## 2441 Oestersund Sprint 36
## 2442 Oestersund Sprint 36
## 2443 Oestersund Sprint 36
## 2444 Oestersund Sprint 36
## 2445 Oestersund Sprint 36
## 2446 Oestersund Sprint 36
## 2447 Oestersund Sprint 36
## 2448 Oestersund Sprint 36
## 2449 Oestersund Sprint 36
## 2450 Oestersund Sprint 36
## 2451 Oestersund Sprint 36
## 2452 Oestersund Sprint 36
## 2453 Oestersund Sprint 36
## 2454 Oestersund Sprint 36
## 2455 Oestersund Sprint 36
## 2456 Oestersund Sprint 36
## 2457 Oestersund Sprint 36
## 2458 Oestersund Sprint 36
## 2459 Oestersund Sprint 36
## 2460 Oestersund Sprint 36
## 2461 Oestersund Sprint 36
## 2462 Oestersund Sprint 36
## 2463 Oestersund Sprint 36
## 2464 Oestersund Sprint 36
## 2465 Oestersund Sprint 36
## 2466 Oestersund Sprint 36
## 2467 Oestersund Sprint 36
## 2468 Oestersund Sprint 36
## 2469 Oestersund Sprint 36
## 2470 Oestersund Sprint 36
## 2471 Oestersund Sprint 36
## 2472 Oestersund Sprint 36
## 2473 Oestersund Sprint 36
## 2474 Oestersund Sprint 36
## 2475 Oestersund Sprint 36
## 2476 Oestersund Sprint 36
## 2477 Oestersund Sprint 36
## 2478 Oestersund Sprint 36
## 2479 Oestersund Sprint 36
## 2480 Oestersund Sprint 36
## 2481 Oestersund Sprint 36
## 2482 Oestersund Sprint 36
## 2483 Oestersund Sprint 36
## 2484 Oestersund Sprint 36
## 2485 Oestersund Sprint 36
## 2486 Oestersund Sprint 36
## 2487 Oestersund Sprint 36
## 2488 Oestersund Sprint 36
## 2489 Oestersund Sprint 36
## 2490 Oestersund Sprint 36
## 2491 Oestersund Sprint 36
## 2492 Oestersund Sprint 36
## 2493 Oestersund Sprint 36
## 2494 Oestersund Sprint 36
## 2495 Oestersund Sprint 36
## 2496 Oestersund Sprint 36
## 2497 Oestersund Sprint 36
## 2498 Oestersund Sprint 36
## 2499 Oestersund Sprint 36
## 2500 Oestersund Sprint 36
## 2501 Oestersund Sprint 36
## 2502 Oestersund Sprint 36
## 2503 Oestersund Sprint 36
## 2504 Oestersund Sprint 36
## 2505 Oestersund Sprint 36
## 2506 Oestersund Sprint 36
## 2507 Oestersund Sprint 36
## 2508 Oestersund Sprint 36
## 2509 Oestersund Sprint 36
## 2510 Oestersund Sprint 36
## 2511 Oestersund Sprint 36
## 2512 Oestersund Sprint 36
## 2513 Oestersund Sprint 36
## 2514 Oestersund Sprint 36
## 2515 Oestersund Sprint 36
## 2516 Oestersund Sprint 36
## 2517 Oestersund Sprint 36
## 2518 Oestersund Sprint 36
## 2519 Oestersund Sprint 36
## 2520 Oestersund Sprint 36
## 2521 Oestersund Sprint 36
## 2522 Oestersund Sprint 36
## 2523 Oestersund Sprint 36
## 2524 Oestersund Sprint 36
## 2525 Oestersund Sprint 36
## 2526 Oestersund Sprint 36
## 2527 Oestersund Sprint 36
## 2528 Oestersund Sprint 36
## 2529 Oestersund Sprint 36
## 2530 Oestersund Sprint 36
## 2531 Oestersund Sprint 36
## 2532 Oestersund Sprint 36
## 2533 Oestersund Sprint 36
## 2534 Oestersund Sprint 36
## 2535 Oestersund Sprint 36
## 2536 Oestersund Sprint 36
## 2537 Oestersund Sprint 36
## 2538 Oestersund Sprint 36
## 2539 Oestersund Sprint 36
## 2540 Oestersund Sprint 36
## 2541 Oestersund Sprint 36
## 2542 Oestersund Sprint 36
## 2543 Oestersund Sprint 36
## 2544 Oestersund Individual 34
## 2545 Oestersund Individual 34
## 2546 Oestersund Individual 34
## 2547 Oestersund Individual 34
## 2548 Oestersund Individual 34
## 2549 Oestersund Individual 34
## 2550 Oestersund Individual 34
## 2551 Oestersund Individual 34
## 2552 Oestersund Individual 34
## 2553 Oestersund Individual 34
## 2554 Oestersund Individual 34
## 2555 Oestersund Individual 34
## 2556 Oestersund Individual 34
## 2557 Oestersund Individual 34
## 2558 Oestersund Individual 34
## 2559 Oestersund Individual 34
## 2560 Oestersund Individual 34
## 2561 Oestersund Individual 34
## 2562 Oestersund Individual 34
## 2563 Oestersund Individual 34
## 2564 Oestersund Individual 34
## 2565 Oestersund Individual 34
## 2566 Oestersund Individual 34
## 2567 Oestersund Individual 34
## 2568 Oestersund Individual 34
## 2569 Oestersund Individual 34
## 2570 Oestersund Individual 34
## 2571 Oestersund Individual 34
## 2572 Oestersund Individual 34
## 2573 Oestersund Individual 34
## 2574 Oestersund Individual 34
## 2575 Oestersund Individual 34
## 2576 Oestersund Individual 34
## 2577 Oestersund Individual 34
## 2578 Oestersund Individual 34
## 2579 Oestersund Individual 34
## 2580 Oestersund Individual 34
## 2581 Oestersund Individual 34
## 2582 Oestersund Individual 34
## 2583 Oestersund Individual 34
## 2584 Oestersund Individual 34
## 2585 Oestersund Individual 34
## 2586 Oestersund Individual 34
## 2587 Oestersund Individual 34
## 2588 Oestersund Individual 34
## 2589 Oestersund Individual 34
## 2590 Oestersund Individual 34
## 2591 Oestersund Individual 34
## 2592 Oestersund Individual 34
## 2593 Oestersund Individual 34
## 2594 Oestersund Individual 34
## 2595 Oestersund Individual 34
## 2596 Oestersund Individual 34
## 2597 Oestersund Individual 34
## 2598 Oestersund Individual 34
## 2599 Oestersund Individual 34
## 2600 Oestersund Individual 34
## 2601 Oestersund Individual 34
## 2602 Oestersund Individual 34
## 2603 Oestersund Individual 34
## 2604 Oestersund Individual 34
## 2605 Oestersund Individual 34
## 2606 Oestersund Individual 34
## 2607 Oestersund Individual 34
## 2608 Oestersund Individual 34
## 2609 Oestersund Individual 34
## 2610 Oestersund Individual 34
## 2611 Oestersund Individual 34
## 2612 Oestersund Individual 34
## 2613 Oestersund Individual 34
## 2614 Oestersund Individual 34
## 2615 Oestersund Individual 34
## 2616 Oestersund Individual 34
## 2617 Oestersund Individual 34
## 2618 Oestersund Individual 34
## 2619 Oestersund Individual 34
## 2620 Oestersund Individual 34
## 2621 Oestersund Individual 34
## 2622 Oestersund Individual 34
## 2623 Oestersund Individual 34
## 2624 Oestersund Individual 34
## 2625 Oestersund Individual 34
## 2626 Oestersund Individual 34
## 2627 Oestersund Individual 34
## 2628 Oestersund Individual 34
## 2629 Oestersund Individual 34
## 2630 Oestersund Individual 34
## 2631 Oestersund Individual 34
## 2632 Oestersund Individual 34
## 2633 Oestersund Individual 34
## 2634 Oestersund Individual 34
## 2635 Oestersund Individual 34
## 2636 Oestersund Individual 34
## 2637 Oestersund Individual 34
## 2638 Oestersund Individual 34
## 2639 Oestersund Individual 34
## 2640 Oestersund Individual 34
## 2641 Oestersund Individual 34
## 2642 Oestersund Individual 34
## 2643 Oestersund Individual 34
## 2644 Oestersund Individual 34
## 2645 Oestersund Individual 34
## 2646 Oestersund Individual 34
## 2647 Oestersund Individual 34
## 2648 Oestersund Pursuit 35
## 2649 Oestersund Pursuit 35
## 2650 Oestersund Pursuit 35
## 2651 Oestersund Pursuit 35
## 2652 Oestersund Pursuit 35
## 2653 Oestersund Pursuit 35
## 2654 Oestersund Pursuit 35
## 2655 Oestersund Pursuit 35
## 2656 Oestersund Pursuit 35
## 2657 Oestersund Pursuit 35
## 2658 Oestersund Pursuit 35
## 2659 Oestersund Pursuit 35
## 2660 Oestersund Pursuit 35
## 2661 Oestersund Pursuit 35
## 2662 Oestersund Pursuit 35
## 2663 Oestersund Pursuit 35
## 2664 Oestersund Pursuit 35
## 2665 Oestersund Pursuit 35
## 2666 Oestersund Pursuit 35
## 2667 Oestersund Pursuit 35
## 2668 Oestersund Pursuit 35
## 2669 Oestersund Pursuit 35
## 2670 Oestersund Pursuit 35
## 2671 Oestersund Pursuit 35
## 2672 Oestersund Pursuit 35
## 2673 Oestersund Pursuit 35
## 2674 Oestersund Pursuit 35
## 2675 Oestersund Pursuit 35
## 2676 Oestersund Pursuit 35
## 2677 Oestersund Pursuit 35
## 2678 Oestersund Pursuit 35
## 2679 Oestersund Pursuit 35
## 2680 Oestersund Pursuit 35
## 2681 Oestersund Pursuit 35
## 2682 Oestersund Pursuit 35
## 2683 Oestersund Pursuit 35
## 2684 Oestersund Pursuit 35
## 2685 Oestersund Pursuit 35
## 2686 Oestersund Pursuit 35
## 2687 Oestersund Pursuit 35
## 2688 Oestersund Pursuit 35
## 2689 Oestersund Pursuit 35
## 2690 Oestersund Pursuit 35
## 2691 Oestersund Pursuit 35
## 2692 Oestersund Pursuit 35
## 2693 Oestersund Pursuit 35
## 2694 Oestersund Pursuit 35
## 2695 Oestersund Pursuit 35
## 2696 Oestersund Pursuit 35
## 2697 Oestersund Pursuit 35
## 2698 Oestersund Pursuit 35
## 2699 Oestersund Pursuit 35
## 2700 Oestersund Pursuit 35
## 2701 Oestersund Pursuit 35
## 2702 Oestersund Pursuit 35
## 2703 Oestersund Pursuit 35
## 2704 Oestersund Pursuit 35
## 2705 Oestersund Pursuit 35
## 2706 Oestersund Pursuit 35
## 2707 Oestersund Pursuit 35
## 2708 Oslo_Holmenkollen Sprint 40
## 2709 Oslo_Holmenkollen Sprint 40
## 2710 Oslo_Holmenkollen Sprint 40
## 2711 Oslo_Holmenkollen Sprint 40
## 2712 Oslo_Holmenkollen Sprint 40
## 2713 Oslo_Holmenkollen Sprint 40
## 2714 Oslo_Holmenkollen Sprint 40
## 2715 Oslo_Holmenkollen Sprint 40
## 2716 Oslo_Holmenkollen Sprint 40
## 2717 Oslo_Holmenkollen Sprint 40
## 2718 Oslo_Holmenkollen Sprint 40
## 2719 Oslo_Holmenkollen Sprint 40
## 2720 Oslo_Holmenkollen Sprint 40
## 2721 Oslo_Holmenkollen Sprint 40
## 2722 Oslo_Holmenkollen Sprint 40
## 2723 Oslo_Holmenkollen Sprint 40
## 2724 Oslo_Holmenkollen Sprint 40
## 2725 Oslo_Holmenkollen Sprint 40
## 2726 Oslo_Holmenkollen Sprint 40
## 2727 Oslo_Holmenkollen Sprint 40
## 2728 Oslo_Holmenkollen Sprint 40
## 2729 Oslo_Holmenkollen Sprint 40
## 2730 Oslo_Holmenkollen Sprint 40
## 2731 Oslo_Holmenkollen Sprint 40
## 2732 Oslo_Holmenkollen Sprint 40
## 2733 Oslo_Holmenkollen Sprint 40
## 2734 Oslo_Holmenkollen Sprint 40
## 2735 Oslo_Holmenkollen Sprint 40
## 2736 Oslo_Holmenkollen Sprint 40
## 2737 Oslo_Holmenkollen Sprint 40
## 2738 Oslo_Holmenkollen Sprint 40
## 2739 Oslo_Holmenkollen Sprint 40
## 2740 Oslo_Holmenkollen Sprint 40
## 2741 Oslo_Holmenkollen Sprint 40
## 2742 Oslo_Holmenkollen Sprint 40
## 2743 Oslo_Holmenkollen Sprint 40
## 2744 Oslo_Holmenkollen Sprint 40
## 2745 Oslo_Holmenkollen Sprint 40
## 2746 Oslo_Holmenkollen Sprint 40
## 2747 Oslo_Holmenkollen Sprint 40
## 2748 Oslo_Holmenkollen Sprint 40
## 2749 Oslo_Holmenkollen Sprint 40
## 2750 Oslo_Holmenkollen Sprint 40
## 2751 Oslo_Holmenkollen Sprint 40
## 2752 Oslo_Holmenkollen Sprint 40
## 2753 Oslo_Holmenkollen Sprint 40
## 2754 Oslo_Holmenkollen Sprint 40
## 2755 Oslo_Holmenkollen Sprint 40
## 2756 Oslo_Holmenkollen Sprint 40
## 2757 Oslo_Holmenkollen Sprint 40
## 2758 Oslo_Holmenkollen Sprint 40
## 2759 Oslo_Holmenkollen Sprint 40
## 2760 Oslo_Holmenkollen Sprint 40
## 2761 Oslo_Holmenkollen Sprint 40
## 2762 Oslo_Holmenkollen Sprint 40
## 2763 Oslo_Holmenkollen Sprint 40
## 2764 Oslo_Holmenkollen Sprint 40
## 2765 Oslo_Holmenkollen Sprint 40
## 2766 Oslo_Holmenkollen Sprint 40
## 2767 Oslo_Holmenkollen Sprint 40
## 2768 Oslo_Holmenkollen Sprint 40
## 2769 Oslo_Holmenkollen Sprint 40
## 2770 Oslo_Holmenkollen Sprint 40
## 2771 Oslo_Holmenkollen Sprint 40
## 2772 Oslo_Holmenkollen Sprint 40
## 2773 Oslo_Holmenkollen Sprint 40
## 2774 Oslo_Holmenkollen Sprint 40
## 2775 Oslo_Holmenkollen Sprint 40
## 2776 Oslo_Holmenkollen Sprint 40
## 2777 Oslo_Holmenkollen Sprint 40
## 2778 Oslo_Holmenkollen Sprint 40
## 2779 Oslo_Holmenkollen Sprint 40
## 2780 Oslo_Holmenkollen Sprint 40
## 2781 Oslo_Holmenkollen Sprint 40
## 2782 Oslo_Holmenkollen Sprint 40
## 2783 Oslo_Holmenkollen Sprint 40
## 2784 Oslo_Holmenkollen Sprint 40
## 2785 Oslo_Holmenkollen Sprint 40
## 2786 Oslo_Holmenkollen Sprint 40
## 2787 Oslo_Holmenkollen Sprint 40
## 2788 Oslo_Holmenkollen Sprint 40
## 2789 Oslo_Holmenkollen Sprint 40
## 2790 Oslo_Holmenkollen Sprint 40
## 2791 Oslo_Holmenkollen Sprint 40
## 2792 Oslo_Holmenkollen Sprint 40
## 2793 Oslo_Holmenkollen Sprint 40
## 2794 Oslo_Holmenkollen Sprint 40
## 2795 Oslo_Holmenkollen Sprint 40
## 2796 Oslo_Holmenkollen Sprint 40
## 2797 Oslo_Holmenkollen Sprint 40
## 2798 Oslo_Holmenkollen Sprint 40
## 2799 Oslo_Holmenkollen Sprint 40
## 2800 Oslo_Holmenkollen Sprint 40
## 2801 Oslo_Holmenkollen Sprint 40
## 2802 Oslo_Holmenkollen Sprint 40
## 2803 Oslo_Holmenkollen Sprint 40
## 2804 Oslo_Holmenkollen Sprint 40
## 2805 Oslo_Holmenkollen Sprint 40
## 2806 Oslo_Holmenkollen Sprint 40
## 2807 Oslo_Holmenkollen Sprint 40
## 2808 Oslo_Holmenkollen Sprint 40
## 2809 Oslo_Holmenkollen Sprint 40
## 2810 Oslo_Holmenkollen Individual 37
## 2811 Oslo_Holmenkollen Individual 37
## 2812 Oslo_Holmenkollen Individual 37
## 2813 Oslo_Holmenkollen Individual 37
## 2814 Oslo_Holmenkollen Individual 37
## 2815 Oslo_Holmenkollen Individual 37
## 2816 Oslo_Holmenkollen Individual 37
## 2817 Oslo_Holmenkollen Individual 37
## 2818 Oslo_Holmenkollen Individual 37
## 2819 Oslo_Holmenkollen Individual 37
## 2820 Oslo_Holmenkollen Individual 37
## 2821 Oslo_Holmenkollen Individual 37
## 2822 Oslo_Holmenkollen Individual 37
## 2823 Oslo_Holmenkollen Individual 37
## 2824 Oslo_Holmenkollen Individual 37
## 2825 Oslo_Holmenkollen Individual 37
## 2826 Oslo_Holmenkollen Individual 37
## 2827 Oslo_Holmenkollen Individual 37
## 2828 Oslo_Holmenkollen Individual 37
## 2829 Oslo_Holmenkollen Individual 37
## 2830 Oslo_Holmenkollen Individual 37
## 2831 Oslo_Holmenkollen Individual 37
## 2832 Oslo_Holmenkollen Individual 37
## 2833 Oslo_Holmenkollen Individual 37
## 2834 Oslo_Holmenkollen Individual 37
## 2835 Oslo_Holmenkollen Individual 37
## 2836 Oslo_Holmenkollen Individual 37
## 2837 Oslo_Holmenkollen Individual 37
## 2838 Oslo_Holmenkollen Individual 37
## 2839 Oslo_Holmenkollen Individual 37
## 2840 Oslo_Holmenkollen Individual 37
## 2841 Oslo_Holmenkollen Individual 37
## 2842 Oslo_Holmenkollen Individual 37
## 2843 Oslo_Holmenkollen Individual 37
## 2844 Oslo_Holmenkollen Individual 37
## 2845 Oslo_Holmenkollen Individual 37
## 2846 Oslo_Holmenkollen Individual 37
## 2847 Oslo_Holmenkollen Individual 37
## 2848 Oslo_Holmenkollen Individual 37
## 2849 Oslo_Holmenkollen Individual 37
## 2850 Oslo_Holmenkollen Individual 37
## 2851 Oslo_Holmenkollen Individual 37
## 2852 Oslo_Holmenkollen Individual 37
## 2853 Oslo_Holmenkollen Individual 37
## 2854 Oslo_Holmenkollen Individual 37
## 2855 Oslo_Holmenkollen Individual 37
## 2856 Oslo_Holmenkollen Individual 37
## 2857 Oslo_Holmenkollen Individual 37
## 2858 Oslo_Holmenkollen Individual 37
## 2859 Oslo_Holmenkollen Individual 37
## 2860 Oslo_Holmenkollen Individual 37
## 2861 Oslo_Holmenkollen Individual 37
## 2862 Oslo_Holmenkollen Individual 37
## 2863 Oslo_Holmenkollen Individual 37
## 2864 Oslo_Holmenkollen Individual 37
## 2865 Oslo_Holmenkollen Individual 37
## 2866 Oslo_Holmenkollen Individual 37
## 2867 Oslo_Holmenkollen Individual 37
## 2868 Oslo_Holmenkollen Individual 37
## 2869 Oslo_Holmenkollen Individual 37
## 2870 Oslo_Holmenkollen Individual 37
## 2871 Oslo_Holmenkollen Individual 37
## 2872 Oslo_Holmenkollen Individual 37
## 2873 Oslo_Holmenkollen Individual 37
## 2874 Oslo_Holmenkollen Individual 37
## 2875 Oslo_Holmenkollen Individual 37
## 2876 Oslo_Holmenkollen Individual 37
## 2877 Oslo_Holmenkollen Individual 37
## 2878 Oslo_Holmenkollen Individual 37
## 2879 Oslo_Holmenkollen Individual 37
## 2880 Oslo_Holmenkollen Individual 37
## 2881 Oslo_Holmenkollen Individual 37
## 2882 Oslo_Holmenkollen Individual 37
## 2883 Oslo_Holmenkollen Individual 37
## 2884 Oslo_Holmenkollen Individual 37
## 2885 Oslo_Holmenkollen Individual 37
## 2886 Oslo_Holmenkollen Individual 37
## 2887 Oslo_Holmenkollen Individual 37
## 2888 Oslo_Holmenkollen Individual 37
## 2889 Oslo_Holmenkollen Individual 37
## 2890 Oslo_Holmenkollen Individual 37
## 2891 Oslo_Holmenkollen Individual 37
## 2892 Oslo_Holmenkollen Individual 37
## 2893 Oslo_Holmenkollen Individual 37
## 2894 Oslo_Holmenkollen Individual 37
## 2895 Oslo_Holmenkollen Individual 37
## 2896 Oslo_Holmenkollen Individual 37
## 2897 Oslo_Holmenkollen Individual 37
## 2898 Oslo_Holmenkollen Individual 37
## 2899 Oslo_Holmenkollen Individual 37
## 2900 Oslo_Holmenkollen Individual 37
## 2901 Oslo_Holmenkollen Individual 37
## 2902 Oslo_Holmenkollen Individual 37
## 2903 Oslo_Holmenkollen Individual 37
## 2904 Oslo_Holmenkollen Individual 37
## 2905 Oslo_Holmenkollen Individual 37
## 2906 Oslo_Holmenkollen Individual 37
## 2907 Oslo_Holmenkollen Individual 37
## 2908 Oslo_Holmenkollen Individual 37
## 2909 Oslo_Holmenkollen Mass start 38
## 2910 Oslo_Holmenkollen Mass start 38
## 2911 Oslo_Holmenkollen Mass start 38
## 2912 Oslo_Holmenkollen Mass start 38
## 2913 Oslo_Holmenkollen Mass start 38
## 2914 Oslo_Holmenkollen Mass start 38
## 2915 Oslo_Holmenkollen Mass start 38
## 2916 Oslo_Holmenkollen Mass start 38
## 2917 Oslo_Holmenkollen Mass start 38
## 2918 Oslo_Holmenkollen Mass start 38
## 2919 Oslo_Holmenkollen Mass start 38
## 2920 Oslo_Holmenkollen Mass start 38
## 2921 Oslo_Holmenkollen Mass start 38
## 2922 Oslo_Holmenkollen Mass start 38
## 2923 Oslo_Holmenkollen Mass start 38
## 2924 Oslo_Holmenkollen Mass start 38
## 2925 Oslo_Holmenkollen Mass start 38
## 2926 Oslo_Holmenkollen Mass start 38
## 2927 Oslo_Holmenkollen Mass start 38
## 2928 Oslo_Holmenkollen Mass start 38
## 2929 Oslo_Holmenkollen Mass start 38
## 2930 Oslo_Holmenkollen Mass start 38
## 2931 Oslo_Holmenkollen Mass start 38
## 2932 Oslo_Holmenkollen Mass start 38
## 2933 Oslo_Holmenkollen Mass start 38
## 2934 Oslo_Holmenkollen Mass start 38
## 2935 Oslo_Holmenkollen Mass start 38
## 2936 Oslo_Holmenkollen Mass start 38
## 2937 Oslo_Holmenkollen Mass start 38
## 2938 Oslo_Holmenkollen Pursuit 39
## 2939 Oslo_Holmenkollen Pursuit 39
## 2940 Oslo_Holmenkollen Pursuit 39
## 2941 Oslo_Holmenkollen Pursuit 39
## 2942 Oslo_Holmenkollen Pursuit 39
## 2943 Oslo_Holmenkollen Pursuit 39
## 2944 Oslo_Holmenkollen Pursuit 39
## 2945 Oslo_Holmenkollen Pursuit 39
## 2946 Oslo_Holmenkollen Pursuit 39
## 2947 Oslo_Holmenkollen Pursuit 39
## 2948 Oslo_Holmenkollen Pursuit 39
## 2949 Oslo_Holmenkollen Pursuit 39
## 2950 Oslo_Holmenkollen Pursuit 39
## 2951 Oslo_Holmenkollen Pursuit 39
## 2952 Oslo_Holmenkollen Pursuit 39
## 2953 Oslo_Holmenkollen Pursuit 39
## 2954 Oslo_Holmenkollen Pursuit 39
## 2955 Oslo_Holmenkollen Pursuit 39
## 2956 Oslo_Holmenkollen Pursuit 39
## 2957 Oslo_Holmenkollen Pursuit 39
## 2958 Oslo_Holmenkollen Pursuit 39
## 2959 Oslo_Holmenkollen Pursuit 39
## 2960 Oslo_Holmenkollen Pursuit 39
## 2961 Oslo_Holmenkollen Pursuit 39
## 2962 Oslo_Holmenkollen Pursuit 39
## 2963 Oslo_Holmenkollen Pursuit 39
## 2964 Oslo_Holmenkollen Pursuit 39
## 2965 Oslo_Holmenkollen Pursuit 39
## 2966 Oslo_Holmenkollen Pursuit 39
## 2967 Oslo_Holmenkollen Pursuit 39
## 2968 Oslo_Holmenkollen Pursuit 39
## 2969 Oslo_Holmenkollen Pursuit 39
## 2970 Oslo_Holmenkollen Pursuit 39
## 2971 Oslo_Holmenkollen Pursuit 39
## 2972 Oslo_Holmenkollen Pursuit 39
## 2973 Oslo_Holmenkollen Pursuit 39
## 2974 Oslo_Holmenkollen Pursuit 39
## 2975 Oslo_Holmenkollen Pursuit 39
## 2976 Oslo_Holmenkollen Pursuit 39
## 2977 Oslo_Holmenkollen Pursuit 39
## 2978 Oslo_Holmenkollen Pursuit 39
## 2979 Oslo_Holmenkollen Pursuit 39
## 2980 Oslo_Holmenkollen Pursuit 39
## 2981 Oslo_Holmenkollen Pursuit 39
## 2982 Oslo_Holmenkollen Pursuit 39
## 2983 Oslo_Holmenkollen Pursuit 39
## 2984 Oslo_Holmenkollen Pursuit 39
## 2985 Oslo_Holmenkollen Pursuit 39
## 2986 Oslo_Holmenkollen Pursuit 39
## 2987 Oslo_Holmenkollen Pursuit 39
## 2988 Oslo_Holmenkollen Pursuit 39
## 2989 Oslo_Holmenkollen Pursuit 39
## 2990 Oslo_Holmenkollen Pursuit 39
## 2991 Oslo_Holmenkollen Pursuit 39
## 2992 Oslo_Holmenkollen Pursuit 39
## 2993 Oslo_Holmenkollen Pursuit 39
## 2994 Oslo_Holmenkollen Pursuit 39
## 2995 Pokljuka Sprint 43
## 2996 Pokljuka Sprint 43
## 2997 Pokljuka Sprint 43
## 2998 Pokljuka Sprint 43
## 2999 Pokljuka Sprint 43
## 3000 Pokljuka Sprint 43
## 3001 Pokljuka Sprint 43
## 3002 Pokljuka Sprint 43
## 3003 Pokljuka Sprint 43
## 3004 Pokljuka Sprint 43
## 3005 Pokljuka Sprint 43
## 3006 Pokljuka Sprint 43
## 3007 Pokljuka Sprint 43
## 3008 Pokljuka Sprint 43
## 3009 Pokljuka Sprint 43
## 3010 Pokljuka Sprint 43
## 3011 Pokljuka Sprint 43
## 3012 Pokljuka Sprint 43
## 3013 Pokljuka Sprint 43
## 3014 Pokljuka Sprint 43
## 3015 Pokljuka Sprint 43
## 3016 Pokljuka Sprint 43
## 3017 Pokljuka Sprint 43
## 3018 Pokljuka Sprint 43
## 3019 Pokljuka Sprint 43
## 3020 Pokljuka Sprint 43
## 3021 Pokljuka Sprint 43
## 3022 Pokljuka Sprint 43
## 3023 Pokljuka Sprint 43
## 3024 Pokljuka Sprint 43
## 3025 Pokljuka Sprint 43
## 3026 Pokljuka Sprint 43
## 3027 Pokljuka Sprint 43
## 3028 Pokljuka Sprint 43
## 3029 Pokljuka Sprint 43
## 3030 Pokljuka Sprint 43
## 3031 Pokljuka Sprint 43
## 3032 Pokljuka Sprint 43
## 3033 Pokljuka Sprint 43
## 3034 Pokljuka Sprint 43
## 3035 Pokljuka Sprint 43
## 3036 Pokljuka Sprint 43
## 3037 Pokljuka Sprint 43
## 3038 Pokljuka Sprint 43
## 3039 Pokljuka Sprint 43
## 3040 Pokljuka Sprint 43
## 3041 Pokljuka Sprint 43
## 3042 Pokljuka Sprint 43
## 3043 Pokljuka Sprint 43
## 3044 Pokljuka Sprint 43
## 3045 Pokljuka Sprint 43
## 3046 Pokljuka Sprint 43
## 3047 Pokljuka Sprint 43
## 3048 Pokljuka Sprint 43
## 3049 Pokljuka Sprint 43
## 3050 Pokljuka Sprint 43
## 3051 Pokljuka Sprint 43
## 3052 Pokljuka Sprint 43
## 3053 Pokljuka Sprint 43
## 3054 Pokljuka Sprint 43
## 3055 Pokljuka Sprint 43
## 3056 Pokljuka Sprint 43
## 3057 Pokljuka Sprint 43
## 3058 Pokljuka Sprint 43
## 3059 Pokljuka Sprint 43
## 3060 Pokljuka Sprint 43
## 3061 Pokljuka Sprint 43
## 3062 Pokljuka Sprint 43
## 3063 Pokljuka Sprint 43
## 3064 Pokljuka Sprint 43
## 3065 Pokljuka Sprint 43
## 3066 Pokljuka Sprint 43
## 3067 Pokljuka Sprint 43
## 3068 Pokljuka Sprint 43
## 3069 Pokljuka Sprint 43
## 3070 Pokljuka Sprint 43
## 3071 Pokljuka Sprint 43
## 3072 Pokljuka Sprint 43
## 3073 Pokljuka Sprint 43
## 3074 Pokljuka Sprint 43
## 3075 Pokljuka Sprint 43
## 3076 Pokljuka Sprint 43
## 3077 Pokljuka Sprint 43
## 3078 Pokljuka Sprint 43
## 3079 Pokljuka Sprint 43
## 3080 Pokljuka Sprint 43
## 3081 Pokljuka Sprint 43
## 3082 Pokljuka Sprint 43
## 3083 Pokljuka Sprint 43
## 3084 Pokljuka Sprint 43
## 3085 Pokljuka Sprint 43
## 3086 Pokljuka Sprint 43
## 3087 Pokljuka Sprint 43
## 3088 Pokljuka Sprint 43
## 3089 Pokljuka Sprint 43
## 3090 Pokljuka Sprint 43
## 3091 Pokljuka Sprint 43
## 3092 Pokljuka Sprint 43
## 3093 Pokljuka Sprint 43
## 3094 Pokljuka Sprint 43
## 3095 Pokljuka Sprint 43
## 3096 Pokljuka Sprint 43
## 3097 Pokljuka Mass start 41
## 3098 Pokljuka Mass start 41
## 3099 Pokljuka Mass start 41
## 3100 Pokljuka Mass start 41
## 3101 Pokljuka Mass start 41
## 3102 Pokljuka Mass start 41
## 3103 Pokljuka Mass start 41
## 3104 Pokljuka Mass start 41
## 3105 Pokljuka Mass start 41
## 3106 Pokljuka Mass start 41
## 3107 Pokljuka Mass start 41
## 3108 Pokljuka Mass start 41
## 3109 Pokljuka Mass start 41
## 3110 Pokljuka Mass start 41
## 3111 Pokljuka Mass start 41
## 3112 Pokljuka Mass start 41
## 3113 Pokljuka Mass start 41
## 3114 Pokljuka Mass start 41
## 3115 Pokljuka Mass start 41
## 3116 Pokljuka Mass start 41
## 3117 Pokljuka Mass start 41
## 3118 Pokljuka Mass start 41
## 3119 Pokljuka Mass start 41
## 3120 Pokljuka Mass start 41
## 3121 Pokljuka Mass start 41
## 3122 Pokljuka Mass start 41
## 3123 Pokljuka Mass start 41
## 3124 Pokljuka Mass start 41
## 3125 Pokljuka Mass start 41
## 3126 Pokljuka Mass start 41
## 3127 Pokljuka Pursuit 42
## 3128 Pokljuka Pursuit 42
## 3129 Pokljuka Pursuit 42
## 3130 Pokljuka Pursuit 42
## 3131 Pokljuka Pursuit 42
## 3132 Pokljuka Pursuit 42
## 3133 Pokljuka Pursuit 42
## 3134 Pokljuka Pursuit 42
## 3135 Pokljuka Pursuit 42
## 3136 Pokljuka Pursuit 42
## 3137 Pokljuka Pursuit 42
## 3138 Pokljuka Pursuit 42
## 3139 Pokljuka Pursuit 42
## 3140 Pokljuka Pursuit 42
## 3141 Pokljuka Pursuit 42
## 3142 Pokljuka Pursuit 42
## 3143 Pokljuka Pursuit 42
## 3144 Pokljuka Pursuit 42
## 3145 Pokljuka Pursuit 42
## 3146 Pokljuka Pursuit 42
## 3147 Pokljuka Pursuit 42
## 3148 Pokljuka Pursuit 42
## 3149 Pokljuka Pursuit 42
## 3150 Pokljuka Pursuit 42
## 3151 Pokljuka Pursuit 42
## 3152 Pokljuka Pursuit 42
## 3153 Pokljuka Pursuit 42
## 3154 Pokljuka Pursuit 42
## 3155 Pokljuka Pursuit 42
## 3156 Pokljuka Pursuit 42
## 3157 Pokljuka Pursuit 42
## 3158 Pokljuka Pursuit 42
## 3159 Pokljuka Pursuit 42
## 3160 Pokljuka Pursuit 42
## 3161 Pokljuka Pursuit 42
## 3162 Pokljuka Pursuit 42
## 3163 Pokljuka Pursuit 42
## 3164 Pokljuka Pursuit 42
## 3165 Pokljuka Pursuit 42
## 3166 Pokljuka Pursuit 42
## 3167 Pokljuka Pursuit 42
## 3168 Pokljuka Pursuit 42
## 3169 Pokljuka Pursuit 42
## 3170 Pokljuka Pursuit 42
## 3171 Pokljuka Pursuit 42
## 3172 Pokljuka Pursuit 42
## 3173 Pokljuka Pursuit 42
## 3174 Pokljuka Pursuit 42
## 3175 Pokljuka Pursuit 42
## 3176 Pokljuka Pursuit 42
## 3177 Pokljuka Pursuit 42
## 3178 Pokljuka Pursuit 42
## 3179 Pokljuka Pursuit 42
## 3180 Pokljuka Pursuit 42
## 3181 Pokljuka Pursuit 42
## 3182 Pokljuka Pursuit 42
## 3183 Pokljuka Pursuit 42
## 3184 Pokljuka Pursuit 42
## 3185 Pokljuka Pursuit 42
## 3186 Presque_Isle Sprint 45
## 3187 Presque_Isle Sprint 45
## 3188 Presque_Isle Sprint 45
## 3189 Presque_Isle Sprint 45
## 3190 Presque_Isle Sprint 45
## 3191 Presque_Isle Sprint 45
## 3192 Presque_Isle Sprint 45
## 3193 Presque_Isle Sprint 45
## 3194 Presque_Isle Sprint 45
## 3195 Presque_Isle Sprint 45
## 3196 Presque_Isle Sprint 45
## 3197 Presque_Isle Sprint 45
## 3198 Presque_Isle Sprint 45
## 3199 Presque_Isle Sprint 45
## 3200 Presque_Isle Sprint 45
## 3201 Presque_Isle Sprint 45
## 3202 Presque_Isle Sprint 45
## 3203 Presque_Isle Sprint 45
## 3204 Presque_Isle Sprint 45
## 3205 Presque_Isle Sprint 45
## 3206 Presque_Isle Sprint 45
## 3207 Presque_Isle Sprint 45
## 3208 Presque_Isle Sprint 45
## 3209 Presque_Isle Sprint 45
## 3210 Presque_Isle Sprint 45
## 3211 Presque_Isle Sprint 45
## 3212 Presque_Isle Sprint 45
## 3213 Presque_Isle Sprint 45
## 3214 Presque_Isle Sprint 45
## 3215 Presque_Isle Sprint 45
## 3216 Presque_Isle Sprint 45
## 3217 Presque_Isle Sprint 45
## 3218 Presque_Isle Sprint 45
## 3219 Presque_Isle Sprint 45
## 3220 Presque_Isle Sprint 45
## 3221 Presque_Isle Sprint 45
## 3222 Presque_Isle Sprint 45
## 3223 Presque_Isle Sprint 45
## 3224 Presque_Isle Sprint 45
## 3225 Presque_Isle Sprint 45
## 3226 Presque_Isle Sprint 45
## 3227 Presque_Isle Sprint 45
## 3228 Presque_Isle Sprint 45
## 3229 Presque_Isle Sprint 45
## 3230 Presque_Isle Sprint 45
## 3231 Presque_Isle Sprint 45
## 3232 Presque_Isle Sprint 45
## 3233 Presque_Isle Sprint 45
## 3234 Presque_Isle Sprint 45
## 3235 Presque_Isle Sprint 45
## 3236 Presque_Isle Sprint 45
## 3237 Presque_Isle Sprint 45
## 3238 Presque_Isle Sprint 45
## 3239 Presque_Isle Sprint 45
## 3240 Presque_Isle Sprint 45
## 3241 Presque_Isle Sprint 45
## 3242 Presque_Isle Sprint 45
## 3243 Presque_Isle Sprint 45
## 3244 Presque_Isle Sprint 45
## 3245 Presque_Isle Sprint 45
## 3246 Presque_Isle Sprint 45
## 3247 Presque_Isle Sprint 45
## 3248 Presque_Isle Sprint 45
## 3249 Presque_Isle Sprint 45
## 3250 Presque_Isle Sprint 45
## 3251 Presque_Isle Sprint 45
## 3252 Presque_Isle Sprint 45
## 3253 Presque_Isle Sprint 45
## 3254 Presque_Isle Sprint 45
## 3255 Presque_Isle Sprint 45
## 3256 Presque_Isle Sprint 45
## 3257 Presque_Isle Sprint 45
## 3258 Presque_Isle Sprint 45
## 3259 Presque_Isle Sprint 45
## 3260 Presque_Isle Sprint 45
## 3261 Presque_Isle Sprint 45
## 3262 Presque_Isle Sprint 45
## 3263 Presque_Isle Sprint 45
## 3264 Presque_Isle Sprint 45
## 3265 Presque_Isle Sprint 45
## 3266 Presque_Isle Sprint 45
## 3267 Presque_Isle Sprint 45
## 3268 Presque_Isle Sprint 45
## 3269 Presque_Isle Sprint 45
## 3270 Presque_Isle Sprint 45
## 3271 Presque_Isle Sprint 45
## 3272 Presque_Isle Sprint 45
## 3273 Presque_Isle Sprint 45
## 3274 Presque_Isle Pursuit 44
## 3275 Presque_Isle Pursuit 44
## 3276 Presque_Isle Pursuit 44
## 3277 Presque_Isle Pursuit 44
## 3278 Presque_Isle Pursuit 44
## 3279 Presque_Isle Pursuit 44
## 3280 Presque_Isle Pursuit 44
## 3281 Presque_Isle Pursuit 44
## 3282 Presque_Isle Pursuit 44
## 3283 Presque_Isle Pursuit 44
## 3284 Presque_Isle Pursuit 44
## 3285 Presque_Isle Pursuit 44
## 3286 Presque_Isle Pursuit 44
## 3287 Presque_Isle Pursuit 44
## 3288 Presque_Isle Pursuit 44
## 3289 Presque_Isle Pursuit 44
## 3290 Presque_Isle Pursuit 44
## 3291 Presque_Isle Pursuit 44
## 3292 Presque_Isle Pursuit 44
## 3293 Presque_Isle Pursuit 44
## 3294 Presque_Isle Pursuit 44
## 3295 Presque_Isle Pursuit 44
## 3296 Presque_Isle Pursuit 44
## 3297 Presque_Isle Pursuit 44
## 3298 Presque_Isle Pursuit 44
## 3299 Presque_Isle Pursuit 44
## 3300 Presque_Isle Pursuit 44
## 3301 Presque_Isle Pursuit 44
## 3302 Presque_Isle Pursuit 44
## 3303 Presque_Isle Pursuit 44
## 3304 Presque_Isle Pursuit 44
## 3305 Presque_Isle Pursuit 44
## 3306 Presque_Isle Pursuit 44
## 3307 Presque_Isle Pursuit 44
## 3308 Presque_Isle Pursuit 44
## 3309 Presque_Isle Pursuit 44
## 3310 Presque_Isle Pursuit 44
## 3311 Presque_Isle Pursuit 44
## 3312 Presque_Isle Pursuit 44
## 3313 Presque_Isle Pursuit 44
## 3314 Presque_Isle Pursuit 44
## 3315 Presque_Isle Pursuit 44
## 3316 Presque_Isle Pursuit 44
## 3317 Presque_Isle Pursuit 44
## 3318 Presque_Isle Pursuit 44
## 3319 Presque_Isle Pursuit 44
## 3320 Presque_Isle Pursuit 44
## 3321 Presque_Isle Pursuit 44
## 3322 Presque_Isle Pursuit 44
## 3323 Presque_Isle Pursuit 44
## 3324 Presque_Isle Pursuit 44
## 3325 Presque_Isle Pursuit 44
## 3326 Presque_Isle Pursuit 44
## 3327 Ruhpolding Sprint 50
## 3328 Ruhpolding Sprint 50
## 3329 Ruhpolding Sprint 50
## 3330 Ruhpolding Sprint 50
## 3331 Ruhpolding Sprint 50
## 3332 Ruhpolding Sprint 50
## 3333 Ruhpolding Sprint 50
## 3334 Ruhpolding Sprint 50
## 3335 Ruhpolding Sprint 50
## 3336 Ruhpolding Sprint 50
## 3337 Ruhpolding Sprint 50
## 3338 Ruhpolding Sprint 50
## 3339 Ruhpolding Sprint 50
## 3340 Ruhpolding Sprint 50
## 3341 Ruhpolding Sprint 50
## 3342 Ruhpolding Sprint 50
## 3343 Ruhpolding Sprint 50
## 3344 Ruhpolding Sprint 50
## 3345 Ruhpolding Sprint 50
## 3346 Ruhpolding Sprint 50
## 3347 Ruhpolding Sprint 50
## 3348 Ruhpolding Sprint 50
## 3349 Ruhpolding Sprint 50
## 3350 Ruhpolding Sprint 50
## 3351 Ruhpolding Sprint 50
## 3352 Ruhpolding Sprint 50
## 3353 Ruhpolding Sprint 50
## 3354 Ruhpolding Sprint 50
## 3355 Ruhpolding Sprint 50
## 3356 Ruhpolding Sprint 50
## 3357 Ruhpolding Sprint 50
## 3358 Ruhpolding Sprint 50
## 3359 Ruhpolding Sprint 50
## 3360 Ruhpolding Sprint 50
## 3361 Ruhpolding Sprint 50
## 3362 Ruhpolding Sprint 50
## 3363 Ruhpolding Sprint 50
## 3364 Ruhpolding Sprint 50
## 3365 Ruhpolding Sprint 50
## 3366 Ruhpolding Sprint 50
## 3367 Ruhpolding Sprint 50
## 3368 Ruhpolding Sprint 50
## 3369 Ruhpolding Sprint 50
## 3370 Ruhpolding Sprint 50
## 3371 Ruhpolding Sprint 50
## 3372 Ruhpolding Sprint 50
## 3373 Ruhpolding Sprint 50
## 3374 Ruhpolding Sprint 50
## 3375 Ruhpolding Sprint 50
## 3376 Ruhpolding Sprint 50
## 3377 Ruhpolding Sprint 50
## 3378 Ruhpolding Sprint 50
## 3379 Ruhpolding Sprint 50
## 3380 Ruhpolding Sprint 50
## 3381 Ruhpolding Sprint 50
## 3382 Ruhpolding Sprint 50
## 3383 Ruhpolding Sprint 50
## 3384 Ruhpolding Sprint 50
## 3385 Ruhpolding Sprint 50
## 3386 Ruhpolding Sprint 50
## 3387 Ruhpolding Sprint 50
## 3388 Ruhpolding Sprint 50
## 3389 Ruhpolding Sprint 50
## 3390 Ruhpolding Sprint 50
## 3391 Ruhpolding Sprint 50
## 3392 Ruhpolding Sprint 50
## 3393 Ruhpolding Sprint 50
## 3394 Ruhpolding Sprint 50
## 3395 Ruhpolding Sprint 50
## 3396 Ruhpolding Sprint 50
## 3397 Ruhpolding Sprint 50
## 3398 Ruhpolding Sprint 50
## 3399 Ruhpolding Sprint 50
## 3400 Ruhpolding Sprint 50
## 3401 Ruhpolding Sprint 50
## 3402 Ruhpolding Sprint 50
## 3403 Ruhpolding Sprint 50
## 3404 Ruhpolding Sprint 50
## 3405 Ruhpolding Sprint 50
## 3406 Ruhpolding Sprint 50
## 3407 Ruhpolding Sprint 50
## 3408 Ruhpolding Sprint 50
## 3409 Ruhpolding Sprint 50
## 3410 Ruhpolding Sprint 50
## 3411 Ruhpolding Sprint 50
## 3412 Ruhpolding Sprint 50
## 3413 Ruhpolding Sprint 50
## 3414 Ruhpolding Sprint 50
## 3415 Ruhpolding Sprint 50
## 3416 Ruhpolding Sprint 50
## 3417 Ruhpolding Sprint 50
## 3418 Ruhpolding Sprint 50
## 3419 Ruhpolding Sprint 50
## 3420 Ruhpolding Sprint 50
## 3421 Ruhpolding Sprint 50
## 3422 Ruhpolding Sprint 50
## 3423 Ruhpolding Sprint 50
## 3424 Ruhpolding Sprint 50
## 3425 Ruhpolding Sprint 50
## 3426 Ruhpolding Sprint 50
## 3427 Ruhpolding Sprint 50
## 3428 Ruhpolding Sprint 50
## 3429 Ruhpolding Individual 46
## 3430 Ruhpolding Individual 46
## 3431 Ruhpolding Individual 46
## 3432 Ruhpolding Individual 46
## 3433 Ruhpolding Individual 46
## 3434 Ruhpolding Individual 46
## 3435 Ruhpolding Individual 46
## 3436 Ruhpolding Individual 46
## 3437 Ruhpolding Individual 46
## 3438 Ruhpolding Individual 46
## 3439 Ruhpolding Individual 46
## 3440 Ruhpolding Individual 46
## 3441 Ruhpolding Individual 46
## 3442 Ruhpolding Individual 46
## 3443 Ruhpolding Individual 46
## 3444 Ruhpolding Individual 46
## 3445 Ruhpolding Individual 46
## 3446 Ruhpolding Individual 46
## 3447 Ruhpolding Individual 46
## 3448 Ruhpolding Individual 46
## 3449 Ruhpolding Individual 46
## 3450 Ruhpolding Individual 46
## 3451 Ruhpolding Individual 46
## 3452 Ruhpolding Individual 46
## 3453 Ruhpolding Individual 46
## 3454 Ruhpolding Individual 46
## 3455 Ruhpolding Individual 46
## 3456 Ruhpolding Individual 46
## 3457 Ruhpolding Individual 46
## 3458 Ruhpolding Individual 46
## 3459 Ruhpolding Individual 46
## 3460 Ruhpolding Individual 46
## 3461 Ruhpolding Individual 46
## 3462 Ruhpolding Individual 46
## 3463 Ruhpolding Individual 46
## 3464 Ruhpolding Individual 46
## 3465 Ruhpolding Individual 46
## 3466 Ruhpolding Individual 46
## 3467 Ruhpolding Individual 46
## 3468 Ruhpolding Individual 46
## 3469 Ruhpolding Individual 46
## 3470 Ruhpolding Individual 46
## 3471 Ruhpolding Individual 46
## 3472 Ruhpolding Individual 46
## 3473 Ruhpolding Individual 46
## 3474 Ruhpolding Individual 46
## 3475 Ruhpolding Individual 46
## 3476 Ruhpolding Individual 46
## 3477 Ruhpolding Individual 46
## 3478 Ruhpolding Individual 46
## 3479 Ruhpolding Individual 46
## 3480 Ruhpolding Individual 46
## 3481 Ruhpolding Individual 46
## 3482 Ruhpolding Individual 46
## 3483 Ruhpolding Individual 46
## 3484 Ruhpolding Individual 46
## 3485 Ruhpolding Individual 46
## 3486 Ruhpolding Individual 46
## 3487 Ruhpolding Individual 46
## 3488 Ruhpolding Individual 46
## 3489 Ruhpolding Individual 46
## 3490 Ruhpolding Individual 46
## 3491 Ruhpolding Individual 46
## 3492 Ruhpolding Individual 46
## 3493 Ruhpolding Individual 46
## 3494 Ruhpolding Individual 46
## 3495 Ruhpolding Individual 46
## 3496 Ruhpolding Individual 46
## 3497 Ruhpolding Individual 46
## 3498 Ruhpolding Individual 46
## 3499 Ruhpolding Individual 46
## 3500 Ruhpolding Individual 46
## 3501 Ruhpolding Individual 46
## 3502 Ruhpolding Individual 46
## 3503 Ruhpolding Individual 46
## 3504 Ruhpolding Individual 46
## 3505 Ruhpolding Individual 46
## 3506 Ruhpolding Individual 46
## 3507 Ruhpolding Individual 46
## 3508 Ruhpolding Individual 46
## 3509 Ruhpolding Individual 46
## 3510 Ruhpolding Individual 46
## 3511 Ruhpolding Individual 46
## 3512 Ruhpolding Individual 46
## 3513 Ruhpolding Individual 46
## 3514 Ruhpolding Individual 46
## 3515 Ruhpolding Individual 46
## 3516 Ruhpolding Individual 46
## 3517 Ruhpolding Individual 46
## 3518 Ruhpolding Individual 46
## 3519 Ruhpolding Individual 46
## 3520 Ruhpolding Individual 46
## 3521 Ruhpolding Individual 46
## 3522 Ruhpolding Individual 46
## 3523 Ruhpolding Individual 46
## 3524 Ruhpolding Individual 46
## 3525 Ruhpolding Individual 46
## 3526 Ruhpolding Individual 46
## 3527 Ruhpolding Individual 46
## 3528 Ruhpolding Individual 46
## 3529 Ruhpolding Individual 46
## 3530 Ruhpolding Individual 46
## 3531 Ruhpolding Individual 46
## 3532 Ruhpolding Mass start 47
## 3533 Ruhpolding Mass start 47
## 3534 Ruhpolding Mass start 47
## 3535 Ruhpolding Mass start 47
## 3536 Ruhpolding Mass start 47
## 3537 Ruhpolding Mass start 47
## 3538 Ruhpolding Mass start 47
## 3539 Ruhpolding Mass start 47
## 3540 Ruhpolding Mass start 47
## 3541 Ruhpolding Mass start 47
## 3542 Ruhpolding Mass start 47
## 3543 Ruhpolding Mass start 47
## 3544 Ruhpolding Mass start 47
## 3545 Ruhpolding Mass start 47
## 3546 Ruhpolding Mass start 47
## 3547 Ruhpolding Mass start 47
## 3548 Ruhpolding Mass start 47
## 3549 Ruhpolding Mass start 47
## 3550 Ruhpolding Mass start 47
## 3551 Ruhpolding Mass start 47
## 3552 Ruhpolding Mass start 47
## 3553 Ruhpolding Mass start 47
## 3554 Ruhpolding Mass start 47
## 3555 Ruhpolding Mass start 47
## 3556 Ruhpolding Mass start 47
## 3557 Ruhpolding Mass start 47
## 3558 Ruhpolding Mass start 47
## 3559 Ruhpolding Mass start 47
## 3560 Ruhpolding Mass start 47
## 3561 Ruhpolding Mass start 47
## 3562 Ruhpolding Mass start 48
## 3563 Ruhpolding Mass start 48
## 3564 Ruhpolding Mass start 48
## 3565 Ruhpolding Mass start 48
## 3566 Ruhpolding Mass start 48
## 3567 Ruhpolding Mass start 48
## 3568 Ruhpolding Mass start 48
## 3569 Ruhpolding Mass start 48
## 3570 Ruhpolding Mass start 48
## 3571 Ruhpolding Mass start 48
## 3572 Ruhpolding Mass start 48
## 3573 Ruhpolding Mass start 48
## 3574 Ruhpolding Mass start 48
## 3575 Ruhpolding Mass start 48
## 3576 Ruhpolding Mass start 48
## 3577 Ruhpolding Mass start 48
## 3578 Ruhpolding Mass start 48
## 3579 Ruhpolding Mass start 48
## 3580 Ruhpolding Mass start 48
## 3581 Ruhpolding Mass start 48
## 3582 Ruhpolding Mass start 48
## 3583 Ruhpolding Mass start 48
## 3584 Ruhpolding Mass start 48
## 3585 Ruhpolding Mass start 48
## 3586 Ruhpolding Mass start 48
## 3587 Ruhpolding Mass start 48
## 3588 Ruhpolding Mass start 48
## 3589 Ruhpolding Mass start 48
## 3590 Ruhpolding Mass start 48
## 3591 Ruhpolding Mass start 48
## 3592 Ruhpolding Pursuit 49
## 3593 Ruhpolding Pursuit 49
## 3594 Ruhpolding Pursuit 49
## 3595 Ruhpolding Pursuit 49
## 3596 Ruhpolding Pursuit 49
## 3597 Ruhpolding Pursuit 49
## 3598 Ruhpolding Pursuit 49
## 3599 Ruhpolding Pursuit 49
## 3600 Ruhpolding Pursuit 49
## 3601 Ruhpolding Pursuit 49
## 3602 Ruhpolding Pursuit 49
## 3603 Ruhpolding Pursuit 49
## 3604 Ruhpolding Pursuit 49
## 3605 Ruhpolding Pursuit 49
## 3606 Ruhpolding Pursuit 49
## 3607 Ruhpolding Pursuit 49
## 3608 Ruhpolding Pursuit 49
## 3609 Ruhpolding Pursuit 49
## 3610 Ruhpolding Pursuit 49
## 3611 Ruhpolding Pursuit 49
## 3612 Ruhpolding Pursuit 49
## 3613 Ruhpolding Pursuit 49
## 3614 Ruhpolding Pursuit 49
## 3615 Ruhpolding Pursuit 49
## 3616 Ruhpolding Pursuit 49
## 3617 Ruhpolding Pursuit 49
## 3618 Ruhpolding Pursuit 49
## 3619 Ruhpolding Pursuit 49
## 3620 Ruhpolding Pursuit 49
## 3621 Ruhpolding Pursuit 49
## 3622 Ruhpolding Pursuit 49
## 3623 Ruhpolding Pursuit 49
## 3624 Ruhpolding Pursuit 49
## 3625 Ruhpolding Pursuit 49
## 3626 Ruhpolding Pursuit 49
## 3627 Ruhpolding Pursuit 49
## 3628 Ruhpolding Pursuit 49
## 3629 Ruhpolding Pursuit 49
## 3630 Ruhpolding Pursuit 49
## 3631 Ruhpolding Pursuit 49
## 3632 Ruhpolding Pursuit 49
## 3633 Ruhpolding Pursuit 49
## 3634 Ruhpolding Pursuit 49
## 3635 Ruhpolding Pursuit 49
## 3636 Ruhpolding Pursuit 49
## 3637 Ruhpolding Pursuit 49
## 3638 Ruhpolding Pursuit 49
## 3639 Ruhpolding Pursuit 49
## 3640 Ruhpolding Pursuit 49
## 3641 Ruhpolding Pursuit 49
## 3642 Ruhpolding Pursuit 49
## 3643 Ruhpolding Pursuit 49
## 3644 Ruhpolding Pursuit 49
## 3645 Ruhpolding Pursuit 49
## 3646 Ruhpolding Pursuit 49
## 3647 Ruhpolding Pursuit 49
## 3648 Ruhpolding Pursuit 49
## 3649 Ruhpolding Pursuit 49
## 3650 Anterselva Individual 51
## 3651 Anterselva Individual 51
## 3652 Anterselva Individual 51
## 3653 Anterselva Individual 51
## 3654 Anterselva Individual 51
## 3655 Anterselva Individual 51
## 3656 Anterselva Individual 51
## 3657 Anterselva Individual 51
## 3658 Anterselva Individual 51
## 3659 Anterselva Individual 51
## 3660 Anterselva Individual 51
## 3661 Anterselva Individual 51
## 3662 Anterselva Individual 51
## 3663 Anterselva Individual 51
## 3664 Anterselva Individual 51
## 3665 Anterselva Individual 51
## 3666 Anterselva Individual 51
## 3667 Anterselva Individual 51
## 3668 Anterselva Individual 51
## 3669 Anterselva Individual 51
## 3670 Anterselva Individual 51
## 3671 Anterselva Individual 51
## 3672 Anterselva Individual 51
## 3673 Anterselva Individual 51
## 3674 Anterselva Individual 51
## 3675 Anterselva Individual 51
## 3676 Anterselva Individual 51
## 3677 Anterselva Individual 51
## 3678 Anterselva Individual 51
## 3679 Anterselva Individual 51
## 3680 Anterselva Individual 51
## 3681 Anterselva Individual 51
## 3682 Anterselva Individual 51
## 3683 Anterselva Individual 51
## 3684 Anterselva Individual 51
## 3685 Anterselva Individual 51
## 3686 Anterselva Individual 51
## 3687 Anterselva Individual 51
## 3688 Anterselva Individual 51
## 3689 Anterselva Individual 51
## 3690 Anterselva Individual 51
## 3691 Anterselva Individual 51
## 3692 Anterselva Individual 51
## 3693 Anterselva Individual 51
## 3694 Anterselva Individual 51
## 3695 Anterselva Individual 51
## 3696 Anterselva Individual 51
## 3697 Anterselva Individual 51
## 3698 Anterselva Individual 51
## 3699 Anterselva Individual 51
## 3700 Anterselva Individual 51
## 3701 Anterselva Individual 51
## 3702 Anterselva Individual 51
## 3703 Anterselva Individual 51
## 3704 Anterselva Individual 51
## 3705 Anterselva Individual 51
## 3706 Anterselva Individual 51
## 3707 Anterselva Individual 51
## 3708 Anterselva Individual 51
## 3709 Anterselva Individual 51
## 3710 Anterselva Individual 51
## 3711 Anterselva Individual 51
## 3712 Anterselva Individual 51
## 3713 Anterselva Individual 51
## 3714 Anterselva Individual 51
## 3715 Anterselva Individual 51
## 3716 Anterselva Individual 51
## 3717 Anterselva Individual 51
## 3718 Anterselva Individual 51
## 3719 Anterselva Individual 51
## 3720 Anterselva Individual 51
## 3721 Anterselva Individual 51
## 3722 Anterselva Individual 51
## 3723 Anterselva Individual 51
## 3724 Anterselva Individual 51
## 3725 Anterselva Individual 51
## 3726 Anterselva Individual 51
## 3727 Anterselva Individual 51
## 3728 Anterselva Individual 51
## 3729 Anterselva Individual 51
## 3730 Anterselva Individual 51
## 3731 Anterselva Individual 51
## 3732 Anterselva Individual 51
## 3733 Anterselva Individual 51
## 3734 Anterselva Individual 51
## 3735 Anterselva Individual 51
## 3736 Anterselva Individual 51
## 3737 Anterselva Individual 51
## 3738 Anterselva Individual 51
## 3739 Anterselva Individual 51
## 3740 Anterselva Individual 51
## 3741 Anterselva Individual 51
## 3742 Anterselva Individual 51
## 3743 Anterselva Individual 51
## 3744 Anterselva Individual 51
## 3745 Anterselva Individual 51
## 3746 Anterselva Individual 51
## 3747 Anterselva Individual 51
## 3748 Anterselva Individual 51
## 3749 Anterselva Individual 51
## 3750 Anterselva Individual 51
## 3751 Anterselva Individual 51
## 3752 Anterselva Individual 51
## 3753 Anterselva Individual 51
## 3754 Anterselva Individual 51
## 3755 Anterselva Mass start 52
## 3756 Anterselva Mass start 52
## 3757 Anterselva Mass start 52
## 3758 Anterselva Mass start 52
## 3759 Anterselva Mass start 52
## 3760 Anterselva Mass start 52
## 3761 Anterselva Mass start 52
## 3762 Anterselva Mass start 52
## 3763 Anterselva Mass start 52
## 3764 Anterselva Mass start 52
## 3765 Anterselva Mass start 52
## 3766 Anterselva Mass start 52
## 3767 Anterselva Mass start 52
## 3768 Anterselva Mass start 52
## 3769 Anterselva Mass start 52
## 3770 Anterselva Mass start 52
## 3771 Anterselva Mass start 52
## 3772 Anterselva Mass start 52
## 3773 Anterselva Mass start 52
## 3774 Anterselva Mass start 52
## 3775 Anterselva Mass start 52
## 3776 Anterselva Mass start 52
## 3777 Anterselva Mass start 52
## 3778 Anterselva Mass start 52
## 3779 Anterselva Mass start 52
## 3780 Anterselva Mass start 52
## 3781 Anterselva Mass start 52
## 3782 Anterselva Mass start 52
## 3783 Anterselva Mass start 52
## 3784 Anterselva Mass start 52
## 3785 Hochfilzen Sprint 56
## 3786 Hochfilzen Sprint 56
## 3787 Hochfilzen Sprint 56
## 3788 Hochfilzen Sprint 56
## 3789 Hochfilzen Sprint 56
## 3790 Hochfilzen Sprint 56
## 3791 Hochfilzen Sprint 56
## 3792 Hochfilzen Sprint 56
## 3793 Hochfilzen Sprint 56
## 3794 Hochfilzen Sprint 56
## 3795 Hochfilzen Sprint 56
## 3796 Hochfilzen Sprint 56
## 3797 Hochfilzen Sprint 56
## 3798 Hochfilzen Sprint 56
## 3799 Hochfilzen Sprint 56
## 3800 Hochfilzen Sprint 56
## 3801 Hochfilzen Sprint 56
## 3802 Hochfilzen Sprint 56
## 3803 Hochfilzen Sprint 56
## 3804 Hochfilzen Sprint 56
## 3805 Hochfilzen Sprint 56
## 3806 Hochfilzen Sprint 56
## 3807 Hochfilzen Sprint 56
## 3808 Hochfilzen Sprint 56
## 3809 Hochfilzen Sprint 56
## 3810 Hochfilzen Sprint 56
## 3811 Hochfilzen Sprint 56
## 3812 Hochfilzen Sprint 56
## 3813 Hochfilzen Sprint 56
## 3814 Hochfilzen Sprint 56
## 3815 Hochfilzen Sprint 56
## 3816 Hochfilzen Sprint 56
## 3817 Hochfilzen Sprint 56
## 3818 Hochfilzen Sprint 56
## 3819 Hochfilzen Sprint 56
## 3820 Hochfilzen Sprint 56
## 3821 Hochfilzen Sprint 56
## 3822 Hochfilzen Sprint 56
## 3823 Hochfilzen Sprint 56
## 3824 Hochfilzen Sprint 56
## 3825 Hochfilzen Sprint 56
## 3826 Hochfilzen Sprint 56
## 3827 Hochfilzen Sprint 56
## 3828 Hochfilzen Sprint 56
## 3829 Hochfilzen Sprint 56
## 3830 Hochfilzen Sprint 56
## 3831 Hochfilzen Sprint 56
## 3832 Hochfilzen Sprint 56
## 3833 Hochfilzen Sprint 56
## 3834 Hochfilzen Sprint 56
## 3835 Hochfilzen Sprint 56
## 3836 Hochfilzen Sprint 56
## 3837 Hochfilzen Sprint 56
## 3838 Hochfilzen Sprint 56
## 3839 Hochfilzen Sprint 56
## 3840 Hochfilzen Sprint 56
## 3841 Hochfilzen Sprint 56
## 3842 Hochfilzen Sprint 56
## 3843 Hochfilzen Sprint 56
## 3844 Hochfilzen Sprint 56
## 3845 Hochfilzen Sprint 56
## 3846 Hochfilzen Sprint 56
## 3847 Hochfilzen Sprint 56
## 3848 Hochfilzen Sprint 56
## 3849 Hochfilzen Sprint 56
## 3850 Hochfilzen Sprint 56
## 3851 Hochfilzen Sprint 56
## 3852 Hochfilzen Sprint 56
## 3853 Hochfilzen Sprint 56
## 3854 Hochfilzen Sprint 56
## 3855 Hochfilzen Sprint 56
## 3856 Hochfilzen Sprint 56
## 3857 Hochfilzen Sprint 56
## 3858 Hochfilzen Sprint 56
## 3859 Hochfilzen Sprint 56
## 3860 Hochfilzen Sprint 56
## 3861 Hochfilzen Sprint 56
## 3862 Hochfilzen Sprint 56
## 3863 Hochfilzen Sprint 56
## 3864 Hochfilzen Sprint 56
## 3865 Hochfilzen Sprint 56
## 3866 Hochfilzen Sprint 56
## 3867 Hochfilzen Sprint 56
## 3868 Hochfilzen Sprint 56
## 3869 Hochfilzen Sprint 56
## 3870 Hochfilzen Sprint 56
## 3871 Hochfilzen Sprint 56
## 3872 Hochfilzen Sprint 56
## 3873 Hochfilzen Sprint 56
## 3874 Hochfilzen Sprint 56
## 3875 Hochfilzen Sprint 56
## 3876 Hochfilzen Sprint 56
## 3877 Hochfilzen Sprint 56
## 3878 Hochfilzen Sprint 56
## 3879 Hochfilzen Sprint 56
## 3880 Hochfilzen Sprint 56
## 3881 Hochfilzen Sprint 56
## 3882 Hochfilzen Sprint 56
## 3883 Hochfilzen Sprint 56
## 3884 Hochfilzen Sprint 56
## 3885 Hochfilzen Sprint 56
## 3886 Hochfilzen Sprint 56
## 3887 Hochfilzen Individual 53
## 3888 Hochfilzen Individual 53
## 3889 Hochfilzen Individual 53
## 3890 Hochfilzen Individual 53
## 3891 Hochfilzen Individual 53
## 3892 Hochfilzen Individual 53
## 3893 Hochfilzen Individual 53
## 3894 Hochfilzen Individual 53
## 3895 Hochfilzen Individual 53
## 3896 Hochfilzen Individual 53
## 3897 Hochfilzen Individual 53
## 3898 Hochfilzen Individual 53
## 3899 Hochfilzen Individual 53
## 3900 Hochfilzen Individual 53
## 3901 Hochfilzen Individual 53
## 3902 Hochfilzen Individual 53
## 3903 Hochfilzen Individual 53
## 3904 Hochfilzen Individual 53
## 3905 Hochfilzen Individual 53
## 3906 Hochfilzen Individual 53
## 3907 Hochfilzen Individual 53
## 3908 Hochfilzen Individual 53
## 3909 Hochfilzen Individual 53
## 3910 Hochfilzen Individual 53
## 3911 Hochfilzen Individual 53
## 3912 Hochfilzen Individual 53
## 3913 Hochfilzen Individual 53
## 3914 Hochfilzen Individual 53
## 3915 Hochfilzen Individual 53
## 3916 Hochfilzen Individual 53
## 3917 Hochfilzen Individual 53
## 3918 Hochfilzen Individual 53
## 3919 Hochfilzen Individual 53
## 3920 Hochfilzen Individual 53
## 3921 Hochfilzen Individual 53
## 3922 Hochfilzen Individual 53
## 3923 Hochfilzen Individual 53
## 3924 Hochfilzen Individual 53
## 3925 Hochfilzen Individual 53
## 3926 Hochfilzen Individual 53
## 3927 Hochfilzen Individual 53
## 3928 Hochfilzen Individual 53
## 3929 Hochfilzen Individual 53
## 3930 Hochfilzen Individual 53
## 3931 Hochfilzen Individual 53
## 3932 Hochfilzen Individual 53
## 3933 Hochfilzen Individual 53
## 3934 Hochfilzen Individual 53
## 3935 Hochfilzen Individual 53
## 3936 Hochfilzen Individual 53
## 3937 Hochfilzen Individual 53
## 3938 Hochfilzen Individual 53
## 3939 Hochfilzen Individual 53
## 3940 Hochfilzen Individual 53
## 3941 Hochfilzen Individual 53
## 3942 Hochfilzen Individual 53
## 3943 Hochfilzen Individual 53
## 3944 Hochfilzen Individual 53
## 3945 Hochfilzen Individual 53
## 3946 Hochfilzen Individual 53
## 3947 Hochfilzen Individual 53
## 3948 Hochfilzen Individual 53
## 3949 Hochfilzen Individual 53
## 3950 Hochfilzen Individual 53
## 3951 Hochfilzen Individual 53
## 3952 Hochfilzen Individual 53
## 3953 Hochfilzen Individual 53
## 3954 Hochfilzen Individual 53
## 3955 Hochfilzen Individual 53
## 3956 Hochfilzen Individual 53
## 3957 Hochfilzen Individual 53
## 3958 Hochfilzen Individual 53
## 3959 Hochfilzen Individual 53
## 3960 Hochfilzen Individual 53
## 3961 Hochfilzen Individual 53
## 3962 Hochfilzen Individual 53
## 3963 Hochfilzen Individual 53
## 3964 Hochfilzen Individual 53
## 3965 Hochfilzen Individual 53
## 3966 Hochfilzen Individual 53
## 3967 Hochfilzen Individual 53
## 3968 Hochfilzen Individual 53
## 3969 Hochfilzen Individual 53
## 3970 Hochfilzen Individual 53
## 3971 Hochfilzen Individual 53
## 3972 Hochfilzen Individual 53
## 3973 Hochfilzen Individual 53
## 3974 Hochfilzen Individual 53
## 3975 Hochfilzen Individual 53
## 3976 Hochfilzen Individual 53
## 3977 Hochfilzen Individual 53
## 3978 Hochfilzen Individual 53
## 3979 Hochfilzen Individual 53
## 3980 Hochfilzen Individual 53
## 3981 Hochfilzen Individual 53
## 3982 Hochfilzen Individual 53
## 3983 Hochfilzen Individual 53
## 3984 Hochfilzen Individual 53
## 3985 Hochfilzen Individual 53
## 3986 Hochfilzen Individual 53
## 3987 Hochfilzen Mass start 54
## 3988 Hochfilzen Mass start 54
## 3989 Hochfilzen Mass start 54
## 3990 Hochfilzen Mass start 54
## 3991 Hochfilzen Mass start 54
## 3992 Hochfilzen Mass start 54
## 3993 Hochfilzen Mass start 54
## 3994 Hochfilzen Mass start 54
## 3995 Hochfilzen Mass start 54
## 3996 Hochfilzen Mass start 54
## 3997 Hochfilzen Mass start 54
## 3998 Hochfilzen Mass start 54
## 3999 Hochfilzen Mass start 54
## 4000 Hochfilzen Mass start 54
## 4001 Hochfilzen Mass start 54
## 4002 Hochfilzen Mass start 54
## 4003 Hochfilzen Mass start 54
## 4004 Hochfilzen Mass start 54
## 4005 Hochfilzen Mass start 54
## 4006 Hochfilzen Mass start 54
## 4007 Hochfilzen Mass start 54
## 4008 Hochfilzen Mass start 54
## 4009 Hochfilzen Mass start 54
## 4010 Hochfilzen Mass start 54
## 4011 Hochfilzen Mass start 54
## 4012 Hochfilzen Mass start 54
## 4013 Hochfilzen Mass start 54
## 4014 Hochfilzen Mass start 54
## 4015 Hochfilzen Mass start 54
## 4016 Hochfilzen Mass start 54
## 4017 Hochfilzen Pursuit 55
## 4018 Hochfilzen Pursuit 55
## 4019 Hochfilzen Pursuit 55
## 4020 Hochfilzen Pursuit 55
## 4021 Hochfilzen Pursuit 55
## 4022 Hochfilzen Pursuit 55
## 4023 Hochfilzen Pursuit 55
## 4024 Hochfilzen Pursuit 55
## 4025 Hochfilzen Pursuit 55
## 4026 Hochfilzen Pursuit 55
## 4027 Hochfilzen Pursuit 55
## 4028 Hochfilzen Pursuit 55
## 4029 Hochfilzen Pursuit 55
## 4030 Hochfilzen Pursuit 55
## 4031 Hochfilzen Pursuit 55
## 4032 Hochfilzen Pursuit 55
## 4033 Hochfilzen Pursuit 55
## 4034 Hochfilzen Pursuit 55
## 4035 Hochfilzen Pursuit 55
## 4036 Hochfilzen Pursuit 55
## 4037 Hochfilzen Pursuit 55
## 4038 Hochfilzen Pursuit 55
## 4039 Hochfilzen Pursuit 55
## 4040 Hochfilzen Pursuit 55
## 4041 Hochfilzen Pursuit 55
## 4042 Hochfilzen Pursuit 55
## 4043 Hochfilzen Pursuit 55
## 4044 Hochfilzen Pursuit 55
## 4045 Hochfilzen Pursuit 55
## 4046 Hochfilzen Pursuit 55
## 4047 Hochfilzen Pursuit 55
## 4048 Hochfilzen Pursuit 55
## 4049 Hochfilzen Pursuit 55
## 4050 Hochfilzen Pursuit 55
## 4051 Hochfilzen Pursuit 55
## 4052 Hochfilzen Pursuit 55
## 4053 Hochfilzen Pursuit 55
## 4054 Hochfilzen Pursuit 55
## 4055 Hochfilzen Pursuit 55
## 4056 Hochfilzen Pursuit 55
## 4057 Hochfilzen Pursuit 55
## 4058 Hochfilzen Pursuit 55
## 4059 Hochfilzen Pursuit 55
## 4060 Hochfilzen Pursuit 55
## 4061 Hochfilzen Pursuit 55
## 4062 Hochfilzen Pursuit 55
## 4063 Hochfilzen Pursuit 55
## 4064 Hochfilzen Pursuit 55
## 4065 Hochfilzen Pursuit 55
## 4066 Hochfilzen Pursuit 55
## 4067 Hochfilzen Pursuit 55
## 4068 Hochfilzen Pursuit 55
## 4069 Hochfilzen Pursuit 55
## 4070 Hochfilzen Pursuit 55
## 4071 Hochfilzen Pursuit 55
## 4072 Hochfilzen Pursuit 55
## 4073 Hochfilzen Pursuit 55
## 4074 Kontiolahti Sprint 58
## 4075 Kontiolahti Sprint 58
## 4076 Kontiolahti Sprint 58
## 4077 Kontiolahti Sprint 58
## 4078 Kontiolahti Sprint 58
## 4079 Kontiolahti Sprint 58
## 4080 Kontiolahti Sprint 58
## 4081 Kontiolahti Sprint 58
## 4082 Kontiolahti Sprint 58
## 4083 Kontiolahti Sprint 58
## 4084 Kontiolahti Sprint 58
## 4085 Kontiolahti Sprint 58
## 4086 Kontiolahti Sprint 58
## 4087 Kontiolahti Sprint 58
## 4088 Kontiolahti Sprint 58
## 4089 Kontiolahti Sprint 58
## 4090 Kontiolahti Sprint 58
## 4091 Kontiolahti Sprint 58
## 4092 Kontiolahti Sprint 58
## 4093 Kontiolahti Sprint 58
## 4094 Kontiolahti Sprint 58
## 4095 Kontiolahti Sprint 58
## 4096 Kontiolahti Sprint 58
## 4097 Kontiolahti Sprint 58
## 4098 Kontiolahti Sprint 58
## 4099 Kontiolahti Sprint 58
## 4100 Kontiolahti Sprint 58
## 4101 Kontiolahti Sprint 58
## 4102 Kontiolahti Sprint 58
## 4103 Kontiolahti Sprint 58
## 4104 Kontiolahti Sprint 58
## 4105 Kontiolahti Sprint 58
## 4106 Kontiolahti Sprint 58
## 4107 Kontiolahti Sprint 58
## 4108 Kontiolahti Sprint 58
## 4109 Kontiolahti Sprint 58
## 4110 Kontiolahti Sprint 58
## 4111 Kontiolahti Sprint 58
## 4112 Kontiolahti Sprint 58
## 4113 Kontiolahti Sprint 58
## 4114 Kontiolahti Sprint 58
## 4115 Kontiolahti Sprint 58
## 4116 Kontiolahti Sprint 58
## 4117 Kontiolahti Sprint 58
## 4118 Kontiolahti Sprint 58
## 4119 Kontiolahti Sprint 58
## 4120 Kontiolahti Sprint 58
## 4121 Kontiolahti Sprint 58
## 4122 Kontiolahti Sprint 58
## 4123 Kontiolahti Sprint 58
## 4124 Kontiolahti Sprint 58
## 4125 Kontiolahti Sprint 58
## 4126 Kontiolahti Sprint 58
## 4127 Kontiolahti Sprint 58
## 4128 Kontiolahti Sprint 58
## 4129 Kontiolahti Sprint 58
## 4130 Kontiolahti Sprint 58
## 4131 Kontiolahti Sprint 58
## 4132 Kontiolahti Sprint 58
## 4133 Kontiolahti Sprint 58
## 4134 Kontiolahti Sprint 58
## 4135 Kontiolahti Sprint 58
## 4136 Kontiolahti Sprint 58
## 4137 Kontiolahti Sprint 58
## 4138 Kontiolahti Sprint 58
## 4139 Kontiolahti Sprint 58
## 4140 Kontiolahti Sprint 58
## 4141 Kontiolahti Sprint 58
## 4142 Kontiolahti Sprint 58
## 4143 Kontiolahti Sprint 58
## 4144 Kontiolahti Sprint 58
## 4145 Kontiolahti Sprint 58
## 4146 Kontiolahti Sprint 58
## 4147 Kontiolahti Sprint 58
## 4148 Kontiolahti Sprint 58
## 4149 Kontiolahti Sprint 58
## 4150 Kontiolahti Sprint 58
## 4151 Kontiolahti Sprint 58
## 4152 Kontiolahti Sprint 58
## 4153 Kontiolahti Sprint 58
## 4154 Kontiolahti Sprint 58
## 4155 Kontiolahti Sprint 58
## 4156 Kontiolahti Sprint 58
## 4157 Kontiolahti Sprint 58
## 4158 Kontiolahti Sprint 58
## 4159 Kontiolahti Sprint 58
## 4160 Kontiolahti Sprint 58
## 4161 Kontiolahti Sprint 58
## 4162 Kontiolahti Sprint 58
## 4163 Kontiolahti Sprint 58
## 4164 Kontiolahti Sprint 58
## 4165 Kontiolahti Sprint 58
## 4166 Kontiolahti Sprint 58
## 4167 Kontiolahti Sprint 58
## 4168 Kontiolahti Sprint 58
## 4169 Kontiolahti Sprint 58
## 4170 Kontiolahti Sprint 58
## 4171 Kontiolahti Sprint 58
## 4172 Kontiolahti Sprint 58
## 4173 Kontiolahti Sprint 58
## 4174 Kontiolahti Sprint 58
## 4175 Kontiolahti Pursuit 57
## 4176 Kontiolahti Pursuit 57
## 4177 Kontiolahti Pursuit 57
## 4178 Kontiolahti Pursuit 57
## 4179 Kontiolahti Pursuit 57
## 4180 Kontiolahti Pursuit 57
## 4181 Kontiolahti Pursuit 57
## 4182 Kontiolahti Pursuit 57
## 4183 Kontiolahti Pursuit 57
## 4184 Kontiolahti Pursuit 57
## 4185 Kontiolahti Pursuit 57
## 4186 Kontiolahti Pursuit 57
## 4187 Kontiolahti Pursuit 57
## 4188 Kontiolahti Pursuit 57
## 4189 Kontiolahti Pursuit 57
## 4190 Kontiolahti Pursuit 57
## 4191 Kontiolahti Pursuit 57
## 4192 Kontiolahti Pursuit 57
## 4193 Kontiolahti Pursuit 57
## 4194 Kontiolahti Pursuit 57
## 4195 Kontiolahti Pursuit 57
## 4196 Kontiolahti Pursuit 57
## 4197 Kontiolahti Pursuit 57
## 4198 Kontiolahti Pursuit 57
## 4199 Kontiolahti Pursuit 57
## 4200 Kontiolahti Pursuit 57
## 4201 Kontiolahti Pursuit 57
## 4202 Kontiolahti Pursuit 57
## 4203 Kontiolahti Pursuit 57
## 4204 Kontiolahti Pursuit 57
## 4205 Kontiolahti Pursuit 57
## 4206 Kontiolahti Pursuit 57
## 4207 Kontiolahti Pursuit 57
## 4208 Kontiolahti Pursuit 57
## 4209 Kontiolahti Pursuit 57
## 4210 Kontiolahti Pursuit 57
## 4211 Kontiolahti Pursuit 57
## 4212 Kontiolahti Pursuit 57
## 4213 Kontiolahti Pursuit 57
## 4214 Kontiolahti Pursuit 57
## 4215 Kontiolahti Pursuit 57
## 4216 Kontiolahti Pursuit 57
## 4217 Kontiolahti Pursuit 57
## 4218 Kontiolahti Pursuit 57
## 4219 Kontiolahti Pursuit 57
## 4220 Kontiolahti Pursuit 57
## 4221 Kontiolahti Pursuit 57
## 4222 Kontiolahti Pursuit 57
## 4223 Kontiolahti Pursuit 57
## 4224 Kontiolahti Pursuit 57
## 4225 Kontiolahti Pursuit 57
## 4226 Kontiolahti Pursuit 57
## 4227 Kontiolahti Pursuit 57
## 4228 Kontiolahti Pursuit 57
## 4229 Nove_Mesto Sprint 61
## 4230 Nove_Mesto Sprint 61
## 4231 Nove_Mesto Sprint 61
## 4232 Nove_Mesto Sprint 61
## 4233 Nove_Mesto Sprint 61
## 4234 Nove_Mesto Sprint 61
## 4235 Nove_Mesto Sprint 61
## 4236 Nove_Mesto Sprint 61
## 4237 Nove_Mesto Sprint 61
## 4238 Nove_Mesto Sprint 61
## 4239 Nove_Mesto Sprint 61
## 4240 Nove_Mesto Sprint 61
## 4241 Nove_Mesto Sprint 61
## 4242 Nove_Mesto Sprint 61
## 4243 Nove_Mesto Sprint 61
## 4244 Nove_Mesto Sprint 61
## 4245 Nove_Mesto Sprint 61
## 4246 Nove_Mesto Sprint 61
## 4247 Nove_Mesto Sprint 61
## 4248 Nove_Mesto Sprint 61
## 4249 Nove_Mesto Sprint 61
## 4250 Nove_Mesto Sprint 61
## 4251 Nove_Mesto Sprint 61
## 4252 Nove_Mesto Sprint 61
## 4253 Nove_Mesto Sprint 61
## 4254 Nove_Mesto Sprint 61
## 4255 Nove_Mesto Sprint 61
## 4256 Nove_Mesto Sprint 61
## 4257 Nove_Mesto Sprint 61
## 4258 Nove_Mesto Sprint 61
## 4259 Nove_Mesto Sprint 61
## 4260 Nove_Mesto Sprint 61
## 4261 Nove_Mesto Sprint 61
## 4262 Nove_Mesto Sprint 61
## 4263 Nove_Mesto Sprint 61
## 4264 Nove_Mesto Sprint 61
## 4265 Nove_Mesto Sprint 61
## 4266 Nove_Mesto Sprint 61
## 4267 Nove_Mesto Sprint 61
## 4268 Nove_Mesto Sprint 61
## 4269 Nove_Mesto Sprint 61
## 4270 Nove_Mesto Sprint 61
## 4271 Nove_Mesto Sprint 61
## 4272 Nove_Mesto Sprint 61
## 4273 Nove_Mesto Sprint 61
## 4274 Nove_Mesto Sprint 61
## 4275 Nove_Mesto Sprint 61
## 4276 Nove_Mesto Sprint 61
## 4277 Nove_Mesto Sprint 61
## 4278 Nove_Mesto Sprint 61
## 4279 Nove_Mesto Sprint 61
## 4280 Nove_Mesto Sprint 61
## 4281 Nove_Mesto Sprint 61
## 4282 Nove_Mesto Sprint 61
## 4283 Nove_Mesto Sprint 61
## 4284 Nove_Mesto Sprint 61
## 4285 Nove_Mesto Sprint 61
## 4286 Nove_Mesto Sprint 61
## 4287 Nove_Mesto Sprint 61
## 4288 Nove_Mesto Sprint 61
## 4289 Nove_Mesto Sprint 61
## 4290 Nove_Mesto Sprint 61
## 4291 Nove_Mesto Sprint 61
## 4292 Nove_Mesto Sprint 61
## 4293 Nove_Mesto Sprint 61
## 4294 Nove_Mesto Sprint 61
## 4295 Nove_Mesto Sprint 61
## 4296 Nove_Mesto Sprint 61
## 4297 Nove_Mesto Sprint 61
## 4298 Nove_Mesto Sprint 61
## 4299 Nove_Mesto Sprint 61
## 4300 Nove_Mesto Sprint 61
## 4301 Nove_Mesto Sprint 61
## 4302 Nove_Mesto Sprint 61
## 4303 Nove_Mesto Sprint 61
## 4304 Nove_Mesto Sprint 61
## 4305 Nove_Mesto Sprint 61
## 4306 Nove_Mesto Sprint 61
## 4307 Nove_Mesto Sprint 61
## 4308 Nove_Mesto Sprint 61
## 4309 Nove_Mesto Sprint 61
## 4310 Nove_Mesto Sprint 61
## 4311 Nove_Mesto Sprint 61
## 4312 Nove_Mesto Sprint 61
## 4313 Nove_Mesto Sprint 61
## 4314 Nove_Mesto Sprint 61
## 4315 Nove_Mesto Sprint 61
## 4316 Nove_Mesto Sprint 61
## 4317 Nove_Mesto Sprint 61
## 4318 Nove_Mesto Sprint 61
## 4319 Nove_Mesto Sprint 61
## 4320 Nove_Mesto Sprint 61
## 4321 Nove_Mesto Sprint 61
## 4322 Nove_Mesto Sprint 61
## 4323 Nove_Mesto Sprint 61
## 4324 Nove_Mesto Sprint 61
## 4325 Nove_Mesto Sprint 61
## 4326 Nove_Mesto Sprint 61
## 4327 Nove_Mesto Sprint 61
## 4328 Nove_Mesto Sprint 61
## 4329 Nove_Mesto Sprint 61
## 4330 Nove_Mesto Mass start 59
## 4331 Nove_Mesto Mass start 59
## 4332 Nove_Mesto Mass start 59
## 4333 Nove_Mesto Mass start 59
## 4334 Nove_Mesto Mass start 59
## 4335 Nove_Mesto Mass start 59
## 4336 Nove_Mesto Mass start 59
## 4337 Nove_Mesto Mass start 59
## 4338 Nove_Mesto Mass start 59
## 4339 Nove_Mesto Mass start 59
## 4340 Nove_Mesto Mass start 59
## 4341 Nove_Mesto Mass start 59
## 4342 Nove_Mesto Mass start 59
## 4343 Nove_Mesto Mass start 59
## 4344 Nove_Mesto Mass start 59
## 4345 Nove_Mesto Mass start 59
## 4346 Nove_Mesto Mass start 59
## 4347 Nove_Mesto Mass start 59
## 4348 Nove_Mesto Mass start 59
## 4349 Nove_Mesto Mass start 59
## 4350 Nove_Mesto Mass start 59
## 4351 Nove_Mesto Mass start 59
## 4352 Nove_Mesto Mass start 59
## 4353 Nove_Mesto Mass start 59
## 4354 Nove_Mesto Mass start 59
## 4355 Nove_Mesto Mass start 59
## 4356 Nove_Mesto Mass start 59
## 4357 Nove_Mesto Mass start 59
## 4358 Nove_Mesto Mass start 59
## 4359 Nove_Mesto Mass start 59
## 4360 Nove_Mesto Pursuit 60
## 4361 Nove_Mesto Pursuit 60
## 4362 Nove_Mesto Pursuit 60
## 4363 Nove_Mesto Pursuit 60
## 4364 Nove_Mesto Pursuit 60
## 4365 Nove_Mesto Pursuit 60
## 4366 Nove_Mesto Pursuit 60
## 4367 Nove_Mesto Pursuit 60
## 4368 Nove_Mesto Pursuit 60
## 4369 Nove_Mesto Pursuit 60
## 4370 Nove_Mesto Pursuit 60
## 4371 Nove_Mesto Pursuit 60
## 4372 Nove_Mesto Pursuit 60
## 4373 Nove_Mesto Pursuit 60
## 4374 Nove_Mesto Pursuit 60
## 4375 Nove_Mesto Pursuit 60
## 4376 Nove_Mesto Pursuit 60
## 4377 Nove_Mesto Pursuit 60
## 4378 Nove_Mesto Pursuit 60
## 4379 Nove_Mesto Pursuit 60
## 4380 Nove_Mesto Pursuit 60
## 4381 Nove_Mesto Pursuit 60
## 4382 Nove_Mesto Pursuit 60
## 4383 Nove_Mesto Pursuit 60
## 4384 Nove_Mesto Pursuit 60
## 4385 Nove_Mesto Pursuit 60
## 4386 Nove_Mesto Pursuit 60
## 4387 Nove_Mesto Pursuit 60
## 4388 Nove_Mesto Pursuit 60
## 4389 Nove_Mesto Pursuit 60
## 4390 Nove_Mesto Pursuit 60
## 4391 Nove_Mesto Pursuit 60
## 4392 Nove_Mesto Pursuit 60
## 4393 Nove_Mesto Pursuit 60
## 4394 Nove_Mesto Pursuit 60
## 4395 Nove_Mesto Pursuit 60
## 4396 Nove_Mesto Pursuit 60
## 4397 Nove_Mesto Pursuit 60
## 4398 Nove_Mesto Pursuit 60
## 4399 Nove_Mesto Pursuit 60
## 4400 Nove_Mesto Pursuit 60
## 4401 Nove_Mesto Pursuit 60
## 4402 Nove_Mesto Pursuit 60
## 4403 Nove_Mesto Pursuit 60
## 4404 Nove_Mesto Pursuit 60
## 4405 Nove_Mesto Pursuit 60
## 4406 Nove_Mesto Pursuit 60
## 4407 Nove_Mesto Pursuit 60
## 4408 Nove_Mesto Pursuit 60
## 4409 Nove_Mesto Pursuit 60
## 4410 Nove_Mesto Pursuit 60
## 4411 Nove_Mesto Pursuit 60
## 4412 Nove_Mesto Pursuit 60
## 4413 Nove_Mesto Pursuit 60
## 4414 Nove_Mesto Pursuit 60
## 4415 Nove_Mesto Pursuit 60
## 4416 Nove_Mesto Pursuit 60
## 4417 Oberhof Sprint 64
## 4418 Oberhof Sprint 64
## 4419 Oberhof Sprint 64
## 4420 Oberhof Sprint 64
## 4421 Oberhof Sprint 64
## 4422 Oberhof Sprint 64
## 4423 Oberhof Sprint 64
## 4424 Oberhof Sprint 64
## 4425 Oberhof Sprint 64
## 4426 Oberhof Sprint 64
## 4427 Oberhof Sprint 64
## 4428 Oberhof Sprint 64
## 4429 Oberhof Sprint 64
## 4430 Oberhof Sprint 64
## 4431 Oberhof Sprint 64
## 4432 Oberhof Sprint 64
## 4433 Oberhof Sprint 64
## 4434 Oberhof Sprint 64
## 4435 Oberhof Sprint 64
## 4436 Oberhof Sprint 64
## 4437 Oberhof Sprint 64
## 4438 Oberhof Sprint 64
## 4439 Oberhof Sprint 64
## 4440 Oberhof Sprint 64
## 4441 Oberhof Sprint 64
## 4442 Oberhof Sprint 64
## 4443 Oberhof Sprint 64
## 4444 Oberhof Sprint 64
## 4445 Oberhof Sprint 64
## 4446 Oberhof Sprint 64
## 4447 Oberhof Sprint 64
## 4448 Oberhof Sprint 64
## 4449 Oberhof Sprint 64
## 4450 Oberhof Sprint 64
## 4451 Oberhof Sprint 64
## 4452 Oberhof Sprint 64
## 4453 Oberhof Sprint 64
## 4454 Oberhof Sprint 64
## 4455 Oberhof Sprint 64
## 4456 Oberhof Sprint 64
## 4457 Oberhof Sprint 64
## 4458 Oberhof Sprint 64
## 4459 Oberhof Sprint 64
## 4460 Oberhof Sprint 64
## 4461 Oberhof Sprint 64
## 4462 Oberhof Sprint 64
## 4463 Oberhof Sprint 64
## 4464 Oberhof Sprint 64
## 4465 Oberhof Sprint 64
## 4466 Oberhof Sprint 64
## 4467 Oberhof Sprint 64
## 4468 Oberhof Sprint 64
## 4469 Oberhof Sprint 64
## 4470 Oberhof Sprint 64
## 4471 Oberhof Sprint 64
## 4472 Oberhof Sprint 64
## 4473 Oberhof Sprint 64
## 4474 Oberhof Sprint 64
## 4475 Oberhof Sprint 64
## 4476 Oberhof Sprint 64
## 4477 Oberhof Sprint 64
## 4478 Oberhof Sprint 64
## 4479 Oberhof Sprint 64
## 4480 Oberhof Sprint 64
## 4481 Oberhof Sprint 64
## 4482 Oberhof Sprint 64
## 4483 Oberhof Sprint 64
## 4484 Oberhof Sprint 64
## 4485 Oberhof Sprint 64
## 4486 Oberhof Sprint 64
## 4487 Oberhof Sprint 64
## 4488 Oberhof Sprint 64
## 4489 Oberhof Sprint 64
## 4490 Oberhof Sprint 64
## 4491 Oberhof Sprint 64
## 4492 Oberhof Sprint 64
## 4493 Oberhof Sprint 64
## 4494 Oberhof Sprint 64
## 4495 Oberhof Sprint 64
## 4496 Oberhof Sprint 64
## 4497 Oberhof Sprint 64
## 4498 Oberhof Sprint 64
## 4499 Oberhof Sprint 64
## 4500 Oberhof Sprint 64
## 4501 Oberhof Sprint 64
## 4502 Oberhof Sprint 64
## 4503 Oberhof Sprint 64
## 4504 Oberhof Sprint 64
## 4505 Oberhof Sprint 64
## 4506 Oberhof Sprint 64
## 4507 Oberhof Sprint 64
## 4508 Oberhof Sprint 64
## 4509 Oberhof Sprint 64
## 4510 Oberhof Sprint 64
## 4511 Oberhof Sprint 64
## 4512 Oberhof Sprint 64
## 4513 Oberhof Sprint 64
## 4514 Oberhof Sprint 64
## 4515 Oberhof Sprint 64
## 4516 Oberhof Sprint 64
## 4517 Oberhof Sprint 64
## 4518 Oberhof Sprint 64
## 4519 Oberhof Mass start 62
## 4520 Oberhof Mass start 62
## 4521 Oberhof Mass start 62
## 4522 Oberhof Mass start 62
## 4523 Oberhof Mass start 62
## 4524 Oberhof Mass start 62
## 4525 Oberhof Mass start 62
## 4526 Oberhof Mass start 62
## 4527 Oberhof Mass start 62
## 4528 Oberhof Mass start 62
## 4529 Oberhof Mass start 62
## 4530 Oberhof Mass start 62
## 4531 Oberhof Mass start 62
## 4532 Oberhof Mass start 62
## 4533 Oberhof Mass start 62
## 4534 Oberhof Mass start 62
## 4535 Oberhof Mass start 62
## 4536 Oberhof Mass start 62
## 4537 Oberhof Mass start 62
## 4538 Oberhof Mass start 62
## 4539 Oberhof Mass start 62
## 4540 Oberhof Mass start 62
## 4541 Oberhof Mass start 62
## 4542 Oberhof Mass start 62
## 4543 Oberhof Mass start 62
## 4544 Oberhof Mass start 62
## 4545 Oberhof Mass start 62
## 4546 Oberhof Mass start 62
## 4547 Oberhof Mass start 62
## 4548 Oberhof Pursuit 63
## 4549 Oberhof Pursuit 63
## 4550 Oberhof Pursuit 63
## 4551 Oberhof Pursuit 63
## 4552 Oberhof Pursuit 63
## 4553 Oberhof Pursuit 63
## 4554 Oberhof Pursuit 63
## 4555 Oberhof Pursuit 63
## 4556 Oberhof Pursuit 63
## 4557 Oberhof Pursuit 63
## 4558 Oberhof Pursuit 63
## 4559 Oberhof Pursuit 63
## 4560 Oberhof Pursuit 63
## 4561 Oberhof Pursuit 63
## 4562 Oberhof Pursuit 63
## 4563 Oberhof Pursuit 63
## 4564 Oberhof Pursuit 63
## 4565 Oberhof Pursuit 63
## 4566 Oberhof Pursuit 63
## 4567 Oberhof Pursuit 63
## 4568 Oberhof Pursuit 63
## 4569 Oberhof Pursuit 63
## 4570 Oberhof Pursuit 63
## 4571 Oberhof Pursuit 63
## 4572 Oberhof Pursuit 63
## 4573 Oberhof Pursuit 63
## 4574 Oberhof Pursuit 63
## 4575 Oberhof Pursuit 63
## 4576 Oberhof Pursuit 63
## 4577 Oberhof Pursuit 63
## 4578 Oberhof Pursuit 63
## 4579 Oberhof Pursuit 63
## 4580 Oberhof Pursuit 63
## 4581 Oberhof Pursuit 63
## 4582 Oberhof Pursuit 63
## 4583 Oberhof Pursuit 63
## 4584 Oberhof Pursuit 63
## 4585 Oberhof Pursuit 63
## 4586 Oberhof Pursuit 63
## 4587 Oberhof Pursuit 63
## 4588 Oberhof Pursuit 63
## 4589 Oberhof Pursuit 63
## 4590 Oberhof Pursuit 63
## 4591 Oberhof Pursuit 63
## 4592 Oberhof Pursuit 63
## 4593 Oberhof Pursuit 63
## 4594 Oberhof Pursuit 63
## 4595 Oberhof Pursuit 63
## 4596 Oberhof Pursuit 63
## 4597 Oberhof Pursuit 63
## 4598 Oberhof Pursuit 63
## 4599 Oberhof Pursuit 63
## 4600 Oberhof Pursuit 63
## 4601 Oberhof Pursuit 63
## 4602 Oberhof Pursuit 63
## 4603 Oberhof Pursuit 63
## 4604 Oestersund Sprint 67
## 4605 Oestersund Sprint 67
## 4606 Oestersund Sprint 67
## 4607 Oestersund Sprint 67
## 4608 Oestersund Sprint 67
## 4609 Oestersund Sprint 67
## 4610 Oestersund Sprint 67
## 4611 Oestersund Sprint 67
## 4612 Oestersund Sprint 67
## 4613 Oestersund Sprint 67
## 4614 Oestersund Sprint 67
## 4615 Oestersund Sprint 67
## 4616 Oestersund Sprint 67
## 4617 Oestersund Sprint 67
## 4618 Oestersund Sprint 67
## 4619 Oestersund Sprint 67
## 4620 Oestersund Sprint 67
## 4621 Oestersund Sprint 67
## 4622 Oestersund Sprint 67
## 4623 Oestersund Sprint 67
## 4624 Oestersund Sprint 67
## 4625 Oestersund Sprint 67
## 4626 Oestersund Sprint 67
## 4627 Oestersund Sprint 67
## 4628 Oestersund Sprint 67
## 4629 Oestersund Sprint 67
## 4630 Oestersund Sprint 67
## 4631 Oestersund Sprint 67
## 4632 Oestersund Sprint 67
## 4633 Oestersund Sprint 67
## 4634 Oestersund Sprint 67
## 4635 Oestersund Sprint 67
## 4636 Oestersund Sprint 67
## 4637 Oestersund Sprint 67
## 4638 Oestersund Sprint 67
## 4639 Oestersund Sprint 67
## 4640 Oestersund Sprint 67
## 4641 Oestersund Sprint 67
## 4642 Oestersund Sprint 67
## 4643 Oestersund Sprint 67
## 4644 Oestersund Sprint 67
## 4645 Oestersund Sprint 67
## 4646 Oestersund Sprint 67
## 4647 Oestersund Sprint 67
## 4648 Oestersund Sprint 67
## 4649 Oestersund Sprint 67
## 4650 Oestersund Sprint 67
## 4651 Oestersund Sprint 67
## 4652 Oestersund Sprint 67
## 4653 Oestersund Sprint 67
## 4654 Oestersund Sprint 67
## 4655 Oestersund Sprint 67
## 4656 Oestersund Sprint 67
## 4657 Oestersund Sprint 67
## 4658 Oestersund Sprint 67
## 4659 Oestersund Sprint 67
## 4660 Oestersund Sprint 67
## 4661 Oestersund Sprint 67
## 4662 Oestersund Sprint 67
## 4663 Oestersund Sprint 67
## 4664 Oestersund Sprint 67
## 4665 Oestersund Sprint 67
## 4666 Oestersund Sprint 67
## 4667 Oestersund Sprint 67
## 4668 Oestersund Sprint 67
## 4669 Oestersund Sprint 67
## 4670 Oestersund Sprint 67
## 4671 Oestersund Sprint 67
## 4672 Oestersund Sprint 67
## 4673 Oestersund Sprint 67
## 4674 Oestersund Sprint 67
## 4675 Oestersund Sprint 67
## 4676 Oestersund Sprint 67
## 4677 Oestersund Sprint 67
## 4678 Oestersund Sprint 67
## 4679 Oestersund Sprint 67
## 4680 Oestersund Sprint 67
## 4681 Oestersund Sprint 67
## 4682 Oestersund Sprint 67
## 4683 Oestersund Sprint 67
## 4684 Oestersund Sprint 67
## 4685 Oestersund Sprint 67
## 4686 Oestersund Sprint 67
## 4687 Oestersund Sprint 67
## 4688 Oestersund Sprint 67
## 4689 Oestersund Sprint 67
## 4690 Oestersund Sprint 67
## 4691 Oestersund Sprint 67
## 4692 Oestersund Sprint 67
## 4693 Oestersund Sprint 67
## 4694 Oestersund Sprint 67
## 4695 Oestersund Sprint 67
## 4696 Oestersund Sprint 67
## 4697 Oestersund Sprint 67
## 4698 Oestersund Sprint 67
## 4699 Oestersund Sprint 67
## 4700 Oestersund Sprint 67
## 4701 Oestersund Sprint 67
## 4702 Oestersund Sprint 67
## 4703 Oestersund Sprint 67
## 4704 Oestersund Sprint 67
## 4705 Oestersund Sprint 67
## 4706 Oestersund Sprint 67
## 4707 Oestersund Sprint 67
## 4708 Oestersund Sprint 67
## 4709 Oestersund Individual 65
## 4710 Oestersund Individual 65
## 4711 Oestersund Individual 65
## 4712 Oestersund Individual 65
## 4713 Oestersund Individual 65
## 4714 Oestersund Individual 65
## 4715 Oestersund Individual 65
## 4716 Oestersund Individual 65
## 4717 Oestersund Individual 65
## 4718 Oestersund Individual 65
## 4719 Oestersund Individual 65
## 4720 Oestersund Individual 65
## 4721 Oestersund Individual 65
## 4722 Oestersund Individual 65
## 4723 Oestersund Individual 65
## 4724 Oestersund Individual 65
## 4725 Oestersund Individual 65
## 4726 Oestersund Individual 65
## 4727 Oestersund Individual 65
## 4728 Oestersund Individual 65
## 4729 Oestersund Individual 65
## 4730 Oestersund Individual 65
## 4731 Oestersund Individual 65
## 4732 Oestersund Individual 65
## 4733 Oestersund Individual 65
## 4734 Oestersund Individual 65
## 4735 Oestersund Individual 65
## 4736 Oestersund Individual 65
## 4737 Oestersund Individual 65
## 4738 Oestersund Individual 65
## 4739 Oestersund Individual 65
## 4740 Oestersund Individual 65
## 4741 Oestersund Individual 65
## 4742 Oestersund Individual 65
## 4743 Oestersund Individual 65
## 4744 Oestersund Individual 65
## 4745 Oestersund Individual 65
## 4746 Oestersund Individual 65
## 4747 Oestersund Individual 65
## 4748 Oestersund Individual 65
## 4749 Oestersund Individual 65
## 4750 Oestersund Individual 65
## 4751 Oestersund Individual 65
## 4752 Oestersund Individual 65
## 4753 Oestersund Individual 65
## 4754 Oestersund Individual 65
## 4755 Oestersund Individual 65
## 4756 Oestersund Individual 65
## 4757 Oestersund Individual 65
## 4758 Oestersund Individual 65
## 4759 Oestersund Individual 65
## 4760 Oestersund Individual 65
## 4761 Oestersund Individual 65
## 4762 Oestersund Individual 65
## 4763 Oestersund Individual 65
## 4764 Oestersund Individual 65
## 4765 Oestersund Individual 65
## 4766 Oestersund Individual 65
## 4767 Oestersund Individual 65
## 4768 Oestersund Individual 65
## 4769 Oestersund Individual 65
## 4770 Oestersund Individual 65
## 4771 Oestersund Individual 65
## 4772 Oestersund Individual 65
## 4773 Oestersund Individual 65
## 4774 Oestersund Individual 65
## 4775 Oestersund Individual 65
## 4776 Oestersund Individual 65
## 4777 Oestersund Individual 65
## 4778 Oestersund Individual 65
## 4779 Oestersund Individual 65
## 4780 Oestersund Individual 65
## 4781 Oestersund Individual 65
## 4782 Oestersund Individual 65
## 4783 Oestersund Individual 65
## 4784 Oestersund Individual 65
## 4785 Oestersund Individual 65
## 4786 Oestersund Individual 65
## 4787 Oestersund Individual 65
## 4788 Oestersund Individual 65
## 4789 Oestersund Individual 65
## 4790 Oestersund Individual 65
## 4791 Oestersund Individual 65
## 4792 Oestersund Individual 65
## 4793 Oestersund Individual 65
## 4794 Oestersund Individual 65
## 4795 Oestersund Individual 65
## 4796 Oestersund Individual 65
## 4797 Oestersund Individual 65
## 4798 Oestersund Individual 65
## 4799 Oestersund Individual 65
## 4800 Oestersund Individual 65
## 4801 Oestersund Individual 65
## 4802 Oestersund Individual 65
## 4803 Oestersund Individual 65
## 4804 Oestersund Individual 65
## 4805 Oestersund Individual 65
## 4806 Oestersund Individual 65
## 4807 Oestersund Individual 65
## 4808 Oestersund Individual 65
## 4809 Oestersund Individual 65
## 4810 Oestersund Individual 65
## 4811 Oestersund Individual 65
## 4812 Oestersund Pursuit 66
## 4813 Oestersund Pursuit 66
## 4814 Oestersund Pursuit 66
## 4815 Oestersund Pursuit 66
## 4816 Oestersund Pursuit 66
## 4817 Oestersund Pursuit 66
## 4818 Oestersund Pursuit 66
## 4819 Oestersund Pursuit 66
## 4820 Oestersund Pursuit 66
## 4821 Oestersund Pursuit 66
## 4822 Oestersund Pursuit 66
## 4823 Oestersund Pursuit 66
## 4824 Oestersund Pursuit 66
## 4825 Oestersund Pursuit 66
## 4826 Oestersund Pursuit 66
## 4827 Oestersund Pursuit 66
## 4828 Oestersund Pursuit 66
## 4829 Oestersund Pursuit 66
## 4830 Oestersund Pursuit 66
## 4831 Oestersund Pursuit 66
## 4832 Oestersund Pursuit 66
## 4833 Oestersund Pursuit 66
## 4834 Oestersund Pursuit 66
## 4835 Oestersund Pursuit 66
## 4836 Oestersund Pursuit 66
## 4837 Oestersund Pursuit 66
## 4838 Oestersund Pursuit 66
## 4839 Oestersund Pursuit 66
## 4840 Oestersund Pursuit 66
## 4841 Oestersund Pursuit 66
## 4842 Oestersund Pursuit 66
## 4843 Oestersund Pursuit 66
## 4844 Oestersund Pursuit 66
## 4845 Oestersund Pursuit 66
## 4846 Oestersund Pursuit 66
## 4847 Oestersund Pursuit 66
## 4848 Oestersund Pursuit 66
## 4849 Oestersund Pursuit 66
## 4850 Oestersund Pursuit 66
## 4851 Oestersund Pursuit 66
## 4852 Oestersund Pursuit 66
## 4853 Oestersund Pursuit 66
## 4854 Oestersund Pursuit 66
## 4855 Oestersund Pursuit 66
## 4856 Oestersund Pursuit 66
## 4857 Oestersund Pursuit 66
## 4858 Oestersund Pursuit 66
## 4859 Oestersund Pursuit 66
## 4860 Oestersund Pursuit 66
## 4861 Oestersund Pursuit 66
## 4862 Oestersund Pursuit 66
## 4863 Oestersund Pursuit 66
## 4864 Oestersund Pursuit 66
## 4865 Oestersund Pursuit 66
## 4866 Oestersund Pursuit 66
## 4867 Oestersund Pursuit 66
## 4868 Oestersund Pursuit 66
## 4869 Oestersund Pursuit 66
## 4870 Oestersund Pursuit 66
## 4871 Oslo_Holmenkollen Sprint 70
## 4872 Oslo_Holmenkollen Sprint 70
## 4873 Oslo_Holmenkollen Sprint 70
## 4874 Oslo_Holmenkollen Sprint 70
## 4875 Oslo_Holmenkollen Sprint 70
## 4876 Oslo_Holmenkollen Sprint 70
## 4877 Oslo_Holmenkollen Sprint 70
## 4878 Oslo_Holmenkollen Sprint 70
## 4879 Oslo_Holmenkollen Sprint 70
## 4880 Oslo_Holmenkollen Sprint 70
## 4881 Oslo_Holmenkollen Sprint 70
## 4882 Oslo_Holmenkollen Sprint 70
## 4883 Oslo_Holmenkollen Sprint 70
## 4884 Oslo_Holmenkollen Sprint 70
## 4885 Oslo_Holmenkollen Sprint 70
## 4886 Oslo_Holmenkollen Sprint 70
## 4887 Oslo_Holmenkollen Sprint 70
## 4888 Oslo_Holmenkollen Sprint 70
## 4889 Oslo_Holmenkollen Sprint 70
## 4890 Oslo_Holmenkollen Sprint 70
## 4891 Oslo_Holmenkollen Sprint 70
## 4892 Oslo_Holmenkollen Sprint 70
## 4893 Oslo_Holmenkollen Sprint 70
## 4894 Oslo_Holmenkollen Sprint 70
## 4895 Oslo_Holmenkollen Sprint 70
## 4896 Oslo_Holmenkollen Sprint 70
## 4897 Oslo_Holmenkollen Sprint 70
## 4898 Oslo_Holmenkollen Sprint 70
## 4899 Oslo_Holmenkollen Sprint 70
## 4900 Oslo_Holmenkollen Sprint 70
## 4901 Oslo_Holmenkollen Sprint 70
## 4902 Oslo_Holmenkollen Sprint 70
## 4903 Oslo_Holmenkollen Sprint 70
## 4904 Oslo_Holmenkollen Sprint 70
## 4905 Oslo_Holmenkollen Sprint 70
## 4906 Oslo_Holmenkollen Sprint 70
## 4907 Oslo_Holmenkollen Sprint 70
## 4908 Oslo_Holmenkollen Sprint 70
## 4909 Oslo_Holmenkollen Sprint 70
## 4910 Oslo_Holmenkollen Sprint 70
## 4911 Oslo_Holmenkollen Sprint 70
## 4912 Oslo_Holmenkollen Sprint 70
## 4913 Oslo_Holmenkollen Sprint 70
## 4914 Oslo_Holmenkollen Sprint 70
## 4915 Oslo_Holmenkollen Sprint 70
## 4916 Oslo_Holmenkollen Sprint 70
## 4917 Oslo_Holmenkollen Sprint 70
## 4918 Oslo_Holmenkollen Sprint 70
## 4919 Oslo_Holmenkollen Sprint 70
## 4920 Oslo_Holmenkollen Sprint 70
## 4921 Oslo_Holmenkollen Sprint 70
## 4922 Oslo_Holmenkollen Sprint 70
## 4923 Oslo_Holmenkollen Sprint 70
## 4924 Oslo_Holmenkollen Sprint 70
## 4925 Oslo_Holmenkollen Sprint 70
## 4926 Oslo_Holmenkollen Sprint 70
## 4927 Oslo_Holmenkollen Sprint 70
## 4928 Oslo_Holmenkollen Sprint 70
## 4929 Oslo_Holmenkollen Sprint 70
## 4930 Oslo_Holmenkollen Sprint 70
## 4931 Oslo_Holmenkollen Sprint 70
## 4932 Oslo_Holmenkollen Sprint 70
## 4933 Oslo_Holmenkollen Sprint 70
## 4934 Oslo_Holmenkollen Sprint 70
## 4935 Oslo_Holmenkollen Sprint 70
## 4936 Oslo_Holmenkollen Sprint 70
## 4937 Oslo_Holmenkollen Sprint 70
## 4938 Oslo_Holmenkollen Sprint 70
## 4939 Oslo_Holmenkollen Sprint 70
## 4940 Oslo_Holmenkollen Sprint 70
## 4941 Oslo_Holmenkollen Sprint 70
## 4942 Oslo_Holmenkollen Sprint 70
## 4943 Oslo_Holmenkollen Sprint 70
## 4944 Oslo_Holmenkollen Sprint 70
## 4945 Oslo_Holmenkollen Sprint 70
## 4946 Oslo_Holmenkollen Sprint 70
## 4947 Oslo_Holmenkollen Sprint 70
## 4948 Oslo_Holmenkollen Sprint 70
## 4949 Oslo_Holmenkollen Sprint 70
## 4950 Oslo_Holmenkollen Sprint 70
## 4951 Oslo_Holmenkollen Sprint 70
## 4952 Oslo_Holmenkollen Sprint 70
## 4953 Oslo_Holmenkollen Sprint 70
## 4954 Oslo_Holmenkollen Sprint 70
## 4955 Oslo_Holmenkollen Sprint 70
## 4956 Oslo_Holmenkollen Sprint 70
## 4957 Oslo_Holmenkollen Sprint 70
## 4958 Oslo_Holmenkollen Sprint 70
## 4959 Oslo_Holmenkollen Sprint 70
## 4960 Oslo_Holmenkollen Sprint 70
## 4961 Oslo_Holmenkollen Sprint 70
## 4962 Oslo_Holmenkollen Sprint 70
## 4963 Oslo_Holmenkollen Sprint 70
## 4964 Oslo_Holmenkollen Sprint 70
## 4965 Oslo_Holmenkollen Sprint 70
## 4966 Oslo_Holmenkollen Sprint 70
## 4967 Oslo_Holmenkollen Sprint 70
## 4968 Oslo_Holmenkollen Sprint 70
## 4969 Oslo_Holmenkollen Sprint 70
## 4970 Oslo_Holmenkollen Sprint 70
## 4971 Oslo_Holmenkollen Sprint 70
## 4972 Oslo_Holmenkollen Sprint 70
## 4973 Oslo_Holmenkollen Sprint 70
## 4974 Oslo_Holmenkollen Sprint 70
## 4975 Oslo_Holmenkollen Sprint 70
## 4976 Oslo_Holmenkollen Sprint 70
## 4977 Oslo_Holmenkollen Sprint 70
## 4978 Oslo_Holmenkollen Mass start 68
## 4979 Oslo_Holmenkollen Mass start 68
## 4980 Oslo_Holmenkollen Mass start 68
## 4981 Oslo_Holmenkollen Mass start 68
## 4982 Oslo_Holmenkollen Mass start 68
## 4983 Oslo_Holmenkollen Mass start 68
## 4984 Oslo_Holmenkollen Mass start 68
## 4985 Oslo_Holmenkollen Mass start 68
## 4986 Oslo_Holmenkollen Mass start 68
## 4987 Oslo_Holmenkollen Mass start 68
## 4988 Oslo_Holmenkollen Mass start 68
## 4989 Oslo_Holmenkollen Mass start 68
## 4990 Oslo_Holmenkollen Mass start 68
## 4991 Oslo_Holmenkollen Mass start 68
## 4992 Oslo_Holmenkollen Mass start 68
## 4993 Oslo_Holmenkollen Mass start 68
## 4994 Oslo_Holmenkollen Mass start 68
## 4995 Oslo_Holmenkollen Mass start 68
## 4996 Oslo_Holmenkollen Mass start 68
## 4997 Oslo_Holmenkollen Mass start 68
## 4998 Oslo_Holmenkollen Mass start 68
## 4999 Oslo_Holmenkollen Mass start 68
## 5000 Oslo_Holmenkollen Mass start 68
## 5001 Oslo_Holmenkollen Mass start 68
## 5002 Oslo_Holmenkollen Mass start 68
## 5003 Oslo_Holmenkollen Mass start 68
## 5004 Oslo_Holmenkollen Mass start 68
## 5005 Oslo_Holmenkollen Mass start 68
## 5006 Oslo_Holmenkollen Mass start 68
## 5007 Oslo_Holmenkollen Mass start 68
## 5008 Oslo_Holmenkollen Pursuit 69
## 5009 Oslo_Holmenkollen Pursuit 69
## 5010 Oslo_Holmenkollen Pursuit 69
## 5011 Oslo_Holmenkollen Pursuit 69
## 5012 Oslo_Holmenkollen Pursuit 69
## 5013 Oslo_Holmenkollen Pursuit 69
## 5014 Oslo_Holmenkollen Pursuit 69
## 5015 Oslo_Holmenkollen Pursuit 69
## 5016 Oslo_Holmenkollen Pursuit 69
## 5017 Oslo_Holmenkollen Pursuit 69
## 5018 Oslo_Holmenkollen Pursuit 69
## 5019 Oslo_Holmenkollen Pursuit 69
## 5020 Oslo_Holmenkollen Pursuit 69
## 5021 Oslo_Holmenkollen Pursuit 69
## 5022 Oslo_Holmenkollen Pursuit 69
## 5023 Oslo_Holmenkollen Pursuit 69
## 5024 Oslo_Holmenkollen Pursuit 69
## 5025 Oslo_Holmenkollen Pursuit 69
## 5026 Oslo_Holmenkollen Pursuit 69
## 5027 Oslo_Holmenkollen Pursuit 69
## 5028 Oslo_Holmenkollen Pursuit 69
## 5029 Oslo_Holmenkollen Pursuit 69
## 5030 Oslo_Holmenkollen Pursuit 69
## 5031 Oslo_Holmenkollen Pursuit 69
## 5032 Oslo_Holmenkollen Pursuit 69
## 5033 Oslo_Holmenkollen Pursuit 69
## 5034 Oslo_Holmenkollen Pursuit 69
## 5035 Oslo_Holmenkollen Pursuit 69
## 5036 Oslo_Holmenkollen Pursuit 69
## 5037 Oslo_Holmenkollen Pursuit 69
## 5038 Oslo_Holmenkollen Pursuit 69
## 5039 Oslo_Holmenkollen Pursuit 69
## 5040 Oslo_Holmenkollen Pursuit 69
## 5041 Oslo_Holmenkollen Pursuit 69
## 5042 Oslo_Holmenkollen Pursuit 69
## 5043 Oslo_Holmenkollen Pursuit 69
## 5044 Oslo_Holmenkollen Pursuit 69
## 5045 Oslo_Holmenkollen Pursuit 69
## 5046 Oslo_Holmenkollen Pursuit 69
## 5047 Oslo_Holmenkollen Pursuit 69
## 5048 Oslo_Holmenkollen Pursuit 69
## 5049 Oslo_Holmenkollen Pursuit 69
## 5050 Oslo_Holmenkollen Pursuit 69
## 5051 Oslo_Holmenkollen Pursuit 69
## 5052 Oslo_Holmenkollen Pursuit 69
## 5053 Oslo_Holmenkollen Pursuit 69
## 5054 Oslo_Holmenkollen Pursuit 69
## 5055 Oslo_Holmenkollen Pursuit 69
## 5056 Oslo_Holmenkollen Pursuit 69
## 5057 Oslo_Holmenkollen Pursuit 69
## 5058 Oslo_Holmenkollen Pursuit 69
## 5059 Oslo_Holmenkollen Pursuit 69
## 5060 Oslo_Holmenkollen Pursuit 69
## 5061 Oslo_Holmenkollen Pursuit 69
## 5062 Oslo_Holmenkollen Pursuit 69
## 5063 Oslo_Holmenkollen Pursuit 69
## 5064 Pokljuka Sprint 72
## 5065 Pokljuka Sprint 72
## 5066 Pokljuka Sprint 72
## 5067 Pokljuka Sprint 72
## 5068 Pokljuka Sprint 72
## 5069 Pokljuka Sprint 72
## 5070 Pokljuka Sprint 72
## 5071 Pokljuka Sprint 72
## 5072 Pokljuka Sprint 72
## 5073 Pokljuka Sprint 72
## 5074 Pokljuka Sprint 72
## 5075 Pokljuka Sprint 72
## 5076 Pokljuka Sprint 72
## 5077 Pokljuka Sprint 72
## 5078 Pokljuka Sprint 72
## 5079 Pokljuka Sprint 72
## 5080 Pokljuka Sprint 72
## 5081 Pokljuka Sprint 72
## 5082 Pokljuka Sprint 72
## 5083 Pokljuka Sprint 72
## 5084 Pokljuka Sprint 72
## 5085 Pokljuka Sprint 72
## 5086 Pokljuka Sprint 72
## 5087 Pokljuka Sprint 72
## 5088 Pokljuka Sprint 72
## 5089 Pokljuka Sprint 72
## 5090 Pokljuka Sprint 72
## 5091 Pokljuka Sprint 72
## 5092 Pokljuka Sprint 72
## 5093 Pokljuka Sprint 72
## 5094 Pokljuka Sprint 72
## 5095 Pokljuka Sprint 72
## 5096 Pokljuka Sprint 72
## 5097 Pokljuka Sprint 72
## 5098 Pokljuka Sprint 72
## 5099 Pokljuka Sprint 72
## 5100 Pokljuka Sprint 72
## 5101 Pokljuka Sprint 72
## 5102 Pokljuka Sprint 72
## 5103 Pokljuka Sprint 72
## 5104 Pokljuka Sprint 72
## 5105 Pokljuka Sprint 72
## 5106 Pokljuka Sprint 72
## 5107 Pokljuka Sprint 72
## 5108 Pokljuka Sprint 72
## 5109 Pokljuka Sprint 72
## 5110 Pokljuka Sprint 72
## 5111 Pokljuka Sprint 72
## 5112 Pokljuka Sprint 72
## 5113 Pokljuka Sprint 72
## 5114 Pokljuka Sprint 72
## 5115 Pokljuka Sprint 72
## 5116 Pokljuka Sprint 72
## 5117 Pokljuka Sprint 72
## 5118 Pokljuka Sprint 72
## 5119 Pokljuka Sprint 72
## 5120 Pokljuka Sprint 72
## 5121 Pokljuka Sprint 72
## 5122 Pokljuka Sprint 72
## 5123 Pokljuka Sprint 72
## 5124 Pokljuka Sprint 72
## 5125 Pokljuka Sprint 72
## 5126 Pokljuka Sprint 72
## 5127 Pokljuka Sprint 72
## 5128 Pokljuka Sprint 72
## 5129 Pokljuka Sprint 72
## 5130 Pokljuka Sprint 72
## 5131 Pokljuka Sprint 72
## 5132 Pokljuka Sprint 72
## 5133 Pokljuka Sprint 72
## 5134 Pokljuka Sprint 72
## 5135 Pokljuka Sprint 72
## 5136 Pokljuka Sprint 72
## 5137 Pokljuka Sprint 72
## 5138 Pokljuka Sprint 72
## 5139 Pokljuka Sprint 72
## 5140 Pokljuka Sprint 72
## 5141 Pokljuka Sprint 72
## 5142 Pokljuka Sprint 72
## 5143 Pokljuka Sprint 72
## 5144 Pokljuka Sprint 72
## 5145 Pokljuka Sprint 72
## 5146 Pokljuka Sprint 72
## 5147 Pokljuka Sprint 72
## 5148 Pokljuka Sprint 72
## 5149 Pokljuka Sprint 72
## 5150 Pokljuka Sprint 72
## 5151 Pokljuka Sprint 72
## 5152 Pokljuka Sprint 72
## 5153 Pokljuka Sprint 72
## 5154 Pokljuka Sprint 72
## 5155 Pokljuka Sprint 72
## 5156 Pokljuka Sprint 72
## 5157 Pokljuka Sprint 72
## 5158 Pokljuka Sprint 72
## 5159 Pokljuka Sprint 72
## 5160 Pokljuka Sprint 72
## 5161 Pokljuka Sprint 72
## 5162 Pokljuka Sprint 72
## 5163 Pokljuka Sprint 72
## 5164 Pokljuka Sprint 72
## 5165 Pokljuka Sprint 72
## 5166 Pokljuka Sprint 72
## 5167 Pokljuka Sprint 72
## 5168 Pokljuka Pursuit 71
## 5169 Pokljuka Pursuit 71
## 5170 Pokljuka Pursuit 71
## 5171 Pokljuka Pursuit 71
## 5172 Pokljuka Pursuit 71
## 5173 Pokljuka Pursuit 71
## 5174 Pokljuka Pursuit 71
## 5175 Pokljuka Pursuit 71
## 5176 Pokljuka Pursuit 71
## 5177 Pokljuka Pursuit 71
## 5178 Pokljuka Pursuit 71
## 5179 Pokljuka Pursuit 71
## 5180 Pokljuka Pursuit 71
## 5181 Pokljuka Pursuit 71
## 5182 Pokljuka Pursuit 71
## 5183 Pokljuka Pursuit 71
## 5184 Pokljuka Pursuit 71
## 5185 Pokljuka Pursuit 71
## 5186 Pokljuka Pursuit 71
## 5187 Pokljuka Pursuit 71
## 5188 Pokljuka Pursuit 71
## 5189 Pokljuka Pursuit 71
## 5190 Pokljuka Pursuit 71
## 5191 Pokljuka Pursuit 71
## 5192 Pokljuka Pursuit 71
## 5193 Pokljuka Pursuit 71
## 5194 Pokljuka Pursuit 71
## 5195 Pokljuka Pursuit 71
## 5196 Pokljuka Pursuit 71
## 5197 Pokljuka Pursuit 71
## 5198 Pokljuka Pursuit 71
## 5199 Pokljuka Pursuit 71
## 5200 Pokljuka Pursuit 71
## 5201 Pokljuka Pursuit 71
## 5202 Pokljuka Pursuit 71
## 5203 Pokljuka Pursuit 71
## 5204 Pokljuka Pursuit 71
## 5205 Pokljuka Pursuit 71
## 5206 Pokljuka Pursuit 71
## 5207 Pokljuka Pursuit 71
## 5208 Pokljuka Pursuit 71
## 5209 Pokljuka Pursuit 71
## 5210 Pokljuka Pursuit 71
## 5211 Pokljuka Pursuit 71
## 5212 Pokljuka Pursuit 71
## 5213 Pokljuka Pursuit 71
## 5214 Pokljuka Pursuit 71
## 5215 Pokljuka Pursuit 71
## 5216 Pokljuka Pursuit 71
## 5217 Pokljuka Pursuit 71
## 5218 Pokljuka Pursuit 71
## 5219 Pokljuka Pursuit 71
## 5220 Pokljuka Pursuit 71
## 5221 Pokljuka Pursuit 71
## 5222 Pokljuka Pursuit 71
## 5223 Pokljuka Pursuit 71
## 5224 Pokljuka Pursuit 71
## 5225 Pokljuka Pursuit 71
## 5226 PyeongChang Sprint 74
## 5227 PyeongChang Sprint 74
## 5228 PyeongChang Sprint 74
## 5229 PyeongChang Sprint 74
## 5230 PyeongChang Sprint 74
## 5231 PyeongChang Sprint 74
## 5232 PyeongChang Sprint 74
## 5233 PyeongChang Sprint 74
## 5234 PyeongChang Sprint 74
## 5235 PyeongChang Sprint 74
## 5236 PyeongChang Sprint 74
## 5237 PyeongChang Sprint 74
## 5238 PyeongChang Sprint 74
## 5239 PyeongChang Sprint 74
## 5240 PyeongChang Sprint 74
## 5241 PyeongChang Sprint 74
## 5242 PyeongChang Sprint 74
## 5243 PyeongChang Sprint 74
## 5244 PyeongChang Sprint 74
## 5245 PyeongChang Sprint 74
## 5246 PyeongChang Sprint 74
## 5247 PyeongChang Sprint 74
## 5248 PyeongChang Sprint 74
## 5249 PyeongChang Sprint 74
## 5250 PyeongChang Sprint 74
## 5251 PyeongChang Sprint 74
## 5252 PyeongChang Sprint 74
## 5253 PyeongChang Sprint 74
## 5254 PyeongChang Sprint 74
## 5255 PyeongChang Sprint 74
## 5256 PyeongChang Sprint 74
## 5257 PyeongChang Sprint 74
## 5258 PyeongChang Sprint 74
## 5259 PyeongChang Sprint 74
## 5260 PyeongChang Sprint 74
## 5261 PyeongChang Sprint 74
## 5262 PyeongChang Sprint 74
## 5263 PyeongChang Sprint 74
## 5264 PyeongChang Sprint 74
## 5265 PyeongChang Sprint 74
## 5266 PyeongChang Sprint 74
## 5267 PyeongChang Sprint 74
## 5268 PyeongChang Sprint 74
## 5269 PyeongChang Sprint 74
## 5270 PyeongChang Sprint 74
## 5271 PyeongChang Sprint 74
## 5272 PyeongChang Sprint 74
## 5273 PyeongChang Sprint 74
## 5274 PyeongChang Sprint 74
## 5275 PyeongChang Sprint 74
## 5276 PyeongChang Sprint 74
## 5277 PyeongChang Sprint 74
## 5278 PyeongChang Sprint 74
## 5279 PyeongChang Sprint 74
## 5280 PyeongChang Sprint 74
## 5281 PyeongChang Sprint 74
## 5282 PyeongChang Sprint 74
## 5283 PyeongChang Sprint 74
## 5284 PyeongChang Sprint 74
## 5285 PyeongChang Sprint 74
## 5286 PyeongChang Sprint 74
## 5287 PyeongChang Sprint 74
## 5288 PyeongChang Sprint 74
## 5289 PyeongChang Sprint 74
## 5290 PyeongChang Sprint 74
## 5291 PyeongChang Sprint 74
## 5292 PyeongChang Sprint 74
## 5293 PyeongChang Sprint 74
## 5294 PyeongChang Sprint 74
## 5295 PyeongChang Sprint 74
## 5296 PyeongChang Sprint 74
## 5297 PyeongChang Sprint 74
## 5298 PyeongChang Sprint 74
## 5299 PyeongChang Sprint 74
## 5300 PyeongChang Sprint 74
## 5301 PyeongChang Sprint 74
## 5302 PyeongChang Sprint 74
## 5303 PyeongChang Sprint 74
## 5304 PyeongChang Sprint 74
## 5305 PyeongChang Sprint 74
## 5306 PyeongChang Sprint 74
## 5307 PyeongChang Sprint 74
## 5308 PyeongChang Sprint 74
## 5309 PyeongChang Sprint 74
## 5310 PyeongChang Sprint 74
## 5311 PyeongChang Sprint 74
## 5312 PyeongChang Sprint 74
## 5313 PyeongChang Sprint 74
## 5314 PyeongChang Sprint 74
## 5315 PyeongChang Sprint 74
## 5316 PyeongChang Sprint 74
## 5317 PyeongChang Sprint 74
## 5318 PyeongChang Sprint 74
## 5319 PyeongChang Sprint 74
## 5320 PyeongChang Sprint 74
## 5321 PyeongChang Sprint 74
## 5322 PyeongChang Sprint 74
## 5323 PyeongChang Sprint 74
## 5324 PyeongChang Sprint 74
## 5325 PyeongChang Sprint 74
## 5326 PyeongChang Sprint 74
## 5327 PyeongChang Sprint 74
## 5328 PyeongChang Pursuit 73
## 5329 PyeongChang Pursuit 73
## 5330 PyeongChang Pursuit 73
## 5331 PyeongChang Pursuit 73
## 5332 PyeongChang Pursuit 73
## 5333 PyeongChang Pursuit 73
## 5334 PyeongChang Pursuit 73
## 5335 PyeongChang Pursuit 73
## 5336 PyeongChang Pursuit 73
## 5337 PyeongChang Pursuit 73
## 5338 PyeongChang Pursuit 73
## 5339 PyeongChang Pursuit 73
## 5340 PyeongChang Pursuit 73
## 5341 PyeongChang Pursuit 73
## 5342 PyeongChang Pursuit 73
## 5343 PyeongChang Pursuit 73
## 5344 PyeongChang Pursuit 73
## 5345 PyeongChang Pursuit 73
## 5346 PyeongChang Pursuit 73
## 5347 PyeongChang Pursuit 73
## 5348 PyeongChang Pursuit 73
## 5349 PyeongChang Pursuit 73
## 5350 PyeongChang Pursuit 73
## 5351 PyeongChang Pursuit 73
## 5352 PyeongChang Pursuit 73
## 5353 PyeongChang Pursuit 73
## 5354 PyeongChang Pursuit 73
## 5355 PyeongChang Pursuit 73
## 5356 PyeongChang Pursuit 73
## 5357 PyeongChang Pursuit 73
## 5358 PyeongChang Pursuit 73
## 5359 PyeongChang Pursuit 73
## 5360 PyeongChang Pursuit 73
## 5361 PyeongChang Pursuit 73
## 5362 PyeongChang Pursuit 73
## 5363 PyeongChang Pursuit 73
## 5364 PyeongChang Pursuit 73
## 5365 PyeongChang Pursuit 73
## 5366 PyeongChang Pursuit 73
## 5367 PyeongChang Pursuit 73
## 5368 PyeongChang Pursuit 73
## 5369 PyeongChang Pursuit 73
## 5370 PyeongChang Pursuit 73
## 5371 PyeongChang Pursuit 73
## 5372 PyeongChang Pursuit 73
## 5373 PyeongChang Pursuit 73
## 5374 PyeongChang Pursuit 73
## 5375 PyeongChang Pursuit 73
## 5376 PyeongChang Pursuit 73
## 5377 PyeongChang Pursuit 73
## 5378 PyeongChang Pursuit 73
## 5379 PyeongChang Pursuit 73
## 5380 PyeongChang Pursuit 73
## 5381 PyeongChang Pursuit 73
## 5382 PyeongChang Pursuit 73
## 5383 PyeongChang Pursuit 73
## 5384 PyeongChang Pursuit 73
## 5385 PyeongChang Pursuit 73
## 5386 Ruhpolding Sprint 76
## 5387 Ruhpolding Sprint 76
## 5388 Ruhpolding Sprint 76
## 5389 Ruhpolding Sprint 76
## 5390 Ruhpolding Sprint 76
## 5391 Ruhpolding Sprint 76
## 5392 Ruhpolding Sprint 76
## 5393 Ruhpolding Sprint 76
## 5394 Ruhpolding Sprint 76
## 5395 Ruhpolding Sprint 76
## 5396 Ruhpolding Sprint 76
## 5397 Ruhpolding Sprint 76
## 5398 Ruhpolding Sprint 76
## 5399 Ruhpolding Sprint 76
## 5400 Ruhpolding Sprint 76
## 5401 Ruhpolding Sprint 76
## 5402 Ruhpolding Sprint 76
## 5403 Ruhpolding Sprint 76
## 5404 Ruhpolding Sprint 76
## 5405 Ruhpolding Sprint 76
## 5406 Ruhpolding Sprint 76
## 5407 Ruhpolding Sprint 76
## 5408 Ruhpolding Sprint 76
## 5409 Ruhpolding Sprint 76
## 5410 Ruhpolding Sprint 76
## 5411 Ruhpolding Sprint 76
## 5412 Ruhpolding Sprint 76
## 5413 Ruhpolding Sprint 76
## 5414 Ruhpolding Sprint 76
## 5415 Ruhpolding Sprint 76
## 5416 Ruhpolding Sprint 76
## 5417 Ruhpolding Sprint 76
## 5418 Ruhpolding Sprint 76
## 5419 Ruhpolding Sprint 76
## 5420 Ruhpolding Sprint 76
## 5421 Ruhpolding Sprint 76
## 5422 Ruhpolding Sprint 76
## 5423 Ruhpolding Sprint 76
## 5424 Ruhpolding Sprint 76
## 5425 Ruhpolding Sprint 76
## 5426 Ruhpolding Sprint 76
## 5427 Ruhpolding Sprint 76
## 5428 Ruhpolding Sprint 76
## 5429 Ruhpolding Sprint 76
## 5430 Ruhpolding Sprint 76
## 5431 Ruhpolding Sprint 76
## 5432 Ruhpolding Sprint 76
## 5433 Ruhpolding Sprint 76
## 5434 Ruhpolding Sprint 76
## 5435 Ruhpolding Sprint 76
## 5436 Ruhpolding Sprint 76
## 5437 Ruhpolding Sprint 76
## 5438 Ruhpolding Sprint 76
## 5439 Ruhpolding Sprint 76
## 5440 Ruhpolding Sprint 76
## 5441 Ruhpolding Sprint 76
## 5442 Ruhpolding Sprint 76
## 5443 Ruhpolding Sprint 76
## 5444 Ruhpolding Sprint 76
## 5445 Ruhpolding Sprint 76
## 5446 Ruhpolding Sprint 76
## 5447 Ruhpolding Sprint 76
## 5448 Ruhpolding Sprint 76
## 5449 Ruhpolding Sprint 76
## 5450 Ruhpolding Sprint 76
## 5451 Ruhpolding Sprint 76
## 5452 Ruhpolding Sprint 76
## 5453 Ruhpolding Sprint 76
## 5454 Ruhpolding Sprint 76
## 5455 Ruhpolding Sprint 76
## 5456 Ruhpolding Sprint 76
## 5457 Ruhpolding Sprint 76
## 5458 Ruhpolding Sprint 76
## 5459 Ruhpolding Sprint 76
## 5460 Ruhpolding Sprint 76
## 5461 Ruhpolding Sprint 76
## 5462 Ruhpolding Sprint 76
## 5463 Ruhpolding Sprint 76
## 5464 Ruhpolding Sprint 76
## 5465 Ruhpolding Sprint 76
## 5466 Ruhpolding Sprint 76
## 5467 Ruhpolding Sprint 76
## 5468 Ruhpolding Sprint 76
## 5469 Ruhpolding Sprint 76
## 5470 Ruhpolding Sprint 76
## 5471 Ruhpolding Sprint 76
## 5472 Ruhpolding Sprint 76
## 5473 Ruhpolding Sprint 76
## 5474 Ruhpolding Sprint 76
## 5475 Ruhpolding Sprint 76
## 5476 Ruhpolding Sprint 76
## 5477 Ruhpolding Sprint 76
## 5478 Ruhpolding Sprint 76
## 5479 Ruhpolding Sprint 76
## 5480 Ruhpolding Sprint 76
## 5481 Ruhpolding Sprint 76
## 5482 Ruhpolding Sprint 76
## 5483 Ruhpolding Sprint 76
## 5484 Ruhpolding Sprint 76
## 5485 Ruhpolding Sprint 76
## 5486 Ruhpolding Sprint 76
## 5487 Ruhpolding Sprint 76
## 5488 Ruhpolding Sprint 76
## 5489 Ruhpolding Sprint 76
## 5490 Ruhpolding Sprint 76
## 5491 Ruhpolding Sprint 76
## 5492 Ruhpolding Sprint 76
## 5493 Ruhpolding Pursuit 75
## 5494 Ruhpolding Pursuit 75
## 5495 Ruhpolding Pursuit 75
## 5496 Ruhpolding Pursuit 75
## 5497 Ruhpolding Pursuit 75
## 5498 Ruhpolding Pursuit 75
## 5499 Ruhpolding Pursuit 75
## 5500 Ruhpolding Pursuit 75
## 5501 Ruhpolding Pursuit 75
## 5502 Ruhpolding Pursuit 75
## 5503 Ruhpolding Pursuit 75
## 5504 Ruhpolding Pursuit 75
## 5505 Ruhpolding Pursuit 75
## 5506 Ruhpolding Pursuit 75
## 5507 Ruhpolding Pursuit 75
## 5508 Ruhpolding Pursuit 75
## 5509 Ruhpolding Pursuit 75
## 5510 Ruhpolding Pursuit 75
## 5511 Ruhpolding Pursuit 75
## 5512 Ruhpolding Pursuit 75
## 5513 Ruhpolding Pursuit 75
## 5514 Ruhpolding Pursuit 75
## 5515 Ruhpolding Pursuit 75
## 5516 Ruhpolding Pursuit 75
## 5517 Ruhpolding Pursuit 75
## 5518 Ruhpolding Pursuit 75
## 5519 Ruhpolding Pursuit 75
## 5520 Ruhpolding Pursuit 75
## 5521 Ruhpolding Pursuit 75
## 5522 Ruhpolding Pursuit 75
## 5523 Ruhpolding Pursuit 75
## 5524 Ruhpolding Pursuit 75
## 5525 Ruhpolding Pursuit 75
## 5526 Ruhpolding Pursuit 75
## 5527 Ruhpolding Pursuit 75
## 5528 Ruhpolding Pursuit 75
## 5529 Ruhpolding Pursuit 75
## 5530 Ruhpolding Pursuit 75
## 5531 Ruhpolding Pursuit 75
## 5532 Ruhpolding Pursuit 75
## 5533 Ruhpolding Pursuit 75
## 5534 Ruhpolding Pursuit 75
## 5535 Ruhpolding Pursuit 75
## 5536 Ruhpolding Pursuit 75
## 5537 Ruhpolding Pursuit 75
## 5538 Ruhpolding Pursuit 75
## 5539 Ruhpolding Pursuit 75
## 5540 Ruhpolding Pursuit 75
## 5541 Ruhpolding Pursuit 75
## 5542 Ruhpolding Pursuit 75
## 5543 Ruhpolding Pursuit 75
## 5544 Ruhpolding Pursuit 75
## 5545 Ruhpolding Pursuit 75
## 5546 Ruhpolding Pursuit 75
## 5547 Ruhpolding Pursuit 75
## 5548 Annecy Sprint 79
## 5549 Annecy Sprint 79
## 5550 Annecy Sprint 79
## 5551 Annecy Sprint 79
## 5552 Annecy Sprint 79
## 5553 Annecy Sprint 79
## 5554 Annecy Sprint 79
## 5555 Annecy Sprint 79
## 5556 Annecy Sprint 79
## 5557 Annecy Sprint 79
## 5558 Annecy Sprint 79
## 5559 Annecy Sprint 79
## 5560 Annecy Sprint 79
## 5561 Annecy Sprint 79
## 5562 Annecy Sprint 79
## 5563 Annecy Sprint 79
## 5564 Annecy Sprint 79
## 5565 Annecy Sprint 79
## 5566 Annecy Sprint 79
## 5567 Annecy Sprint 79
## 5568 Annecy Sprint 79
## 5569 Annecy Sprint 79
## 5570 Annecy Sprint 79
## 5571 Annecy Sprint 79
## 5572 Annecy Sprint 79
## 5573 Annecy Sprint 79
## 5574 Annecy Sprint 79
## 5575 Annecy Sprint 79
## 5576 Annecy Sprint 79
## 5577 Annecy Sprint 79
## 5578 Annecy Sprint 79
## 5579 Annecy Sprint 79
## 5580 Annecy Sprint 79
## 5581 Annecy Sprint 79
## 5582 Annecy Sprint 79
## 5583 Annecy Sprint 79
## 5584 Annecy Sprint 79
## 5585 Annecy Sprint 79
## 5586 Annecy Sprint 79
## 5587 Annecy Sprint 79
## 5588 Annecy Sprint 79
## 5589 Annecy Sprint 79
## 5590 Annecy Sprint 79
## 5591 Annecy Sprint 79
## 5592 Annecy Sprint 79
## 5593 Annecy Sprint 79
## 5594 Annecy Sprint 79
## 5595 Annecy Sprint 79
## 5596 Annecy Sprint 79
## 5597 Annecy Sprint 79
## 5598 Annecy Sprint 79
## 5599 Annecy Sprint 79
## 5600 Annecy Sprint 79
## 5601 Annecy Sprint 79
## 5602 Annecy Sprint 79
## 5603 Annecy Sprint 79
## 5604 Annecy Sprint 79
## 5605 Annecy Sprint 79
## 5606 Annecy Sprint 79
## 5607 Annecy Sprint 79
## 5608 Annecy Sprint 79
## 5609 Annecy Sprint 79
## 5610 Annecy Sprint 79
## 5611 Annecy Sprint 79
## 5612 Annecy Sprint 79
## 5613 Annecy Sprint 79
## 5614 Annecy Sprint 79
## 5615 Annecy Sprint 79
## 5616 Annecy Sprint 79
## 5617 Annecy Sprint 79
## 5618 Annecy Sprint 79
## 5619 Annecy Sprint 79
## 5620 Annecy Sprint 79
## 5621 Annecy Sprint 79
## 5622 Annecy Sprint 79
## 5623 Annecy Sprint 79
## 5624 Annecy Sprint 79
## 5625 Annecy Sprint 79
## 5626 Annecy Sprint 79
## 5627 Annecy Sprint 79
## 5628 Annecy Sprint 79
## 5629 Annecy Sprint 79
## 5630 Annecy Sprint 79
## 5631 Annecy Sprint 79
## 5632 Annecy Sprint 79
## 5633 Annecy Sprint 79
## 5634 Annecy Sprint 79
## 5635 Annecy Sprint 79
## 5636 Annecy Sprint 79
## 5637 Annecy Sprint 79
## 5638 Annecy Sprint 79
## 5639 Annecy Sprint 79
## 5640 Annecy Sprint 79
## 5641 Annecy Sprint 79
## 5642 Annecy Sprint 79
## 5643 Annecy Sprint 79
## 5644 Annecy Sprint 79
## 5645 Annecy Sprint 79
## 5646 Annecy Sprint 79
## 5647 Annecy Sprint 79
## 5648 Annecy Sprint 79
## 5649 Annecy Sprint 79
## 5650 Annecy Sprint 79
## 5651 Annecy Mass start 77
## 5652 Annecy Mass start 77
## 5653 Annecy Mass start 77
## 5654 Annecy Mass start 77
## 5655 Annecy Mass start 77
## 5656 Annecy Mass start 77
## 5657 Annecy Mass start 77
## 5658 Annecy Mass start 77
## 5659 Annecy Mass start 77
## 5660 Annecy Mass start 77
## 5661 Annecy Mass start 77
## 5662 Annecy Mass start 77
## 5663 Annecy Mass start 77
## 5664 Annecy Mass start 77
## 5665 Annecy Mass start 77
## 5666 Annecy Mass start 77
## 5667 Annecy Mass start 77
## 5668 Annecy Mass start 77
## 5669 Annecy Mass start 77
## 5670 Annecy Mass start 77
## 5671 Annecy Mass start 77
## 5672 Annecy Mass start 77
## 5673 Annecy Mass start 77
## 5674 Annecy Mass start 77
## 5675 Annecy Mass start 77
## 5676 Annecy Mass start 77
## 5677 Annecy Mass start 77
## 5678 Annecy Mass start 77
## 5679 Annecy Mass start 77
## 5680 Annecy Mass start 77
## 5681 Annecy Pursuit 78
## 5682 Annecy Pursuit 78
## 5683 Annecy Pursuit 78
## 5684 Annecy Pursuit 78
## 5685 Annecy Pursuit 78
## 5686 Annecy Pursuit 78
## 5687 Annecy Pursuit 78
## 5688 Annecy Pursuit 78
## 5689 Annecy Pursuit 78
## 5690 Annecy Pursuit 78
## 5691 Annecy Pursuit 78
## 5692 Annecy Pursuit 78
## 5693 Annecy Pursuit 78
## 5694 Annecy Pursuit 78
## 5695 Annecy Pursuit 78
## 5696 Annecy Pursuit 78
## 5697 Annecy Pursuit 78
## 5698 Annecy Pursuit 78
## 5699 Annecy Pursuit 78
## 5700 Annecy Pursuit 78
## 5701 Annecy Pursuit 78
## 5702 Annecy Pursuit 78
## 5703 Annecy Pursuit 78
## 5704 Annecy Pursuit 78
## 5705 Annecy Pursuit 78
## 5706 Annecy Pursuit 78
## 5707 Annecy Pursuit 78
## 5708 Annecy Pursuit 78
## 5709 Annecy Pursuit 78
## 5710 Annecy Pursuit 78
## 5711 Annecy Pursuit 78
## 5712 Annecy Pursuit 78
## 5713 Annecy Pursuit 78
## 5714 Annecy Pursuit 78
## 5715 Annecy Pursuit 78
## 5716 Annecy Pursuit 78
## 5717 Annecy Pursuit 78
## 5718 Annecy Pursuit 78
## 5719 Annecy Pursuit 78
## 5720 Annecy Pursuit 78
## 5721 Annecy Pursuit 78
## 5722 Annecy Pursuit 78
## 5723 Annecy Pursuit 78
## 5724 Annecy Pursuit 78
## 5725 Annecy Pursuit 78
## 5726 Annecy Pursuit 78
## 5727 Annecy Pursuit 78
## 5728 Annecy Pursuit 78
## 5729 Annecy Pursuit 78
## 5730 Annecy Pursuit 78
## 5731 Annecy Pursuit 78
## 5732 Annecy Pursuit 78
## 5733 Annecy Pursuit 78
## 5734 Annecy Pursuit 78
## 5735 Annecy Pursuit 78
## 5736 Annecy Pursuit 78
## 5737 Annecy Pursuit 78
## 5738 Anterselva Sprint 82
## 5739 Anterselva Sprint 82
## 5740 Anterselva Sprint 82
## 5741 Anterselva Sprint 82
## 5742 Anterselva Sprint 82
## 5743 Anterselva Sprint 82
## 5744 Anterselva Sprint 82
## 5745 Anterselva Sprint 82
## 5746 Anterselva Sprint 82
## 5747 Anterselva Sprint 82
## 5748 Anterselva Sprint 82
## 5749 Anterselva Sprint 82
## 5750 Anterselva Sprint 82
## 5751 Anterselva Sprint 82
## 5752 Anterselva Sprint 82
## 5753 Anterselva Sprint 82
## 5754 Anterselva Sprint 82
## 5755 Anterselva Sprint 82
## 5756 Anterselva Sprint 82
## 5757 Anterselva Sprint 82
## 5758 Anterselva Sprint 82
## 5759 Anterselva Sprint 82
## 5760 Anterselva Sprint 82
## 5761 Anterselva Sprint 82
## 5762 Anterselva Sprint 82
## 5763 Anterselva Sprint 82
## 5764 Anterselva Sprint 82
## 5765 Anterselva Sprint 82
## 5766 Anterselva Sprint 82
## 5767 Anterselva Sprint 82
## 5768 Anterselva Sprint 82
## 5769 Anterselva Sprint 82
## 5770 Anterselva Sprint 82
## 5771 Anterselva Sprint 82
## 5772 Anterselva Sprint 82
## 5773 Anterselva Sprint 82
## 5774 Anterselva Sprint 82
## 5775 Anterselva Sprint 82
## 5776 Anterselva Sprint 82
## 5777 Anterselva Sprint 82
## 5778 Anterselva Sprint 82
## 5779 Anterselva Sprint 82
## 5780 Anterselva Sprint 82
## 5781 Anterselva Sprint 82
## 5782 Anterselva Sprint 82
## 5783 Anterselva Sprint 82
## 5784 Anterselva Sprint 82
## 5785 Anterselva Sprint 82
## 5786 Anterselva Sprint 82
## 5787 Anterselva Sprint 82
## 5788 Anterselva Sprint 82
## 5789 Anterselva Sprint 82
## 5790 Anterselva Sprint 82
## 5791 Anterselva Sprint 82
## 5792 Anterselva Sprint 82
## 5793 Anterselva Sprint 82
## 5794 Anterselva Sprint 82
## 5795 Anterselva Sprint 82
## 5796 Anterselva Sprint 82
## 5797 Anterselva Sprint 82
## 5798 Anterselva Sprint 82
## 5799 Anterselva Sprint 82
## 5800 Anterselva Sprint 82
## 5801 Anterselva Sprint 82
## 5802 Anterselva Sprint 82
## 5803 Anterselva Sprint 82
## 5804 Anterselva Sprint 82
## 5805 Anterselva Sprint 82
## 5806 Anterselva Sprint 82
## 5807 Anterselva Sprint 82
## 5808 Anterselva Sprint 82
## 5809 Anterselva Sprint 82
## 5810 Anterselva Sprint 82
## 5811 Anterselva Sprint 82
## 5812 Anterselva Sprint 82
## 5813 Anterselva Sprint 82
## 5814 Anterselva Sprint 82
## 5815 Anterselva Sprint 82
## 5816 Anterselva Sprint 82
## 5817 Anterselva Sprint 82
## 5818 Anterselva Sprint 82
## 5819 Anterselva Sprint 82
## 5820 Anterselva Sprint 82
## 5821 Anterselva Sprint 82
## 5822 Anterselva Sprint 82
## 5823 Anterselva Sprint 82
## 5824 Anterselva Sprint 82
## 5825 Anterselva Sprint 82
## 5826 Anterselva Sprint 82
## 5827 Anterselva Sprint 82
## 5828 Anterselva Sprint 82
## 5829 Anterselva Sprint 82
## 5830 Anterselva Sprint 82
## 5831 Anterselva Sprint 82
## 5832 Anterselva Sprint 82
## 5833 Anterselva Sprint 82
## 5834 Anterselva Sprint 82
## 5835 Anterselva Sprint 82
## 5836 Anterselva Sprint 82
## 5837 Anterselva Sprint 82
## 5838 Anterselva Sprint 82
## 5839 Anterselva Sprint 82
## 5840 Anterselva Sprint 82
## 5841 Anterselva Sprint 82
## 5842 Anterselva Sprint 82
## 5843 Anterselva Sprint 82
## 5844 Anterselva Sprint 82
## 5845 Anterselva Sprint 82
## 5846 Anterselva Sprint 82
## 5847 Anterselva Mass start 80
## 5848 Anterselva Mass start 80
## 5849 Anterselva Mass start 80
## 5850 Anterselva Mass start 80
## 5851 Anterselva Mass start 80
## 5852 Anterselva Mass start 80
## 5853 Anterselva Mass start 80
## 5854 Anterselva Mass start 80
## 5855 Anterselva Mass start 80
## 5856 Anterselva Mass start 80
## 5857 Anterselva Mass start 80
## 5858 Anterselva Mass start 80
## 5859 Anterselva Mass start 80
## 5860 Anterselva Mass start 80
## 5861 Anterselva Mass start 80
## 5862 Anterselva Mass start 80
## 5863 Anterselva Mass start 80
## 5864 Anterselva Mass start 80
## 5865 Anterselva Mass start 80
## 5866 Anterselva Mass start 80
## 5867 Anterselva Mass start 80
## 5868 Anterselva Mass start 80
## 5869 Anterselva Mass start 80
## 5870 Anterselva Mass start 80
## 5871 Anterselva Mass start 80
## 5872 Anterselva Mass start 80
## 5873 Anterselva Mass start 80
## 5874 Anterselva Mass start 80
## 5875 Anterselva Mass start 80
## 5876 Anterselva Mass start 80
## 5877 Anterselva Pursuit 81
## 5878 Anterselva Pursuit 81
## 5879 Anterselva Pursuit 81
## 5880 Anterselva Pursuit 81
## 5881 Anterselva Pursuit 81
## 5882 Anterselva Pursuit 81
## 5883 Anterselva Pursuit 81
## 5884 Anterselva Pursuit 81
## 5885 Anterselva Pursuit 81
## 5886 Anterselva Pursuit 81
## 5887 Anterselva Pursuit 81
## 5888 Anterselva Pursuit 81
## 5889 Anterselva Pursuit 81
## 5890 Anterselva Pursuit 81
## 5891 Anterselva Pursuit 81
## 5892 Anterselva Pursuit 81
## 5893 Anterselva Pursuit 81
## 5894 Anterselva Pursuit 81
## 5895 Anterselva Pursuit 81
## 5896 Anterselva Pursuit 81
## 5897 Anterselva Pursuit 81
## 5898 Anterselva Pursuit 81
## 5899 Anterselva Pursuit 81
## 5900 Anterselva Pursuit 81
## 5901 Anterselva Pursuit 81
## 5902 Anterselva Pursuit 81
## 5903 Anterselva Pursuit 81
## 5904 Anterselva Pursuit 81
## 5905 Anterselva Pursuit 81
## 5906 Anterselva Pursuit 81
## 5907 Anterselva Pursuit 81
## 5908 Anterselva Pursuit 81
## 5909 Anterselva Pursuit 81
## 5910 Anterselva Pursuit 81
## 5911 Anterselva Pursuit 81
## 5912 Anterselva Pursuit 81
## 5913 Anterselva Pursuit 81
## 5914 Anterselva Pursuit 81
## 5915 Anterselva Pursuit 81
## 5916 Anterselva Pursuit 81
## 5917 Anterselva Pursuit 81
## 5918 Anterselva Pursuit 81
## 5919 Anterselva Pursuit 81
## 5920 Anterselva Pursuit 81
## 5921 Anterselva Pursuit 81
## 5922 Anterselva Pursuit 81
## 5923 Anterselva Pursuit 81
## 5924 Anterselva Pursuit 81
## 5925 Anterselva Pursuit 81
## 5926 Anterselva Pursuit 81
## 5927 Anterselva Pursuit 81
## 5928 Anterselva Pursuit 81
## 5929 Hochfilzen Sprint 84
## 5930 Hochfilzen Sprint 84
## 5931 Hochfilzen Sprint 84
## 5932 Hochfilzen Sprint 84
## 5933 Hochfilzen Sprint 84
## 5934 Hochfilzen Sprint 84
## 5935 Hochfilzen Sprint 84
## 5936 Hochfilzen Sprint 84
## 5937 Hochfilzen Sprint 84
## 5938 Hochfilzen Sprint 84
## 5939 Hochfilzen Sprint 84
## 5940 Hochfilzen Sprint 84
## 5941 Hochfilzen Sprint 84
## 5942 Hochfilzen Sprint 84
## 5943 Hochfilzen Sprint 84
## 5944 Hochfilzen Sprint 84
## 5945 Hochfilzen Sprint 84
## 5946 Hochfilzen Sprint 84
## 5947 Hochfilzen Sprint 84
## 5948 Hochfilzen Sprint 84
## 5949 Hochfilzen Sprint 84
## 5950 Hochfilzen Sprint 84
## 5951 Hochfilzen Sprint 84
## 5952 Hochfilzen Sprint 84
## 5953 Hochfilzen Sprint 84
## 5954 Hochfilzen Sprint 84
## 5955 Hochfilzen Sprint 84
## 5956 Hochfilzen Sprint 84
## 5957 Hochfilzen Sprint 84
## 5958 Hochfilzen Sprint 84
## 5959 Hochfilzen Sprint 84
## 5960 Hochfilzen Sprint 84
## 5961 Hochfilzen Sprint 84
## 5962 Hochfilzen Sprint 84
## 5963 Hochfilzen Sprint 84
## 5964 Hochfilzen Sprint 84
## 5965 Hochfilzen Sprint 84
## 5966 Hochfilzen Sprint 84
## 5967 Hochfilzen Sprint 84
## 5968 Hochfilzen Sprint 84
## 5969 Hochfilzen Sprint 84
## 5970 Hochfilzen Sprint 84
## 5971 Hochfilzen Sprint 84
## 5972 Hochfilzen Sprint 84
## 5973 Hochfilzen Sprint 84
## 5974 Hochfilzen Sprint 84
## 5975 Hochfilzen Sprint 84
## 5976 Hochfilzen Sprint 84
## 5977 Hochfilzen Sprint 84
## 5978 Hochfilzen Sprint 84
## 5979 Hochfilzen Sprint 84
## 5980 Hochfilzen Sprint 84
## 5981 Hochfilzen Sprint 84
## 5982 Hochfilzen Sprint 84
## 5983 Hochfilzen Sprint 84
## 5984 Hochfilzen Sprint 84
## 5985 Hochfilzen Sprint 84
## 5986 Hochfilzen Sprint 84
## 5987 Hochfilzen Sprint 84
## 5988 Hochfilzen Sprint 84
## 5989 Hochfilzen Sprint 84
## 5990 Hochfilzen Sprint 84
## 5991 Hochfilzen Sprint 84
## 5992 Hochfilzen Sprint 84
## 5993 Hochfilzen Sprint 84
## 5994 Hochfilzen Sprint 84
## 5995 Hochfilzen Sprint 84
## 5996 Hochfilzen Sprint 84
## 5997 Hochfilzen Sprint 84
## 5998 Hochfilzen Sprint 84
## 5999 Hochfilzen Sprint 84
## 6000 Hochfilzen Sprint 84
## 6001 Hochfilzen Sprint 84
## 6002 Hochfilzen Sprint 84
## 6003 Hochfilzen Sprint 84
## 6004 Hochfilzen Sprint 84
## 6005 Hochfilzen Sprint 84
## 6006 Hochfilzen Sprint 84
## 6007 Hochfilzen Sprint 84
## 6008 Hochfilzen Sprint 84
## 6009 Hochfilzen Sprint 84
## 6010 Hochfilzen Sprint 84
## 6011 Hochfilzen Sprint 84
## 6012 Hochfilzen Sprint 84
## 6013 Hochfilzen Sprint 84
## 6014 Hochfilzen Sprint 84
## 6015 Hochfilzen Sprint 84
## 6016 Hochfilzen Sprint 84
## 6017 Hochfilzen Sprint 84
## 6018 Hochfilzen Sprint 84
## 6019 Hochfilzen Sprint 84
## 6020 Hochfilzen Sprint 84
## 6021 Hochfilzen Sprint 84
## 6022 Hochfilzen Sprint 84
## 6023 Hochfilzen Sprint 84
## 6024 Hochfilzen Sprint 84
## 6025 Hochfilzen Sprint 84
## 6026 Hochfilzen Sprint 84
## 6027 Hochfilzen Sprint 84
## 6028 Hochfilzen Sprint 84
## 6029 Hochfilzen Sprint 84
## 6030 Hochfilzen Sprint 84
## 6031 Hochfilzen Sprint 84
## 6032 Hochfilzen Sprint 84
## 6033 Hochfilzen Sprint 84
## 6034 Hochfilzen Sprint 84
## 6035 Hochfilzen Sprint 84
## 6036 Hochfilzen Sprint 84
## 6037 Hochfilzen Pursuit 83
## 6038 Hochfilzen Pursuit 83
## 6039 Hochfilzen Pursuit 83
## 6040 Hochfilzen Pursuit 83
## 6041 Hochfilzen Pursuit 83
## 6042 Hochfilzen Pursuit 83
## 6043 Hochfilzen Pursuit 83
## 6044 Hochfilzen Pursuit 83
## 6045 Hochfilzen Pursuit 83
## 6046 Hochfilzen Pursuit 83
## 6047 Hochfilzen Pursuit 83
## 6048 Hochfilzen Pursuit 83
## 6049 Hochfilzen Pursuit 83
## 6050 Hochfilzen Pursuit 83
## 6051 Hochfilzen Pursuit 83
## 6052 Hochfilzen Pursuit 83
## 6053 Hochfilzen Pursuit 83
## 6054 Hochfilzen Pursuit 83
## 6055 Hochfilzen Pursuit 83
## 6056 Hochfilzen Pursuit 83
## 6057 Hochfilzen Pursuit 83
## 6058 Hochfilzen Pursuit 83
## 6059 Hochfilzen Pursuit 83
## 6060 Hochfilzen Pursuit 83
## 6061 Hochfilzen Pursuit 83
## 6062 Hochfilzen Pursuit 83
## 6063 Hochfilzen Pursuit 83
## 6064 Hochfilzen Pursuit 83
## 6065 Hochfilzen Pursuit 83
## 6066 Hochfilzen Pursuit 83
## 6067 Hochfilzen Pursuit 83
## 6068 Hochfilzen Pursuit 83
## 6069 Hochfilzen Pursuit 83
## 6070 Hochfilzen Pursuit 83
## 6071 Hochfilzen Pursuit 83
## 6072 Hochfilzen Pursuit 83
## 6073 Hochfilzen Pursuit 83
## 6074 Hochfilzen Pursuit 83
## 6075 Hochfilzen Pursuit 83
## 6076 Hochfilzen Pursuit 83
## 6077 Hochfilzen Pursuit 83
## 6078 Hochfilzen Pursuit 83
## 6079 Hochfilzen Pursuit 83
## 6080 Hochfilzen Pursuit 83
## 6081 Hochfilzen Pursuit 83
## 6082 Hochfilzen Pursuit 83
## 6083 Hochfilzen Pursuit 83
## 6084 Hochfilzen Pursuit 83
## 6085 Hochfilzen Pursuit 83
## 6086 Hochfilzen Pursuit 83
## 6087 Hochfilzen Pursuit 83
## 6088 Hochfilzen Pursuit 83
## 6089 Hochfilzen Pursuit 83
## 6090 Hochfilzen Pursuit 83
## 6091 Hochfilzen Pursuit 83
## 6092 Hochfilzen Pursuit 83
## 6093 Hochfilzen Pursuit 83
## 6094 Kontiolahti Sprint 86
## 6095 Kontiolahti Sprint 86
## 6096 Kontiolahti Sprint 86
## 6097 Kontiolahti Sprint 86
## 6098 Kontiolahti Sprint 86
## 6099 Kontiolahti Sprint 86
## 6100 Kontiolahti Sprint 86
## 6101 Kontiolahti Sprint 86
## 6102 Kontiolahti Sprint 86
## 6103 Kontiolahti Sprint 86
## 6104 Kontiolahti Sprint 86
## 6105 Kontiolahti Sprint 86
## 6106 Kontiolahti Sprint 86
## 6107 Kontiolahti Sprint 86
## 6108 Kontiolahti Sprint 86
## 6109 Kontiolahti Sprint 86
## 6110 Kontiolahti Sprint 86
## 6111 Kontiolahti Sprint 86
## 6112 Kontiolahti Sprint 86
## 6113 Kontiolahti Sprint 86
## 6114 Kontiolahti Sprint 86
## 6115 Kontiolahti Sprint 86
## 6116 Kontiolahti Sprint 86
## 6117 Kontiolahti Sprint 86
## 6118 Kontiolahti Sprint 86
## 6119 Kontiolahti Sprint 86
## 6120 Kontiolahti Sprint 86
## 6121 Kontiolahti Sprint 86
## 6122 Kontiolahti Sprint 86
## 6123 Kontiolahti Sprint 86
## 6124 Kontiolahti Sprint 86
## 6125 Kontiolahti Sprint 86
## 6126 Kontiolahti Sprint 86
## 6127 Kontiolahti Sprint 86
## 6128 Kontiolahti Sprint 86
## 6129 Kontiolahti Sprint 86
## 6130 Kontiolahti Sprint 86
## 6131 Kontiolahti Sprint 86
## 6132 Kontiolahti Sprint 86
## 6133 Kontiolahti Sprint 86
## 6134 Kontiolahti Sprint 86
## 6135 Kontiolahti Sprint 86
## 6136 Kontiolahti Sprint 86
## 6137 Kontiolahti Sprint 86
## 6138 Kontiolahti Sprint 86
## 6139 Kontiolahti Sprint 86
## 6140 Kontiolahti Sprint 86
## 6141 Kontiolahti Sprint 86
## 6142 Kontiolahti Sprint 86
## 6143 Kontiolahti Sprint 86
## 6144 Kontiolahti Sprint 86
## 6145 Kontiolahti Sprint 86
## 6146 Kontiolahti Sprint 86
## 6147 Kontiolahti Sprint 86
## 6148 Kontiolahti Sprint 86
## 6149 Kontiolahti Sprint 86
## 6150 Kontiolahti Sprint 86
## 6151 Kontiolahti Sprint 86
## 6152 Kontiolahti Sprint 86
## 6153 Kontiolahti Sprint 86
## 6154 Kontiolahti Sprint 86
## 6155 Kontiolahti Sprint 86
## 6156 Kontiolahti Sprint 86
## 6157 Kontiolahti Sprint 86
## 6158 Kontiolahti Sprint 86
## 6159 Kontiolahti Sprint 86
## 6160 Kontiolahti Sprint 86
## 6161 Kontiolahti Sprint 86
## 6162 Kontiolahti Sprint 86
## 6163 Kontiolahti Sprint 86
## 6164 Kontiolahti Sprint 86
## 6165 Kontiolahti Sprint 86
## 6166 Kontiolahti Sprint 86
## 6167 Kontiolahti Sprint 86
## 6168 Kontiolahti Sprint 86
## 6169 Kontiolahti Sprint 86
## 6170 Kontiolahti Sprint 86
## 6171 Kontiolahti Sprint 86
## 6172 Kontiolahti Sprint 86
## 6173 Kontiolahti Sprint 86
## 6174 Kontiolahti Sprint 86
## 6175 Kontiolahti Sprint 86
## 6176 Kontiolahti Sprint 86
## 6177 Kontiolahti Sprint 86
## 6178 Kontiolahti Sprint 86
## 6179 Kontiolahti Sprint 86
## 6180 Kontiolahti Sprint 86
## 6181 Kontiolahti Sprint 86
## 6182 Kontiolahti Sprint 86
## 6183 Kontiolahti Sprint 86
## 6184 Kontiolahti Sprint 86
## 6185 Kontiolahti Sprint 86
## 6186 Kontiolahti Sprint 86
## 6187 Kontiolahti Sprint 86
## 6188 Kontiolahti Sprint 86
## 6189 Kontiolahti Sprint 86
## 6190 Kontiolahti Sprint 86
## 6191 Kontiolahti Sprint 86
## 6192 Kontiolahti Sprint 86
## 6193 Kontiolahti Sprint 86
## 6194 Kontiolahti Mass start 85
## 6195 Kontiolahti Mass start 85
## 6196 Kontiolahti Mass start 85
## 6197 Kontiolahti Mass start 85
## 6198 Kontiolahti Mass start 85
## 6199 Kontiolahti Mass start 85
## 6200 Kontiolahti Mass start 85
## 6201 Kontiolahti Mass start 85
## 6202 Kontiolahti Mass start 85
## 6203 Kontiolahti Mass start 85
## 6204 Kontiolahti Mass start 85
## 6205 Kontiolahti Mass start 85
## 6206 Kontiolahti Mass start 85
## 6207 Kontiolahti Mass start 85
## 6208 Kontiolahti Mass start 85
## 6209 Kontiolahti Mass start 85
## 6210 Kontiolahti Mass start 85
## 6211 Kontiolahti Mass start 85
## 6212 Kontiolahti Mass start 85
## 6213 Kontiolahti Mass start 85
## 6214 Kontiolahti Mass start 85
## 6215 Kontiolahti Mass start 85
## 6216 Kontiolahti Mass start 85
## 6217 Kontiolahti Mass start 85
## 6218 Kontiolahti Mass start 85
## 6219 Kontiolahti Mass start 85
## 6220 Kontiolahti Mass start 85
## 6221 Kontiolahti Mass start 85
## 6222 Kontiolahti Mass start 85
## 6223 Kontiolahti Mass start 85
## 6224 Oberhof Sprint 88
## 6225 Oberhof Sprint 88
## 6226 Oberhof Sprint 88
## 6227 Oberhof Sprint 88
## 6228 Oberhof Sprint 88
## 6229 Oberhof Sprint 88
## 6230 Oberhof Sprint 88
## 6231 Oberhof Sprint 88
## 6232 Oberhof Sprint 88
## 6233 Oberhof Sprint 88
## 6234 Oberhof Sprint 88
## 6235 Oberhof Sprint 88
## 6236 Oberhof Sprint 88
## 6237 Oberhof Sprint 88
## 6238 Oberhof Sprint 88
## 6239 Oberhof Sprint 88
## 6240 Oberhof Sprint 88
## 6241 Oberhof Sprint 88
## 6242 Oberhof Sprint 88
## 6243 Oberhof Sprint 88
## 6244 Oberhof Sprint 88
## 6245 Oberhof Sprint 88
## 6246 Oberhof Sprint 88
## 6247 Oberhof Sprint 88
## 6248 Oberhof Sprint 88
## 6249 Oberhof Sprint 88
## [ reached 'max' / getOption("max.print") -- omitted 8141 rows ]
# Initializing the race_id for the second to last loop data frame
race_id <- 0
# The set of allowable values for the Rank column of the loop data frame
allowables <- c(1:127)
# Initializing the final loop data frame
df_final_loop_women <- data.frame()
# Beginning the cycle that loops over every year and every venue
for (i in seq_along(years)){
for(j in seq_along(locations[[years[i]]])){
# All the files that represent a loop in our directory
files <- list.files(locations_path_women[[years[i]]],
pattern=sprintf('loop...%s',locations[[years[i]]][j]),full.names = TRUE )
# Looping over all the files
for (file in files){
# Here we select, between all loop files the ones that represent the second to last loop,
# that is, the loop in which the biathlete arrive at the last shooting range
if (
(grepl(pattern = 'pursuit', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_4', x =file, fixed=TRUE))
||
(grepl(pattern = 'sprint', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_2', x =file, fixed=TRUE))
||
(grepl(pattern = 'individual', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_4', x =file, fixed=TRUE))
||
(grepl(pattern = 'mass_start', x =file, fixed=TRUE)
&&
grepl(pattern = 'loop_4', x =file, fixed=TRUE))
){
# Updating the race id
race_id <- race_id + 1
# Reading the file into a data frame
df_loop <- read.csv2(file = file, sep = '\t')
# Here we raise a flag if we don't have the Rank colun in the created data frame
if('Rank' %!in% colnames(df_loop)){
cat(paste('There is a mistake in', file, '\n'))
# Here we raise a flag and print the relative fail if we have a Rank value that is not allowed
if(length(df_loop$Rank[df_loop$Rank %!in% allowables]) !=0){cat('wooow problem, in', file)}
}
# The column Ski.Time is present only on individual races, for tha others we fill it with 0
# in order to make the rbind possible
if ('Ski.Time'%!in% colnames(df_loop)){
df_loop[['Ski.Time']] <- rep(0, nrow(df_loop))
}
# The Canmore's short individual did not have the Range.Time column, so we create it for the
# rbind... but who cares about short individuals anyway!!!
if ('Range.Time'%!in% colnames(df_loop)){
df_loop[['Range.Time']] <- rep(0, nrow(df_loop))
}
# The columns of the data frame
columns_df <- colnames(df_loop)
# The index from which column regarding times start
idx_time_columns <- which(columns_df=='Nation')
# The 'time' columns of the table, the -1 at the end is to delete 'Nation'
# that is not between them
time_columns <- columns_df[idx_time_columns:length(columns_df)][-1]
# Adding the column specifying the year of the race
df_loop$year <- rep(years[i], nrow(df_loop))
# Adding the column specifying the venue of the race
df_loop$location <- rep(locations[[years[i]]][j], nrow(df_loop))
# Adding the column specifying the type of the race
if (grepl(pattern = 'pursuit', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Pursuit', nrow(df_loop))
}
else if (grepl(pattern = 'individual', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Individual', nrow(df_loop))
}
else if (grepl(pattern = 'mass_start', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Mass start', nrow(df_loop))
}
else if (grepl(pattern = 'sprint', x =file, fixed=TRUE)){
df_loop$race_type <- rep('Sprint', nrow(df_loop))
}
else{
cat(paste('There is a mistake in',file,
'no race type specified'))
}
# Adding the column with the id of the race
# Assigning to the race the same id that it has on the results data frame
df_loop$ID <-rep( list_id_women[[paste(df_loop$race_type[1], years[i], locations[[years[i]]][j],
df_loop$Given.Name[df_res$Rank %!in% c('DSQ')][1],
df_loop$Given.Name[df_res$Rank %!in% c('DSQ')][2])]], nrow(df_loop))
# Initializing the list of the reference times among all the columns, we have in fact that
# time columns are note stored as absolute times: we have a reference time and then the other records
# reference to it as +'time_interval'
reference_times <- list()
# Looping over all the time columns
for(column in time_columns){
# In individual races penalty times, as we know, are a thing of their own and the data set
# itself seem to have noticed! It does not have in fact a value for biathletes that found the
# 0 in a certain shooting range. We deal with it by giving by default the value 0.
# We know what you are thinking: What if every one missed at least once?
# Come on have a little trust in your sport heroes! as soon as Sturla Holm Lægreid will be around
# we are more them safe!
if (column == 'Penalty.Time'
&&
grepl(pattern = 'individual', x = file, fixed=TRUE)
)
{reference_time <- duration(second = 0)}
# In the else statement instead we select as the reference time the record with no '+' in
# its body, the [1] is there to arbitrary break the ties between equally good reference times
else{
reference_time <- df_loop[[column]][!grepl(pattern = '+', x =df_loop[[column]],
fixed=TRUE)]
}
reference_time <- reference_time[1]
# In this if cycle we convert the reference time from a string to a time duration
# thanks to the lubridate package and its duration function
# The first case is for whe we have minutes and not only second where we have a column
# as a separator
if (grepl(pattern = ':', x = reference_time,
fixed=TRUE)){
# Changing the reference time into an iterable
string_sep <- unlist(strsplit((reference_time),""))
# Getting the index of the column
idx_sep <- unlist(gregexpr(':', reference_time, fixed = TRUE))
# This step raises a flag if having a double colon signaling hours,
# comes out: biathletes are no snails!
if (length(idx_sep) > 1){cat(paste('Do we have hours now?? in', file ))}
# The minute part of the reference time
min <- as.numeric(paste(string_sep[1:idx_sep-1], collapse=""))
# The second part of the reference time
sec <- as.numeric(paste(string_sep[-c(1:idx_sep)], collapse=""))
reference_time_ <- duration(minute= min, second=sec)
}
# This second case is for reference times that don't reach a minute
else{
sec <- as.numeric(reference_time)
reference_time_ <- duration(second=sec)
}
# Updating the list
reference_times[[column]] <- reference_time_
# Index of the reference times
reference_time_idx <- which(!grepl(pattern = '+', x =df_loop[[column]],
fixed=TRUE))
# Renaming the times of the current columns
times_to_add <- df_loop[[column]]
# Initializing the column of the absolute times
final_adding <- c()
# Filling the final_adding vector
for (k in seq_along(times_to_add)){
# Putting in the reference times
if (k %in% reference_time_idx){
final_adding[k] <- reference_times[[column]]
}
# Putting in the 'minutes' recorda
else if (grepl(pattern = ':', x =times_to_add[k], fixed=TRUE)){
string_add <- unlist(strsplit((times_to_add[k]),""))
idx_add <- unlist(gregexpr(':', times_to_add[k]))
# Flag raise for 'hour' times
if (length(idx_add) > 1){print('Do we have hours now?? in', file)}
min_add <- as.numeric(paste(string_add[1:idx_add-1], collapse=""))
sec_add <- as.numeric(paste(string_add[-c(1:idx_add)], collapse=""))
adding_time <- duration(minute= min_add, second=sec_add)
# Here the [1] is present for arbitrarily breaking ties for equally good
# reference times
final_adding[k] <- adding_time + reference_times[[column]][1]
}
else{
# The original data frame contained a couple of 'broken' records, being only
# the string '+', we changed the values to a known fixed outlier ('+1000') and here
# we transform it into NA
if (times_to_add[k]=='+1000') {final_adding[k] <- NA}
# Non pathological case were we have a 'seconds' time
else{
final_adding[k] <- duration(second = as.numeric(times_to_add[k])) +
reference_times[[column]]
}
}
}
# Updating the column of the data frame
df_loop[[column]] <- final_adding
}
# Binding together the data frames
df_final_loop_women <- rbind(df_final_loop_women, df_loop)
}
}
}
}
head(df_final_loop_women)
## Rank Bib Family.Name Given.Name Nation Cumulative.Time Loop.Time Course.Time
## 1 1 3 Domracheva Darya BLR 830.7 408.7 354.8
## 2 2 25 Makarainen Kaisa FIN 850.9 436.5 356.0
## 3 3 2 Dahlmeier Laura GER 864.8 434.0 372.2
## 4 4 5 Daubnerova Jana SVK 859.1 430.8 379.1
## 5 5 18 Oberhofer Karin ITA 878.8 457.8 365.7
## 6 6 28 Hildebrand Franziska GER 871.5 448.1 365.0
## Range.Time Shooting.Time Penalty.Time Ski.Time year location race_type
## 1 46.2 26 7.7 0 2014-2015 Anterselva Sprint
## 2 51.3 30 29.2 0 2014-2015 Anterselva Sprint
## 3 53.6 33 8.2 0 2014-2015 Anterselva Sprint
## 4 43.3 22 8.4 0 2014-2015 Anterselva Sprint
## 5 64.7 47 27.4 0 2014-2015 Anterselva Sprint
## 6 52.1 31 31.0 0 2014-2015 Anterselva Sprint
## ID
## 1 2
## 2 2
## 3 2
## 4 2
## 5 2
## 6 2
head(df_final_loop_men)
## Rank Bib Family.Name Given.Name Nation Cumulative.Time Loop.Time Course.Time
## 1 1 29 Schempp Simon GER 957.9 476.0 424.8
## 2 2 42 Garanichev Evgeniy RUS 967.8 483.9 436.1
## 3 3 48 Fak Jakov SLO 975.8 500.5 430.3
## 4 4 49 Weger Benjamin SUI 986.8 483.2 426.8
## 5 5 53 Green Brendan CAN 981.3 489.7 436.7
## 6 6 85 L'Abee-Lund Henrik NOR 985.4 491.3 435.7
## Range.Time Shooting.Time Penalty.Time Ski.Time year location race_type
## 1 43.2 24 8.0 0 2014-2015 Anterselva Sprint
## 2 39.8 20 8.0 0 2014-2015 Anterselva Sprint
## 3 43.3 23 26.9 0 2014-2015 Anterselva Sprint
## 4 48.5 29 7.9 0 2014-2015 Anterselva Sprint
## 5 45.6 26 7.4 0 2014-2015 Anterselva Sprint
## 6 48.1 27 7.5 0 2014-2015 Anterselva Sprint
## ID
## 1 2
## 2 2
## 3 2
## 4 2
## 5 2
## 6 2
if(res_dnf_men + res_dns_men + res_dsq_men + res_lap_men + res_over_men + nrow(df_final_loop_men) == nrow(df_results_men)){
cat('Thank god we no one got lost')
}else{'Who is missing?!'}
## Thank god we no one got lost
if(res_dnf_women + res_dns_women + res_dsq_women + res_lap_women + res_over_women + nrow(df_final_loop_women) == nrow(df_results_women)){
cat('Thank god we no one got lost')
}else{'Who is missing?!'}
## Thank god we no one got lost
df_results_men
## Rank Bib Family.Name Given.Name Nation Total Shootings
## 1 1 1 Schempp Simon GER 2 1+1+0+0
## 2 2 8 Eder Simon AUT 1 0+1+0+0
## 3 3 2 Garanichev Evgeniy RUS 1 0+0+1+0
## 4 4 9 Bjoerndalen Ole Einar NOR 0 0+0+0+0
## 5 5 25 Fourcade Martin FRA 0 0+0+0+0
## 6 6 19 Lesser Erik GER 0 0+0+0+0
## 7 7 3 Fak Jakov SLO 3 1+1+0+1
## 8 8 18 Fourcade Simon FRA 1 0+0+1+0
## 9 9 13 Pidruchnyi Dmytro UKR 2 0+1+1+0
## 10 10 11 Peiffer Arnd GER 1 1+0+0+0
## 11 11 10 Moravec Ondrej CZE 2 0+1+1+0
## 12 12 30 Boehm Daniel GER 0 0+0+0+0
## 13 13 7 Shipulin Anton RUS 4 3+0+0+1
## 14 14 16 Lapshin Timofei RUS 1 1+0+0+0
## 15 15 12 Eberhard Julian AUT 2 0+1+0+1
## 16 16 17 Beatrix Jean Guillaume FRA 3 0+0+1+2
## 17 17 28 Svendsen Emil Hegle NOR 2 0+0+1+1
## 18 18 5 Green Brendan CAN 4 0+2+2+0
## 19 19 37 Birnbacher Andreas GER 1 0+0+1+0
## 20 20 20 Lindstroem Fredrik SWE 1 0+0+0+1
## 21 21 29 Fillon Maillet Quentin FRA 3 0+0+2+1
## 22 22 31 Boe Johannes Thingnes NOR 3 0+1+0+2
## 23 23 26 Doll Benedikt GER 4 1+0+1+2
## 24 24 23 Krcmar Michal CZE 3 1+0+1+1
## 25 25 46 Boe Tarjei NOR 1 0+0+0+1
## 26 26 22 Pryma Artem UKR 4 1+1+1+1
## 27 27 54 Grossegger Sven AUT 1 1+0+0+0
## 28 28 4 Weger Benjamin SUI 5 0+1+3+1
## 29 29 45 Mesotitsch Daniel AUT 1 1+0+0+0
## 30 30 34 Hofer Lukas ITA 5 1+0+2+2
## 31 31 32 Bailey Lowell USA 5 0+1+2+2
## 32 32 14 Iliev Vladimir BUL 7 2+1+1+3
## 33 33 44 De Lorenzi Christian ITA 1 0+0+0+1
## 34 34 24 Os Alexander NOR 3 0+1+0+2
## 35 35 21 Rastorgujevs Andrejs LAT 6 1+1+3+1
## 36 36 39 Windisch Dominik ITA 5 1+1+0+3
## 37 37 38 Komatz David AUT 3 2+1+0+0
## 38 38 33 Chepelin Vladimir BLR 4 0+0+1+3
## 39 39 51 Roesch Michael BEL 3 1+0+0+2
## 40 40 48 Burke Tim USA 5 1+1+2+1
## 41 41 41 Soukup Jaroslav CZE 4 1+0+2+1
## 42 42 43 Zhyrnyi Oleksandr UKR 3 0+1+2+0
## 43 43 15 Malyshko Dmitry RUS 6 1+4+1+0
## 44 44 49 Savitskiy Yan KAZ 3 0+1+1+1
## 45 45 27 Dolder Mario SUI 6 0+1+2+3
## 46 46 52 Gow Christian CAN 2 1+0+0+1
## 47 47 58 Kaukenas Tomas LTU 4 1+0+1+2
## 48 48 42 Puchianu Cornel ROU 4 1+0+1+2
## 49 49 40 Hasilla Tomas SVK 6 2+0+2+2
## 50 50 35 Kazar Matej SVK 7 1+2+0+4
## 51 51 57 Pinter Friedrich AUT 5 2+0+0+3
## 52 52 47 Jouty Baptiste FRA 6 0+3+1+2
## 53 53 60 Pantov Anton KAZ 5 1+2+2+0
## 54 DNS 6 L'Abee-Lund Henrik NOR NA
## 55 DNS 36 Pechenkin Aleksandr RUS NA
## 56 DNS 50 Slesingr Michal CZE NA
## 57 DNS 53 Trsan Rok SLO NA
## 58 DNS 55 Liadov Yuryi BLR NA
## 59 DNS 56 Anev Krasimir BUL NA
## 60 DNS 59 Desthieux Simon FRA NA
## 61 1 29 Schempp Simon GER 0 0+0
## 62 2 42 Garanichev Evgeniy RUS 0 0+0
## 63 3 48 Fak Jakov SLO 1 0+1
## 64 4 49 Weger Benjamin SUI 1 1+0
## 65 5 53 Green Brendan CAN 0 0+0
## 66 6 85 L'Abee-Lund Henrik NOR 0 0+0
## 67 7 27 Shipulin Anton RUS 1 0+1
## 68 8 46 Eder Simon AUT 1 1+0
## 69 9 9 Bjoerndalen Ole Einar NOR 1 0+1
## 70 10 15 Moravec Ondrej CZE 0 0+0
## 71 11 68 Peiffer Arnd GER 1 0+1
## 72 12 57 Eberhard Julian AUT 2 2+0
## 73 13 17 Pidruchnyi Dmytro UKR 1 0+1
## 74 14 6 Iliev Vladimir BUL 1 0+1
## 75 15 4 Malyshko Dmitry RUS 0 0+0
## 76 16 28 Lapshin Timofei RUS 1 0+1
## 77 17 40 Beatrix Jean Guillaume FRA 2 1+1
## 78 18 34 Fourcade Simon FRA 1 1+0
## 79 19 45 Lesser Erik GER 2 0+2
## 80 20 32 Lindstroem Fredrik SWE 1 1+0
## 81 21 50 Rastorgujevs Andrejs LAT 2 2+0
## 82 22 38 Pryma Artem UKR 1 0+1
## 83 23 1 Krcmar Michal CZE 1 0+1
## 84 24 66 Os Alexander NOR 1 1+0
## 85 25 10 Fourcade Martin FRA 2 1+1
## 86 26 88 Doll Benedikt GER 2 1+1
## 87 27 76 Dolder Mario SUI 1 1+0
## 88 28 3 Svendsen Emil Hegle NOR 2 1+1
## 89 29 19 Fillon Maillet Quentin FRA 2 2+0
## 90 30 14 Boehm Daniel GER 1 0+1
## 91 31 5 Boe Johannes Thingnes NOR 3 2+1
## 92 32 37 Bailey Lowell USA 1 0+1
## 93 33 41 Chepelin Vladimir BLR 2 0+2
## 94 34 16 Hofer Lukas ITA 2 1+1
## 95 34 44 Kazar Matej SVK 2 2+0
## 96 DSQ 84 Pechenkin Aleksandr RUS 1 0+1
## 97 36 11 Birnbacher Andreas GER 2 2+0
## 98 37 47 Komatz David AUT 1 0+1
## 99 38 25 Windisch Dominik ITA 3 2+1
## 100 39 92 Hasilla Tomas SVK 1 0+1
## 101 40 63 Soukup Jaroslav CZE 2 1+1
## 102 41 13 Puchianu Cornel ROU 2 0+2
## 103 42 102 Zhyrnyi Oleksandr UKR 0 0+0
## 104 43 99 De Lorenzi Christian ITA 1 0+1
## 105 44 23 Mesotitsch Daniel AUT 2 1+1
## 106 45 36 Boe Tarjei NOR 2 0+2
## 107 46 94 Jouty Baptiste FRA 1 0+1
## 108 47 67 Burke Tim USA 3 1+2
## 109 48 22 Savitskiy Yan KAZ 2 1+1
## 110 49 18 Slesingr Michal CZE 2 1+1
## 111 50 39 Roesch Michael BEL 2 0+2
## 112 51 103 Gow Christian CAN 0 0+0
## 113 52 52 Trsan Rok SLO 0 0+0
## 114 53 33 Grossegger Sven AUT 3 1+2
## 115 54 7 Liadov Yuryi BLR 2 0+2
## 116 55 35 Anev Krasimir BUL 4 3+1
## 117 56 96 Pinter Friedrich AUT 3 1+2
## 118 57 74 Kaukenas Tomas LTU 2 1+1
## 119 58 75 Desthieux Simon FRA 2 0+2
## 120 59 59 Pantov Anton KAZ 2 2+0
## 121 60 82 Oblak Lenart SLO 0 0+0
## 122 61 30 Toivanen Ahti FIN 4 2+2
## 123 62 83 Doherty Sean USA 3 1+2
## 124 63 31 Krupcik Tomas CZE 3 1+2
## 125 64 69 Tsvetkov Maxim RUS 3 0+3
## 126 65 81 Matiasko Miroslav SVK 2 0+2
## 127 66 72 Tyshchenko Artem UKR 2 0+2
## 128 67 70 Faur Remus ROU 0 0+0
## 129 68 54 Dokl Peter SLO 0 0+0
## 130 69 60 Bormolini Thomas ITA 2 0+2
## 131 70 51 Tobreluts Indrek EST 3 1+2
## 132 71 8 Semenov Sergii UKR 5 4+1
## 133 72 56 Hiidensalo Olli FIN 3 2+1
## 134 73 20 Gow Scott CAN 3 2+1
## 135 74 24 Lessing Roland EST 3 2+1
## 136 75 73 Zlatev Ivan BUL 0 0+0
## 137 76 86 Zahkna Rene EST 2 2+0
## 138 77 43 Smith Nathan CAN 4 2+2
## 139 78 101 Abasheu Dzmitry BLR 2 0+2
## 140 79 21 Nordgren Leif USA 4 2+2
## 141 80 87 Kauppinen Jarkko FIN 2 1+1
## 142 81 100 Stegmayr Gabriel SWE 1 1+0
## 143 82 2 Otcenas Martin SVK 4 2+2
## 144 83 62 Guzik Grzegorz POL 2 2+0
## 145 84 77 Sloof Joel NED 1 0+1
## 146 85 61 Almoukov Alexei AUS 0 0+0
## 147 86 71 Armgren Ted SWE 4 2+2
## 148 87 78 Dyuzhev Dmitriy BLR 4 2+2
## 149 88 65 Lobo Escolar Victor ESP 1 0+1
## 150 89 89 Dombrovski Karol LTU 2 1+1
## 151 90 58 Puzulis Rolands LAT 1 1+0
## 152 91 12 Wiestner Serafin SUI 6 3+3
## 153 92 95 Trifonov Alexandr KAZ 3 2+1
## 154 93 80 Stenersen Torstein SWE 4 2+2
## 155 94 79 Kane Kevin GBR 1 1+0
## 156 95 97 Cuenot Gaspard SUI 4 2+2
## 157 96 55 Rastic Damir SRB 3 1+2
## 158 97 90 Szczurek Lukasz POL 6 5+1
## 159 98 91 Slotins Roberts LAT 4 0+4
## 160 99 64 Inomata Kazuya JPN 3 1+2
## 161 100 98 Laponder Marcel GBR 4 2+2
## 162 101 93 Krsmanovic Dejan SRB 5 2+3
## 163 DNS 26 Bauer Klemen SLO NA
## 164 1 7 Fourcade Martin FRA 0 0+0+0+0
## 165 2 2 Schempp Simon GER 0 0+0+0+0
## 166 3 5 Fak Jakov SLO 1 0+0+0+1
## 167 4 1 Boe Johannes Thingnes NOR 2 0+0+2+0
## 168 5 11 Shipulin Anton RUS 1 1+0+0+0
## 169 6 6 Boe Tarjei NOR 1 1+0+0+0
## 170 7 3 Birnbacher Andreas GER 2 0+2+0+0
## 171 8 4 Landertinger Dominik AUT 3 0+1+0+2
## 172 9 10 Moravec Ondrej CZE 2 1+1+0+0
## 173 10 8 Malyshko Dmitry RUS 2 1+1+0+0
## 174 11 19 Iliev Vladimir BUL 1 0+0+0+1
## 175 12 15 Boehm Daniel GER 1 0+0+1+0
## 176 13 16 Lapshin Timofei RUS 2 0+1+0+1
## 177 14 9 Svendsen Emil Hegle NOR 3 0+0+2+1
## 178 15 45 Fillon Maillet Quentin FRA 0 0+0+0+0
## 179 16 25 Eder Simon AUT 3 1+0+1+1
## 180 17 24 Rastorgujevs Andrejs LAT 3 3+0+0+0
## 181 18 29 Lesser Erik GER 2 1+0+1+0
## 182 19 14 Mesotitsch Daniel AUT 3 1+0+1+1
## 183 20 12 Weger Benjamin SUI 5 2+1+1+1
## 184 21 23 Tsvetkov Maxim RUS 3 0+0+3+0
## 185 22 47 Lindstroem Fredrik SWE 1 0+1+0+0
## 186 23 17 Anev Krasimir BUL 1 0+1+0+0
## 187 24 20 Kazar Matej SVK 2 0+1+1+0
## 188 25 13 Burke Tim USA 5 1+1+3+0
## 189 26 30 Fourcade Simon FRA 3 0+0+3+0
## 190 27 34 Garanichev Evgeniy RUS 3 1+0+1+1
## 191 28 21 Savitskiy Yan KAZ 2 0+1+1+0
## 192 29 27 Pryma Artem UKR 2 0+1+0+1
## 193 30 39 Birkeland Lars Helge NOR 4 1+2+0+1
## 194 31 36 Pidruchnyi Dmytro UKR 1 0+0+0+1
## 195 32 18 Bailey Lowell USA 4 1+1+0+2
## 196 33 26 Os Alexander NOR 5 1+2+1+1
## 197 DSQ 22 Pechenkin Aleksandr RUS 3 0+2+0+1
## 198 34 32 Semenov Sergii UKR 3 1+1+1+0
## 199 35 41 Bauer Klemen SLO 3 0+1+2+0
## 200 36 51 Nordgren Leif USA 1 0+0+1+0
## 201 37 38 Beatrix Jean Guillaume FRA 6 1+0+2+3
## 202 38 42 Eberhard Julian AUT 5 2+0+2+1
## 203 39 31 Desthieux Simon FRA 5 0+0+2+3
## 204 40 54 Chepelin Vladimir BLR 4 0+1+2+1
## 205 41 59 Windisch Dominik ITA 4 1+1+0+2
## 206 42 33 Peiffer Arnd GER 6 1+1+3+1
## 207 43 49 Green Brendan CAN 5 1+0+1+3
## 208 44 35 Dolder Mario SUI 4 0+1+2+1
## 209 45 57 Arwidson Tobias SWE 2 1+0+1+0
## 210 46 48 Otcenas Martin SVK 5 0+0+2+3
## 211 47 56 Krcmar Michal CZE 5 0+1+2+2
## 212 48 44 Smith Nathan CAN 2 0+1+1+0
## 213 49 58 Cuenot Gaspard SUI 4 0+0+2+2
## 214 50 55 Zhyrnyi Oleksandr UKR 4 0+1+2+1
## 215 51 37 Soukup Jaroslav CZE 7 1+0+2+4
## 216 52 46 Liadov Yuryi BLR 4 0+1+1+2
## 217 53 28 Puchianu Cornel ROU 8 3+1+2+2
## 218 54 53 Hiidensalo Olli FIN 5 2+1+1+1
## 219 55 50 Koiv Kauri EST 7 3+2+0+2
## 220 56 52 Sloof Joel NED 4 1+1+1+1
## 221 DNS 40 Bjoerndalen Ole Einar NOR NA
## 222 DNS 43 Slesingr Michal CZE NA
## 223 DNS 60 Tobreluts Indrek EST NA
## 224 1 13 Boe Johannes Thingnes NOR 0 0+0
## 225 2 19 Schempp Simon GER 0 0+0
## 226 3 16 Birnbacher Andreas GER 0 0+0
## 227 4 27 Landertinger Dominik AUT 0 0+0
## 228 5 25 Fak Jakov SLO 1 1+0
## 229 6 6 Boe Tarjei NOR 0 0+0
## 230 7 83 Fourcade Martin FRA 0 0+0
## 231 8 30 Malyshko Dmitry RUS 0 0+0
## 232 9 2 Svendsen Emil Hegle NOR 1 0+1
## 233 10 5 Moravec Ondrej CZE 1 1+0
## 234 11 33 Shipulin Anton RUS 1 1+0
## 235 12 10 Weger Benjamin SUI 0 0+0
## 236 13 7 Burke Tim USA 1 0+1
## 237 14 4 Mesotitsch Daniel AUT 0 0+0
## 238 15 52 Boehm Daniel GER 0 0+0
## 239 16 88 Lapshin Timofei RUS 1 0+1
## 240 17 23 Anev Krasimir BUL 0 0+0
## 241 17 41 Bailey Lowell USA 0 0+0
## 242 19 31 Iliev Vladimir BUL 1 0+1
## 243 20 26 Kazar Matej SVK 0 0+0
## 244 21 14 Savitskiy Yan KAZ 0 0+0
## 245 DSQ 63 Pechenkin Aleksandr RUS 0 0+0
## 246 22 18 Tsvetkov Maxim RUS 0 0+0
## 247 23 28 Rastorgujevs Andrejs LAT 2 2+0
## 248 24 12 Eder Simon AUT 2 1+1
## 249 25 36 Os Alexander NOR 2 2+0
## 250 26 8 Pryma Artem UKR 1 0+1
## 251 27 9 Puchianu Cornel ROU 1 0+1
## 252 28 39 Lesser Erik GER 3 1+2
## 253 29 105 Fourcade Simon FRA 0 0+0
## 254 30 21 Desthieux Simon FRA 2 0+2
## 255 31 22 Semenov Sergii UKR 2 2+0
## 256 32 43 Peiffer Arnd GER 2 0+2
## 257 33 42 Garanichev Evgeniy RUS 2 0+2
## 258 34 47 Dolder Mario SUI 1 0+1
## 259 35 85 Pidruchnyi Dmytro UKR 1 1+0
## 260 36 17 Soukup Jaroslav CZE 2 1+1
## 261 37 91 Beatrix Jean Guillaume FRA 3 0+3
## 262 38 73 Birkeland Lars Helge NOR 2 2+0
## 263 39 101 Bjoerndalen Ole Einar NOR 3 2+1
## 264 40 24 Bauer Klemen SLO 3 0+3
## 265 41 82 Eberhard Julian AUT 3 2+1
## 266 42 15 Slesingr Michal CZE 2 0+2
## 267 43 29 Smith Nathan CAN 3 2+1
## 268 44 35 Fillon Maillet Quentin FRA 1 0+1
## 269 45 1 Liadov Yuryi BLR 1 1+0
## 270 46 40 Lindstroem Fredrik SWE 4 1+3
## 271 47 79 Otcenas Martin SVK 2 0+2
## 272 48 74 Green Brendan CAN 2 2+0
## 273 49 54 Koiv Kauri EST 1 0+1
## 274 50 70 Nordgren Leif USA 1 1+0
## 275 51 50 Sloof Joel NED 0 0+0
## 276 52 69 Hiidensalo Olli FIN 2 2+0
## 277 53 57 Chepelin Vladimir BLR 3 0+3
## 278 54 65 Zhyrnyi Oleksandr UKR 1 1+0
## 279 55 48 Krcmar Michal CZE 3 0+3
## 280 56 3 Arwidson Tobias SWE 1 0+1
## 281 57 53 Cuenot Gaspard SUI 2 1+1
## 282 58 37 Windisch Dominik ITA 4 2+2
## 283 59 96 Tobreluts Indrek EST 2 0+2
## 284 60 97 Currier Russell USA 3 2+1
## 285 61 94 Dombrovski Karol LTU 1 1+0
## 286 62 102 Wiestner Serafin SUI 3 2+1
## 287 63 67 Darozhka Aliaksandr BLR 2 0+2
## 288 64 51 Kaukenas Tomas LTU 3 0+3
## 289 65 20 Hofer Lukas ITA 4 2+2
## 290 66 56 Bormolini Thomas ITA 2 2+0
## 291 67 46 Eriksson Christofer SWE 3 1+2
## 292 68 93 Willeitner Michael GER 4 1+3
## 293 69 103 Rastic Damir SRB 1 0+1
## 294 70 89 Budzilovich Dzmitry BLR 1 0+1
## 295 71 64 Eberhard Tobias AUT 4 2+2
## 296 72 32 Tyshchenko Artem UKR 2 1+1
## 297 73 34 Lessing Roland EST 4 2+2
## 298 74 86 Armgren Ted SWE 3 2+1
## 299 75 84 Trsan Rok SLO 2 0+2
## 300 76 58 Oblak Lenart SLO 2 2+0
## 301 77 76 Dokl Peter SLO 1 0+1
## 302 78 45 Krupcik Tomas CZE 2 1+1
## 303 79 75 Hakala Matti FIN 3 2+1
## 304 80 80 Roesch Michael BEL 1 0+1
## 305 81 49 Bedard Marc Andre CAN 3 2+1
## 306 82 38 Komatz David AUT 4 2+2
## 307 83 81 Buta George ROU 3 1+2
## 308 84 68 Almoukov Alexei AUS 3 2+1
## 309 85 90 Martinelli Christian ITA 3 2+1
## 310 86 59 Boeuf Alexis FRA 3 1+2
## 311 87 44 Hasilla Tomas SVK 3 1+2
## 312 88 77 Trifonov Alexandr KAZ 2 2+0
## 313 89 87 Janik Mateusz POL 2 1+1
## 314 90 78 Lobo Escolar Victor ESP 2 0+2
## 315 91 11 Kobonoki Tsukasa JPN 3 2+1
## 316 92 104 Gronman Tuomas FIN 2 1+1
## 317 93 60 Sinapov Anton BUL 3 0+3
## 318 94 62 Szczurek Lukasz POL 4 3+1
## 319 95 61 Jackson Lee-Steve GBR 3 3+0
## 320 96 66 Femling Peppe SWE 3 2+1
## 321 97 98 Podkorytov Vassiliy KAZ 4 4+0
## 322 98 99 Matiasko Miroslav SVK 4 1+3
## 323 99 92 Perras Scott CAN 6 3+3
## 324 100 55 Puzulis Rolands LAT 1 0+1
## 325 101 95 Patrijuks Aleksandrs LAT 4 2+2
## 326 102 71 Crnkovic Kresimir CRO 4 1+3
## 327 103 100 Kane Kevin GBR 4 1+3
## 328 104 72 Hodzic Edin SRB 4 3+1
## 329 1 3 Fak Jakov SLO 0 0+0+0+0
## 330 2 2 Shipulin Anton RUS 2 1+0+1+0
## 331 3 18 Boe Tarjei NOR 1 1+0+0+0
## 332 4 10 Fourcade Simon FRA 2 1+0+1+0
## 333 5 14 Eder Simon AUT 2 1+0+1+0
## 334 6 19 Beatrix Jean Guillaume FRA 1 0+0+1+0
## 335 7 13 Peiffer Arnd GER 2 0+0+1+1
## 336 8 17 Boehm Daniel GER 1 0+1+0+0
## 337 9 4 Boe Johannes Thingnes NOR 2 0+0+1+1
## 338 10 16 Weger Benjamin SUI 2 0+2+0+0
## 339 11 24 Rastorgujevs Andrejs LAT 3 0+1+2+0
## 340 12 7 Garanichev Evgeniy RUS 4 1+1+0+2
## 341 13 9 Lesser Erik GER 1 0+0+0+1
## 342 14 22 Fillon Maillet Quentin FRA 1 0+0+0+1
## 343 15 12 Lindstroem Fredrik SWE 2 0+0+2+0
## 344 16 30 Eberhard Julian AUT 3 3+0+0+0
## 345 17 15 Smith Nathan CAN 4 1+1+1+1
## 346 18 27 Chepelin Vladimir BLR 3 0+0+2+1
## 347 19 28 Kuehn Johannes GER 3 0+0+2+1
## 348 20 1 Fourcade Martin FRA 4 1+0+2+1
## 349 21 5 Moravec Ondrej CZE 3 1+2+0+0
## 350 22 20 Doll Benedikt GER 5 0+0+1+4
## 351 23 6 Slesingr Michal CZE 4 0+1+2+1
## 352 24 26 Nordgren Leif USA 3 1+1+0+1
## 353 25 25 Anev Krasimir BUL 2 1+1+0+0
## 354 26 23 Semenov Sergii UKR 5 1+2+2+0
## 355 27 8 Svendsen Emil Hegle NOR 4 1+0+1+2
## 356 28 11 Lapshin Timofei RUS 4 2+1+1+0
## 357 29 29 Graf Florian GER 6 0+1+1+4
## 358 30 21 Iliev Vladimir BUL 6 1+0+3+2
## 359 1 5 Smith Nathan CAN 1 0+0+0+1
## 360 2 3 Doll Benedikt GER 2 0+0+1+1
## 361 3 2 Shipulin Anton RUS 4 1+1+0+2
## 362 4 1 Fourcade Martin FRA 4 1+0+1+2
## 363 5 11 Boehm Daniel GER 2 1+0+0+1
## 364 6 6 Peiffer Arnd GER 3 0+0+1+2
## 365 7 7 Lindstroem Fredrik SWE 0 0+0+0+0
## 366 8 4 Rastorgujevs Andrejs LAT 4 1+0+0+3
## 367 9 15 Slesingr Michal CZE 4 1+1+2+0
## 368 10 18 Fak Jakov SLO 4 2+0+2+0
## 369 11 8 Fourcade Simon FRA 3 0+0+1+2
## 370 11 50 Boe Tarjei NOR 1 0+1+0+0
## 371 13 19 Weger Benjamin SUI 3 0+1+1+1
## 372 14 57 Hofer Lukas ITA 1 0+0+0+1
## 373 15 25 Chepelin Vladimir BLR 3 0+1+1+1
## 374 16 36 Semenov Sergii UKR 3 1+1+0+1
## 375 17 21 Nordgren Leif USA 3 1+2+0+0
## 376 18 23 Graf Florian GER 3 0+2+1+0
## 377 19 22 Eberhard Julian AUT 5 0+0+3+2
## 378 20 12 Beatrix Jean Guillaume FRA 3 0+0+2+1
## 379 21 40 Malyshko Dmitry RUS 4 0+2+0+2
## 380 22 51 Bailey Lowell USA 1 0+0+0+1
## 381 23 30 Green Brendan CAN 1 0+1+0+0
## 382 24 53 Mesotitsch Daniel AUT 1 0+0+1+0
## 383 25 26 Lesser Erik GER 4 0+0+1+3
## 384 26 31 Joller Ivan SUI 2 1+0+0+1
## 385 27 9 Bjoerndalen Ole Einar NOR 5 2+1+2+0
## 386 28 44 Slepov Alexey RUS 4 0+0+2+2
## 387 29 24 Volkov Alexey RUS 3 0+0+1+2
## 388 30 43 Roesch Michael BEL 2 0+0+0+2
## 389 31 10 Kuehn Johannes GER 5 0+0+1+4
## 390 32 20 Anev Krasimir BUL 4 3+0+1+0
## 391 33 34 Iliev Vladimir BUL 5 0+2+2+1
## 392 34 17 Dolder Mario SUI 4 0+1+1+2
## 393 35 48 Eder Simon AUT 5 1+1+1+2
## 394 36 33 Garanichev Evgeniy RUS 6 2+1+1+2
## 395 37 27 Koiv Kauri EST 4 0+0+2+2
## 396 38 41 Zhyrnyi Oleksandr UKR 4 1+0+2+1
## 397 39 35 Grossegger Sven AUT 5 1+1+0+3
## 398 40 37 Bauer Klemen SLO 6 2+0+3+1
## 399 41 14 Tsvetkov Maxim RUS 4 2+0+1+1
## 400 42 38 Moravec Ondrej CZE 6 2+3+1+0
## 401 43 54 Windisch Dominik ITA 6 3+1+2+0
## 402 44 60 Lapshin Timofei RUS 3 2+0+1+0
## 403 45 28 Kazar Matej SVK 6 1+1+2+2
## 404 46 29 Liadov Yuryi BLR 5 2+0+2+1
## 405 47 59 Birkeland Lars Helge NOR 2 1+0+0+1
## 406 48 52 Pryma Artem UKR 4 0+1+2+1
## 407 49 32 Wiestner Serafin SUI 7 0+1+3+3
## 408 50 56 Krcmar Michal CZE 4 2+1+1+0
## 409 51 58 L'Abee-Lund Henrik NOR 4 0+3+1+0
## 410 52 45 Abasheu Dzmitry BLR 4 1+2+1+0
## 411 53 55 Burke Tim USA 6 2+0+2+2
## 412 54 49 Hiidensalo Olli FIN 5 1+0+2+2
## 413 55 47 Gjermundshaug Vegard NOR 6 1+2+0+3
## 414 DNF 13 Svendsen Emil Hegle NOR NA 0+1
## 415 DNS 16 Schempp Simon GER NA
## 416 DNS 39 Bjoentegaard Erlend NOR NA
## 417 DNS 42 Femling Peppe SWE NA
## 418 DNS 46 Fillon Maillet Quentin FRA NA
## 419 1 38 Fourcade Martin FRA 0 0+0
## 420 2 43 Shipulin Anton RUS 0 0+0
## 421 3 27 Doll Benedikt GER 1 0+1
## 422 4 32 Rastorgujevs Andrejs LAT 0 0+0
## 423 5 24 Smith Nathan CAN 1 1+0
## 424 6 52 Peiffer Arnd GER 2 1+1
## 425 7 26 Lindstroem Fredrik SWE 0 0+0
## 426 8 23 Fourcade Simon FRA 1 1+0
## 427 9 30 Bjoerndalen Ole Einar NOR 0 0+0
## 428 10 3 Kuehn Johannes GER 1 0+1
## 429 11 31 Boehm Daniel GER 1 0+1
## 430 12 2 Beatrix Jean Guillaume FRA 0 0+0
## 431 13 37 Svendsen Emil Hegle NOR 1 0+1
## 432 14 14 Tsvetkov Maxim RUS 0 0+0
## 433 15 28 Slesingr Michal CZE 2 1+1
## 434 16 67 Schempp Simon GER 2 0+2
## 435 17 45 Dolder Mario SUI 1 0+1
## 436 18 19 Fak Jakov SLO 3 1+2
## 437 19 39 Weger Benjamin SUI 2 0+2
## 438 20 6 Anev Krasimir BUL 0 0+0
## 439 21 41 Nordgren Leif USA 1 0+1
## 440 22 29 Eberhard Julian AUT 2 0+2
## 441 23 87 Graf Florian GER 2 1+1
## 442 24 66 Volkov Alexey RUS 0 0+0
## 443 25 36 Chepelin Vladimir BLR 2 1+1
## 444 26 53 Lesser Erik GER 2 0+2
## 445 27 51 Koiv Kauri EST 1 0+1
## 446 28 9 Kazar Matej SVK 0 0+0
## 447 29 11 Liadov Yuryi BLR 0 0+0
## 448 30 47 Green Brendan CAN 1 0+1
## 449 31 88 Joller Ivan SUI 1 1+0
## 450 32 15 Wiestner Serafin SUI 2 1+1
## 451 33 22 Garanichev Evgeniy RUS 3 2+1
## 452 34 20 Iliev Vladimir BUL 3 1+2
## 453 35 65 Grossegger Sven AUT 1 0+1
## 454 36 1 Semenov Sergii UKR 2 2+0
## 455 37 35 Bauer Klemen SLO 3 2+1
## 456 38 42 Moravec Ondrej CZE 2 2+0
## 457 39 4 Bjoentegaard Erlend NOR 2 1+1
## 458 40 33 Malyshko Dmitry RUS 2 2+0
## 459 41 55 Zhyrnyi Oleksandr UKR 2 0+2
## 460 42 48 Femling Peppe SWE 1 0+1
## 461 43 34 Roesch Michael BEL 2 0+2
## 462 44 69 Slepov Alexey RUS 4 3+1
## 463 44 75 Abasheu Dzmitry BLR 1 0+1
## 464 46 63 Fillon Maillet Quentin FRA 2 2+0
## 465 47 74 Gjermundshaug Vegard NOR 1 1+0
## 466 48 81 Eder Simon AUT 3 2+1
## 467 49 46 Hiidensalo Olli FIN 1 0+1
## 468 50 12 Boe Tarjei NOR 2 0+2
## 469 51 82 Bailey Lowell USA 2 0+2
## 470 52 21 Pryma Artem UKR 2 1+1
## 471 53 80 Mesotitsch Daniel AUT 1 0+1
## 472 54 49 Windisch Dominik ITA 2 0+2
## 473 55 56 Burke Tim USA 4 1+3
## 474 56 16 Krcmar Michal CZE 2 0+2
## 475 57 17 Hofer Lukas ITA 4 2+2
## 476 57 70 L'Abee-Lund Henrik NOR 2 0+2
## 477 59 62 Birkeland Lars Helge NOR 2 1+1
## 478 60 5 Lapshin Timofei RUS 3 3+0
## 479 61 7 Komatz David AUT 2 1+1
## 480 62 25 Otcenas Martin SVK 3 1+2
## 481 63 59 Matiasko Miroslav SVK 0 0+0
## 482 64 71 Buta George ROU 2 2+0
## 483 65 40 Savitskiy Yan KAZ 2 1+1
## 484 66 89 Tyshchenko Artem UKR 2 1+1
## 485 67 86 Dombrovski Karol LTU 1 0+1
## 486 68 18 Boe Johannes Thingnes NOR 4 1+3
## 487 69 54 Dyuzhev Dmitriy BLR 3 2+1
## 488 70 85 Bormolini Thomas ITA 2 1+1
## 489 71 78 Oblak Lenart SLO 1 1+0
## 490 72 13 Puchianu Cornel ROU 3 0+3
## 491 73 58 Zlatev Ivan BUL 3 3+0
## 492 74 61 Braun Maxim KAZ 2 2+0
## 493 75 44 Sloof Joel NED 2 2+0
## 494 76 8 Arwidson Tobias SWE 1 1+0
## 495 77 50 Trsan Rok SLO 3 2+1
## 496 78 72 Krupcik Tomas CZE 2 0+2
## 497 79 84 Pantov Anton KAZ 2 1+1
## 498 80 90 Eliseev Matvey RUS 5 3+2
## 499 81 68 Almoukov Alexei AUS 1 1+0
## 500 82 83 Slotins Roberts LAT 2 0+2
## 501 83 64 Kaukenas Tomas LTU 5 1+4
## 502 84 77 Stephan Christoph GER 4 0+4
## 503 85 60 Puzulis Rolands LAT 3 1+2
## 504 86 79 Koivunen Mikael FIN 3 0+3
## 505 87 57 Rastic Damir SRB 3 0+3
## 506 88 76 Krsmanovic Dejan SRB 5 1+4
## 507 DNF 10 Soukup Jaroslav CZE NA 1+1
## 508 DNS 73 Eriksson Christofer SWE NA
## 509 1 34 Fourcade Martin FRA 1 0+1+0+0
## 510 2 17 Svendsen Emil Hegle NOR 0 0+0+0+0
## 511 3 40 Moravec Ondrej CZE 1 0+1+0+0
## 512 4 3 Fourcade Simon FRA 0 0+0+0+0
## 513 5 12 Semenov Sergii UKR 1 1+0+0+0
## 514 6 69 Bjoerndalen Ole Einar NOR 1 1+0+0+0
## 515 7 29 Boe Johannes Thingnes NOR 1 0+0+1+0
## 516 8 24 Schempp Simon GER 2 0+1+1+0
## 517 9 84 Volkov Alexey RUS 0 0+0+0+0
## 518 10 13 Fak Jakov SLO 2 0+1+0+1
## 519 11 42 Boehm Daniel GER 2 1+0+0+1
## 520 12 76 De Lorenzi Christian ITA 1 1+0+0+0
## 521 13 10 Roesch Michael BEL 1 0+0+0+1
## 522 14 4 Slesingr Michal CZE 3 1+0+1+1
## 523 15 45 Lessing Roland EST 1 1+0+0+0
## 524 16 19 Shipulin Anton RUS 2 1+0+0+1
## 525 17 31 Liadov Yuryi BLR 0 0+0+0+0
## 526 18 22 Lesser Erik GER 1 0+0+0+1
## 527 19 2 Anev Krasimir BUL 2 1+1+0+0
## 528 20 38 Eder Simon AUT 3 1+0+1+1
## 529 21 53 Green Brendan CAN 1 1+0+0+0
## 530 22 104 Peiffer Arnd GER 3 0+1+0+2
## 531 23 18 Bauer Klemen SLO 3 1+1+1+0
## 532 24 65 Bailey Lowell USA 2 2+0+0+0
## 533 25 105 Boe Tarjei NOR 2 0+1+0+1
## 534 26 75 Krupcik Tomas CZE 1 0+1+0+0
## 535 27 56 Iliev Vladimir BUL 3 0+1+0+2
## 536 28 47 Landertinger Dominik AUT 2 0+1+0+1
## 537 29 126 Grossegger Sven AUT 2 0+0+0+2
## 538 30 36 Weger Benjamin SUI 3 1+1+0+1
## 539 31 23 Burke Tim USA 4 1+1+0+2
## 540 32 43 Maric Janez SLO 2 0+0+0+2
## 541 33 101 Nordgren Leif USA 3 0+1+1+1
## 542 34 63 Pryma Artem UKR 3 2+0+0+1
## 543 35 6 Garanichev Evgeniy RUS 4 2+0+0+2
## 544 36 41 Soukup Jaroslav CZE 3 0+1+0+2
## 545 37 37 Armgren Ted SWE 3 1+1+1+0
## 546 38 92 Lindstroem Fredrik SWE 3 0+1+0+2
## 547 39 50 Jackson Lee-Steve GBR 2 0+1+0+1
## 548 40 27 Ermits Kalev EST 3 1+1+1+0
## 549 41 67 Chepelin Vladimir BLR 3 0+0+2+1
## 550 42 54 Kazar Matej SVK 3 1+0+1+1
## 551 43 35 Almoukov Alexei AUS 0 0+0+0+0
## 552 44 28 Smith Nathan CAN 5 0+1+2+2
## 553 45 11 Matiasko Miroslav SVK 3 1+2+0+0
## 554 46 60 Szczurek Lukasz POL 2 0+2+0+0
## 555 47 125 Doherty Sean USA 3 0+1+2+0
## 556 48 8 Rastorgujevs Andrejs LAT 5 1+2+1+1
## 557 49 122 Desthieux Simon FRA 2 0+0+0+2
## 558 50 7 Hofer Lukas ITA 5 2+1+0+2
## 559 51 9 Toivanen Ahti FIN 3 0+1+1+1
## 560 52 108 Rusinov Dmytro UKR 2 1+1+0+0
## 561 53 94 Braun Maxim KAZ 2 1+0+0+1
## 562 54 86 Mesotitsch Daniel AUT 5 1+2+0+2
## 563 55 96 Buta George ROU 3 0+2+0+1
## 564 56 71 Pantov Anton KAZ 2 1+1+0+0
## 565 57 98 Beatrix Jean Guillaume FRA 2 1+1+0+0
## 566 58 66 Lapshin Timofei RUS 4 2+2+0+0
## 567 59 85 Koiv Kauri EST 4 2+1+1+0
## 568 60 103 Tyshchenko Artem UKR 3 1+0+0+2
## 569 61 83 Wiestner Serafin SUI 5 1+2+0+2
## 570 62 55 Femling Peppe SWE 5 2+1+1+1
## 571 63 79 Gow Scott CAN 4 1+1+1+1
## 572 64 82 Hiidensalo Olli FIN 4 1+1+0+2
## 573 65 124 Gow Christian CAN 3 1+1+1+0
## 574 66 99 Strolia Vytautas LTU 3 1+2+0+0
## 575 67 51 Puchianu Cornel ROU 6 0+2+2+2
## 576 68 110 Arwidson Tobias SWE 3 0+1+1+1
## 577 69 20 Kobonoki Tsukasa JPN 4 0+2+2+0
## 578 70 33 Sloof Joel NED 2 0+0+1+1
## 579 71 14 Plywaczyk Krzysztof POL 3 1+1+0+1
## 580 72 25 Faur Remus ROU 3 1+0+1+1
## 581 73 32 Kaukenas Tomas LTU 5 0+4+1+0
## 582 74 117 Darozhka Aliaksandr BLR 4 2+1+0+1
## 583 75 57 Kauppinen Jarkko FIN 5 1+2+1+1
## 584 76 127 Podkorytov Vassiliy KAZ 2 0+0+0+2
## 585 77 74 Guzik Grzegorz POL 4 0+2+0+2
## 586 78 39 Dixon Scott GBR 2 1+1+0+0
## 587 79 70 Fillon Maillet Quentin FRA 5 2+2+0+1
## 588 80 114 Koivunen Mikael FIN 1 0+0+0+1
## 589 81 21 Ren Long CHN 4 1+1+0+2
## 590 81 111 Gerdzhikov Dimitar BUL 4 2+1+1+0
## 591 83 107 Bormolini Thomas ITA 4 1+0+2+1
## 592 84 77 Hodzic Edin SRB 1 0+0+1+0
## 593 85 78 Inomata Kazuya JPN 5 1+1+2+1
## 594 86 16 Savitskiy Yan KAZ 4 0+1+1+2
## 595 87 116 Joller Ivan SUI 5 2+2+0+1
## 596 88 87 Otcenas Martin SVK 6 2+0+2+2
## 597 89 88 Praulitis Toms LAT 3 0+2+1+0
## 598 90 62 Jun Jeuk KOR 4 1+0+0+3
## 599 91 64 Windisch Dominik ITA 7 3+2+0+2
## 600 92 59 Dolder Mario SUI 6 0+3+1+2
## 601 93 72 Dombrovski Karol LTU 6 0+2+1+3
## 602 94 30 Gombos Karoly HUN 1 0+0+0+1
## 603 95 1 Kim Yonggyu KOR 4 0+2+2+0
## 604 96 106 Maeda Ryo JPN 4 0+1+2+1
## 605 97 100 Abasheu Dzmitry BLR 7 1+2+3+1
## 606 98 97 Langer Thierry BEL 5 1+2+1+1
## 607 99 113 Sima Michal SVK 6 1+2+0+3
## 608 100 46 Langer Thorsten BEL 2 0+0+1+1
## 609 101 93 Oblak Lenart SLO 6 3+0+3+0
## 610 102 112 Remmelg Martin EST 6 0+3+1+2
## 611 103 44 Slotins Roberts LAT 7 0+3+1+3
## 612 104 90 Laponder Marcel GBR 6 2+1+2+1
## 613 105 109 Patrijuks Aleksandrs LAT 5 0+1+1+3
## 614 106 52 Tachizaki Mikito JPN 9 0+3+3+3
## 615 107 26 Ustuntas Ahmet TUR 4 1+3+0+0
## 616 108 49 Rastic Damir SRB 8 4+2+0+2
## 617 109 89 Zlatev Ivan BUL 9 2+1+4+2
## 618 110 115 Lee Suyoung KOR 7 1+0+4+2
## 619 111 68 Ustuntas Mehmet TUR 3 0+0+2+1
## 620 112 120 Danila Marian Marcel ROU 10 2+3+2+3
## 621 113 118 Suslavicius Rokas LTU 6 1+2+2+1
## 622 114 119 Kane Kevin GBR 8 2+2+2+2
## 623 115 15 Krsmanovic Dejan SRB 7 3+2+2+0
## 624 116 61 Angelis Apostolos GRE 9 2+3+2+2
## 625 117 80 Stanoeski Toni MKD 7 2+1+1+3
## 626 118 91 Kyriazis Dimitrios GRE 5 0+4+0+1
## 627 119 95 Kim Jongmin KOR 10 1+4+0+5
## 628 120 123 Rastic Ajlan SRB 9 3+2+2+2
## 629 121 102 Walker Daniel AUS 5 1+2+1+1
## 630 122 48 Icoski Gjorgji MKD 7 2+2+2+1
## 631 123 121 Lahaye-Goffart Tom BEL 9 2+2+1+4
## 632 124 5 Karamichas Kleanthis GRE 11 3+2+2+4
## 633 125 73 Harmer Dyllan AUS 10 3+3+1+3
## 634 DNS 58 Tang Jinle CHN NA
## 635 DNS 81 Pinzaru Victor MDA NA
## 636 1 9 Fak Jakov SLO 1 0+0+1+0
## 637 2 8 Moravec Ondrej CZE 1 1+0+0+0
## 638 3 7 Boe Tarjei NOR 1 0+0+1+0
## 639 4 15 Bjoerndalen Ole Einar NOR 0 0+0+0+0
## 640 5 12 Slesingr Michal CZE 3 1+0+2+0
## 641 6 1 Boe Johannes Thingnes NOR 2 0+0+2+0
## 642 7 5 Shipulin Anton RUS 3 0+1+2+0
## 643 8 10 Schempp Simon GER 2 0+1+1+0
## 644 9 14 Fourcade Simon FRA 1 0+0+0+1
## 645 10 3 Fourcade Martin FRA 4 0+1+2+1
## 646 11 11 Garanichev Evgeniy RUS 2 0+0+1+1
## 647 12 16 Lindstroem Fredrik SWE 1 0+0+1+0
## 648 13 28 Bailey Lowell USA 1 1+0+0+0
## 649 14 26 Burke Tim USA 3 1+0+1+1
## 650 15 6 Svendsen Emil Hegle NOR 2 0+0+1+1
## 651 16 29 Doll Benedikt GER 2 0+0+1+1
## 652 17 2 Lesser Erik GER 2 0+0+2+0
## 653 18 22 De Lorenzi Christian ITA 2 0+0+1+1
## 654 19 13 Eder Simon AUT 3 1+0+0+2
## 655 20 20 Liadov Yuryi BLR 1 0+0+0+1
## 656 21 23 Green Brendan CAN 1 0+0+0+1
## 657 22 25 Peiffer Arnd GER 4 0+2+2+0
## 658 23 4 Smith Nathan CAN 3 2+0+1+0
## 659 24 30 Landertinger Dominik AUT 3 0+1+1+1
## 660 25 18 Iliev Vladimir BUL 3 1+0+1+1
## 661 26 21 Roesch Michael BEL 3 0+1+1+1
## 662 27 19 Semenov Sergii UKR 5 2+0+2+1
## 663 28 24 Soukup Jaroslav CZE 3 1+0+2+0
## 664 29 17 Weger Benjamin SUI 3 0+1+1+1
## 665 30 27 Lessing Roland EST 3 1+0+0+2
## 666 1 5 Lesser Erik GER 0 0+0+0+0
## 667 2 18 Shipulin Anton RUS 1 0+1+0+0
## 668 3 3 Boe Tarjei NOR 1 0+0+1+0
## 669 4 7 Slesingr Michal CZE 1 1+0+0+0
## 670 5 19 Bjoerndalen Ole Einar NOR 2 0+0+1+1
## 671 6 8 Iliev Vladimir BUL 2 0+0+1+1
## 672 7 12 Fourcade Martin FRA 3 0+1+1+1
## 673 8 14 Fak Jakov SLO 3 1+2+0+0
## 674 9 9 Moravec Ondrej CZE 2 0+1+1+0
## 675 10 4 Fourcade Simon FRA 3 0+0+1+2
## 676 11 26 Semenov Sergii UKR 1 0+1+0+0
## 677 12 46 Eder Simon AUT 1 1+0+0+0
## 678 13 2 Smith Nathan CAN 5 2+1+1+1
## 679 14 30 Peiffer Arnd GER 3 1+1+0+1
## 680 15 39 Landertinger Dominik AUT 2 0+0+1+1
## 681 16 21 Green Brendan CAN 1 0+0+0+1
## 682 17 16 Liadov Yuryi BLR 3 0+2+0+1
## 683 18 11 Soukup Jaroslav CZE 3 0+1+2+0
## 684 19 36 Svendsen Emil Hegle NOR 3 0+2+0+1
## 685 20 15 Burke Tim USA 4 0+0+2+2
## 686 21 25 De Lorenzi Christian ITA 3 0+1+1+1
## 687 22 6 Garanichev Evgeniy RUS 6 2+2+1+1
## 688 23 22 Roesch Michael BEL 2 0+0+0+2
## 689 24 20 Lindstroem Fredrik SWE 3 0+1+1+1
## 690 25 42 Rastorgujevs Andrejs LAT 4 2+1+1+0
## 691 26 41 Mesotitsch Daniel AUT 3 2+1+0+0
## 692 27 31 Lessing Roland EST 3 1+2+0+0
## 693 28 10 Doll Benedikt GER 7 1+1+2+3
## 694 29 35 L'Abee-Lund Henrik NOR 3 1+0+0+2
## 695 30 24 Hofer Lukas ITA 6 1+2+2+1
## 696 31 1 Boe Johannes Thingnes NOR 8 2+2+2+2
## 697 32 28 Dolder Mario SUI 4 0+1+2+1
## 698 33 13 Weger Benjamin SUI 7 0+2+4+1
## 699 34 32 Puchianu Cornel ROU 5 2+1+1+1
## 700 35 23 Windisch Dominik ITA 6 0+3+1+2
## 701 36 17 Bailey Lowell USA 5 0+0+4+1
## 702 37 44 Eberhard Julian AUT 7 0+1+4+2
## 703 38 43 Chepelin Vladimir BLR 5 0+2+2+1
## 704 39 47 Bauer Klemen SLO 5 0+2+0+3
## 705 40 27 Lapshin Timofei RUS 7 2+2+1+2
## 706 41 40 Beatrix Jean Guillaume FRA 4 0+0+1+3
## 707 42 33 Kazar Matej SVK 7 0+1+5+1
## 708 43 49 Pidruchnyi Dmytro UKR 3 0+1+1+1
## 709 44 48 Zhyrnyi Oleksandr UKR 4 2+1+0+1
## 710 45 55 Doherty Sean USA 3 1+1+0+1
## 711 46 38 Fillon Maillet Quentin FRA 7 1+1+4+1
## 712 47 34 Malyshko Dmitry RUS 7 1+3+1+2
## 713 48 56 Dyuzhev Dmitriy BLR 5 1+0+2+2
## 714 49 52 Anev Krasimir BUL 5 3+2+0+0
## 715 50 29 Wiestner Serafin SUI 7 2+0+3+2
## 716 51 45 Nordgren Leif USA 6 2+2+0+2
## 717 52 50 Gow Scott CAN 5 1+2+2+0
## 718 53 53 Koiv Kauri EST 5 0+1+1+3
## 719 54 54 Toivanen Ahti FIN 4 2+1+0+1
## 720 55 37 Joller Ivan SUI 4 2+1+1+0
## 721 56 60 Kaukenas Tomas LTU 5 1+1+1+2
## 722 57 59 Krcmar Michal CZE 6 3+0+1+2
## 723 58 51 Kauppinen Jarkko FIN 8 1+3+1+3
## 724 59 57 Zlatev Ivan BUL 7 3+2+1+1
## 725 60 58 Plywaczyk Krzysztof POL 8 4+2+1+1
## 726 1 16 Boe Johannes Thingnes NOR 1 0+1
## 727 2 12 Smith Nathan CAN 1 0+1
## 728 3 38 Boe Tarjei NOR 0 0+0
## 729 4 41 Fourcade Simon FRA 1 0+1
## 730 5 36 Lesser Erik GER 1 0+1
## 731 6 11 Garanichev Evgeniy RUS 2 0+2
## 732 7 10 Slesingr Michal CZE 2 1+1
## 733 8 4 Iliev Vladimir BUL 1 1+0
## 734 9 23 Moravec Ondrej CZE 1 0+1
## 735 10 39 Doll Benedikt GER 2 0+2
## 736 11 43 Soukup Jaroslav CZE 0 0+0
## 737 12 25 Fourcade Martin FRA 3 0+3
## 738 13 7 Weger Benjamin SUI 2 1+1
## 739 14 17 Fak Jakov SLO 3 1+2
## 740 15 5 Burke Tim USA 2 1+1
## 741 16 21 Liadov Yuryi BLR 2 0+2
## 742 17 40 Bailey Lowell USA 1 0+1
## 743 18 28 Shipulin Anton RUS 2 1+1
## 744 19 34 Bjoerndalen Ole Einar NOR 3 1+2
## 745 20 26 Lindstroem Fredrik SWE 3 0+3
## 746 21 18 Green Brendan CAN 1 0+1
## 747 21 54 Roesch Michael BEL 1 1+0
## 748 23 14 Windisch Dominik ITA 2 1+1
## 749 24 2 Hofer Lukas ITA 3 1+2
## 750 25 58 De Lorenzi Christian ITA 1 0+1
## 751 26 6 Semenov Sergii UKR 3 1+2
## 752 27 31 Lapshin Timofei RUS 3 1+2
## 753 28 3 Dolder Mario SUI 2 0+2
## 754 29 53 Wiestner Serafin SUI 2 1+1
## 755 30 27 Peiffer Arnd GER 3 1+2
## 756 31 57 Lessing Roland EST 2 2+0
## 757 32 51 Puchianu Cornel ROU 2 1+1
## 758 33 48 Kazar Matej SVK 1 0+1
## 759 34 37 Malyshko Dmitry RUS 3 3+0
## 760 35 59 L'Abee-Lund Henrik NOR 1 1+0
## 761 36 8 Svendsen Emil Hegle NOR 4 2+2
## 762 36 46 Joller Ivan SUI 2 1+1
## 763 38 29 Fillon Maillet Quentin FRA 2 0+2
## 764 39 30 Landertinger Dominik AUT 2 1+1
## 765 39 42 Beatrix Jean Guillaume FRA 3 0+3
## 766 41 35 Mesotitsch Daniel AUT 3 2+1
## 767 42 1 Rastorgujevs Andrejs LAT 4 2+2
## 768 43 9 Chepelin Vladimir BLR 3 2+1
## 769 44 50 Eberhard Julian AUT 4 2+2
## 770 45 22 Nordgren Leif USA 3 0+3
## 771 46 19 Eder Simon AUT 4 2+2
## 772 47 15 Bauer Klemen SLO 5 2+3
## 773 48 56 Zhyrnyi Oleksandr UKR 3 2+1
## 774 49 24 Pidruchnyi Dmytro UKR 3 2+1
## 775 50 55 Gow Scott CAN 2 1+1
## 776 51 70 Kauppinen Jarkko FIN 1 0+1
## 777 52 13 Anev Krasimir BUL 3 0+3
## 778 53 89 Koiv Kauri EST 3 1+2
## 779 54 61 Toivanen Ahti FIN 2 1+1
## 780 55 97 Doherty Sean USA 3 2+1
## 781 56 47 Dyuzhev Dmitriy BLR 2 1+1
## 782 57 64 Zlatev Ivan BUL 3 1+2
## 783 58 120 Plywaczyk Krzysztof POL 2 0+2
## 784 59 33 Krcmar Michal CZE 5 3+2
## 785 60 88 Kaukenas Tomas LTU 3 1+2
## 786 61 108 Buta George ROU 2 0+2
## 787 62 32 Pryma Artem UKR 4 1+3
## 788 63 68 Szczurek Lukasz POL 2 1+1
## 789 64 52 Ermits Kalev EST 6 4+2
## 790 65 62 Otcenas Martin SVK 4 2+2
## 791 66 102 Maric Janez SLO 4 0+4
## 792 67 44 Kobonoki Tsukasa JPN 3 1+2
## 793 68 80 Dombrovski Karol LTU 2 0+2
## 794 69 110 Strolia Vytautas LTU 3 1+2
## 795 70 99 Abasheu Dzmitry BLR 4 2+2
## 796 71 98 Trsan Rok SLO 4 0+4
## 797 72 60 Armgren Ted SWE 4 0+4
## 798 73 109 Gow Christian CAN 3 1+2
## 799 74 111 Matiasko Miroslav SVK 4 1+3
## 800 75 92 Hasilla Tomas SVK 3 1+2
## 801 76 128 Sinapov Anton BUL 3 2+1
## 802 77 20 Schempp Simon GER 7 4+3
## 803 78 49 Femling Peppe SWE 6 3+3
## 804 79 93 Jackson Lee-Steve GBR 3 1+2
## 805 80 105 Tachizaki Mikito JPN 4 2+2
## 806 81 78 Dixon Scott GBR 1 0+1
## 807 82 69 Pantov Anton KAZ 2 0+2
## 808 83 74 Eriksson Christofer SWE 5 2+3
## 809 84 77 Inomata Kazuya JPN 4 2+2
## 810 85 83 Hiidensalo Olli FIN 6 2+4
## 811 86 100 Braun Maxim KAZ 2 0+2
## 812 87 96 Tang Jinle CHN 3 0+3
## 813 88 73 Ren Long CHN 5 1+4
## 814 89 90 Guzik Grzegorz POL 6 4+2
## 815 90 45 Bormolini Thomas ITA 5 1+4
## 816 91 84 Kim Yonggyu KOR 3 1+2
## 817 92 104 Almoukov Alexei AUS 3 1+2
## 818 93 94 Slotins Roberts LAT 4 1+3
## 819 94 101 Faur Remus ROU 5 2+3
## 820 95 106 Rastic Damir SRB 4 1+3
## 821 96 63 Savitskiy Yan KAZ 6 2+4
## 822 97 91 Jun Jeuk KOR 4 2+2
## 823 98 75 Angelis Apostolos GRE 4 2+2
## 824 99 86 Langer Thorsten BEL 1 1+0
## 825 100 124 Kim Jongmin KOR 3 2+1
## 826 101 118 Danila Marian Marcel ROU 7 3+4
## 827 102 103 Gombos Karoly HUN 3 1+2
## 828 103 126 Gronman Tuomas FIN 7 2+5
## 829 104 107 Hodzic Edin SRB 3 2+1
## 830 105 125 Lee Suyoung KOR 5 1+4
## 831 106 127 Praulitis Toms LAT 2 1+1
## 832 107 85 Petrovic Filip CRO 3 0+3
## 833 108 114 Kane Kevin GBR 6 3+3
## 834 109 123 Suslavicius Rokas LTU 4 3+1
## 835 110 121 Langer Thierry BEL 5 4+1
## 836 111 112 Ustuntas Ahmet TUR 3 1+2
## 837 112 119 Maeda Ryo JPN 5 2+3
## 838 113 129 Podkorytov Vassiliy KAZ 6 1+5
## 839 114 81 Icoski Gjorgji MKD 3 0+3
## 840 115 66 Puzulis Rolands LAT 5 3+2
## 841 116 116 Kyriazis Dimitrios GRE 2 0+2
## 842 117 95 Karamichas Kleanthis GRE 4 3+1
## 843 118 115 Laponder Marcel GBR 7 2+5
## 844 119 82 Lahaye-Goffart Tom BEL 7 4+3
## 845 120 122 Krsmanovic Dejan SRB 6 3+3
## 846 121 72 Pinzaru Victor MDA 2 1+1
## 847 122 117 Rastic Ajlan SRB 7 2+5
## 848 123 87 Harmer Dyllan AUS 6 3+3
## 849 124 71 Civil Orhangazi TUR 6 3+3
## 850 125 67 Stanoeski Toni MKD 7 3+4
## 851 126 65 Ustuntas Mehmet TUR 6 1+5
## 852 127 113 Walker Daniel AUS 7 3+4
## 853 DNF 76 Sloof Joel NED NA 2
## 854 DNF 79 Remmelg Martin EST NA 1+4
## 855 1 1 Fak Jakov SLO 1 0+0+0+1
## 856 2 2 Schempp Simon GER 1 0+1+0+0
## 857 3 4 Fourcade Martin FRA 0 0+0+0+0
## 858 4 8 Semenov Sergii UKR 0 0+0+0+0
## 859 5 7 Smith Nathan CAN 0 0+0+0+0
## 860 6 19 Garanichev Evgeniy RUS 1 0+0+0+1
## 861 7 18 Birnbacher Andreas GER 0 0+0+0+0
## 862 8 13 Lesser Erik GER 1 0+0+0+1
## 863 9 9 Peiffer Arnd GER 2 1+0+1+0
## 864 10 15 Lindstroem Fredrik SWE 0 0+0+0+0
## 865 11 5 Slesingr Michal CZE 1 0+0+0+1
## 866 12 10 Boe Johannes Thingnes NOR 2 0+0+1+1
## 867 13 23 Fourcade Simon FRA 1 0+0+0+1
## 868 14 6 Shipulin Anton RUS 3 2+1+0+0
## 869 15 34 Desthieux Simon FRA 3 0+1+0+2
## 870 16 3 Beatrix Jean Guillaume FRA 3 0+1+1+1
## 871 17 11 Boehm Daniel GER 3 0+0+2+1
## 872 18 37 Grossegger Sven AUT 1 0+0+0+1
## 873 19 21 Fillon Maillet Quentin FRA 3 0+0+2+1
## 874 20 16 Nordgren Leif USA 3 1+1+0+1
## 875 21 20 Doll Benedikt GER 4 0+2+1+1
## 876 22 48 Anev Krasimir BUL 1 0+0+0+1
## 877 23 43 Svendsen Emil Hegle NOR 2 0+0+1+1
## 878 24 36 Iliev Vladimir BUL 3 0+0+2+1
## 879 25 45 Guigonnat Antonin FRA 2 0+0+1+1
## 880 26 29 Weger Benjamin SUI 4 0+2+1+1
## 881 27 17 Eliseev Matvey RUS 4 0+0+1+3
## 882 28 40 Tsvetkov Maxim RUS 1 0+1+0+0
## 883 29 28 Dolder Mario SUI 3 1+0+2+0
## 884 30 22 Green Brendan CAN 3 0+1+0+2
## 885 31 25 Soukup Jaroslav CZE 2 0+1+1+0
## 886 32 26 Eder Simon AUT 3 2+0+0+1
## 887 33 32 Krcmar Michal CZE 3 0+0+2+1
## 888 34 12 Landertinger Dominik AUT 4 1+0+0+3
## 889 35 35 Bjoerndalen Ole Einar NOR 5 1+1+3+0
## 890 36 53 Slepov Alexey RUS 4 1+1+1+1
## 891 37 38 Burke Tim USA 4 1+2+1+0
## 892 38 27 Bjoentegaard Erlend NOR 5 1+2+1+1
## 893 39 42 Moravec Ondrej CZE 4 0+3+0+1
## 894 40 44 L'Abee-Lund Henrik NOR 5 1+0+3+1
## 895 41 56 Eberhard Julian AUT 4 0+1+0+3
## 896 42 46 Kaukenas Tomas LTU 5 1+0+1+3
## 897 43 49 Pryma Artem UKR 6 0+3+2+1
## 898 44 33 Armgren Ted SWE 6 2+1+3+0
## 899 45 57 Doherty Sean USA 4 2+1+0+1
## 900 46 24 Bauer Klemen SLO 3 1+1+0+1
## 901 47 39 Roesch Michael BEL 3 0+0+1+2
## 902 48 41 Kazar Matej SVK 3 1+0+0+2
## 903 49 30 Ermits Kalev EST 6 3+1+2+0
## 904 50 59 Boe Tarjei NOR 4 0+1+1+2
## 905 51 51 Pinter Friedrich AUT 5 1+0+2+2
## 906 52 31 Dyuzhev Dmitriy BLR 6 3+0+2+1
## 907 53 52 Szczurek Lukasz POL 5 2+2+0+1
## 908 54 54 Davies Macx CAN 9 2+3+2+2
## 909 DNS 14 Pidruchnyi Dmytro UKR NA
## 910 DNS 47 Liadov Yuryi BLR NA
## 911 DNS 50 Chepelin Vladimir BLR NA
## 912 DNS 55 Reiter Michael AUT NA
## 913 DNS 58 De Lorenzi Christian ITA NA
## 914 DNS 60 Tyshchenko Artem UKR NA
## 915 1 18 Fak Jakov SLO 0 0+0
## 916 2 29 Schempp Simon GER 0 0+0
## 917 3 2 Beatrix Jean Guillaume FRA 0 0+0
## 918 4 27 Fourcade Martin FRA 1 0+1
## 919 5 10 Slesingr Michal CZE 0 0+0
## 920 6 41 Shipulin Anton RUS 0 0+0
## 921 7 25 Smith Nathan CAN 0 0+0
## 922 8 21 Semenov Sergii UKR 0 0+0
## 923 9 72 Peiffer Arnd GER 1 0+1
## 924 10 28 Boe Johannes Thingnes NOR 2 0+2
## 925 11 34 Boehm Daniel GER 0 0+0
## 926 12 26 Landertinger Dominik AUT 1 0+1
## 927 13 42 Lesser Erik GER 1 0+1
## 928 14 9 Pidruchnyi Dmytro UKR 0 0+0
## 929 15 6 Lindstroem Fredrik SWE 1 1+0
## 930 16 44 Nordgren Leif USA 1 0+1
## 931 17 94 Eliseev Matvey RUS 1 1+0
## 932 18 22 Birnbacher Andreas GER 0 0+0
## 933 19 36 Garanichev Evgeniy RUS 1 0+1
## 934 20 78 Doll Benedikt GER 2 1+1
## 935 21 24 Fillon Maillet Quentin FRA 1 0+1
## 936 22 39 Green Brendan CAN 1 0+1
## 937 23 31 Fourcade Simon FRA 1 0+1
## 938 24 12 Bauer Klemen SLO 1 0+1
## 939 24 43 Soukup Jaroslav CZE 1 0+1
## 940 26 13 Eder Simon AUT 1 0+1
## 941 27 51 Bjoentegaard Erlend NOR 2 1+1
## 942 28 38 Dolder Mario SUI 1 1+0
## 943 29 17 Weger Benjamin SUI 1 0+1
## 944 30 57 Ermits Kalev EST 0 0+0
## 945 31 55 Dyuzhev Dmitriy BLR 0 0+0
## 946 32 56 Krcmar Michal CZE 1 1+0
## 947 33 76 Armgren Ted SWE 0 0+0
## 948 34 71 Desthieux Simon FRA 1 0+1
## 949 35 8 Bjoerndalen Ole Einar NOR 3 1+2
## 950 36 33 Iliev Vladimir BUL 3 2+1
## 951 37 35 Grossegger Sven AUT 2 1+1
## 952 38 4 Burke Tim USA 3 3+0
## 953 39 3 Roesch Michael BEL 1 0+1
## 954 40 19 Tsvetkov Maxim RUS 2 0+2
## 955 41 5 Kazar Matej SVK 1 0+1
## 956 42 1 Moravec Ondrej CZE 3 2+1
## 957 43 23 Svendsen Emil Hegle NOR 4 2+2
## 958 44 83 L'Abee-Lund Henrik NOR 2 0+2
## 959 45 79 Guigonnat Antonin FRA 2 1+1
## 960 46 81 Kaukenas Tomas LTU 1 0+1
## 961 47 37 Liadov Yuryi BLR 2 0+2
## 962 48 14 Anev Krasimir BUL 2 0+2
## 963 49 30 Pryma Artem UKR 3 0+3
## 964 50 16 Chepelin Vladimir BLR 3 1+2
## 965 51 50 Pinter Friedrich AUT 3 1+2
## 966 52 60 Szczurek Lukasz POL 1 1+0
## 967 53 67 Slepov Alexey RUS 4 2+2
## 968 54 86 Davies Macx CAN 1 1+0
## 969 55 80 Reiter Michael AUT 1 0+1
## 970 56 15 Eberhard Julian AUT 5 4+1
## 971 57 47 Doherty Sean USA 3 3+0
## 972 58 7 De Lorenzi Christian ITA 3 0+3
## 973 59 45 Boe Tarjei NOR 4 2+2
## 974 60 69 Tyshchenko Artem UKR 3 1+2
## 975 61 48 Guzik Grzegorz POL 2 0+2
## 976 62 62 Dombrovski Karol LTU 1 0+1
## 977 63 68 Gow Scott CAN 2 2+0
## 978 64 20 Puchianu Cornel ROU 1 1+0
## 979 65 64 Maric Janez SLO 2 1+1
## 980 66 70 Trsan Rok SLO 2 1+1
## 981 67 93 Yaliotnau Raman BLR 3 2+1
## 982 68 82 Remmelg Martin EST 1 0+1
## 983 69 58 Matiasko Miroslav SVK 2 1+1
## 984 70 11 Toivanen Ahti FIN 4 2+2
## 985 71 91 Krupcik Tomas CZE 3 0+3
## 986 72 59 Gerdzhikov Dimitar BUL 2 1+1
## 987 73 63 Martinelli Christian ITA 2 0+2
## 988 74 90 Raatikainen Antti FIN 0 0+0
## 989 75 52 Babikov Anton RUS 3 2+1
## 990 76 73 Koiv Kauri EST 4 2+2
## 991 77 85 Hasilla Tomas SVK 2 0+2
## 992 78 49 Danila Marian Marcel ROU 1 0+1
## 993 79 87 Siemakov Volodymyr UKR 4 4+0
## 994 80 32 Arwidson Tobias SWE 2 1+1
## 995 81 92 Joller Ivan SUI 5 2+3
## 996 82 66 Tachizaki Mikito JPN 4 2+2
## 997 83 75 Gronman Tuomas FIN 3 1+2
## 998 84 54 Rastic Damir SRB 4 1+3
## 999 85 40 Otcenas Martin SVK 6 3+3
## 1000 86 74 Wiestner Serafin SUI 7 4+3
## 1001 87 53 Sloof Joel NED 5 3+2
## 1002 88 84 Femling Peppe SWE 5 4+1
## 1003 89 61 Kane Kevin GBR 3 1+2
## 1004 90 89 Dixon Scott GBR 5 1+4
## 1005 91 46 Praulitis Toms LAT 3 1+2
## 1006 92 96 Krsmanovic Dejan SRB 3 2+1
## 1007 93 88 Lusa Daumants LAT 2 1+1
## 1008 94 65 Patrijuks Aleksandrs LAT 7 4+3
## 1009 DNS 77 Oblak Lenart SLO NA
## 1010 DNS 95 Plywaczyk Krzysztof POL NA
## 1011 1 1 Fourcade Martin FRA 0 0+0+0+0
## 1012 2 2 Shipulin Anton RUS 4 1+1+1+1
## 1013 3 21 Malyshko Dmitry RUS 3 1+0+0+2
## 1014 4 16 Anev Krasimir BUL 3 1+0+1+1
## 1015 5 14 Slesingr Michal CZE 3 0+0+1+2
## 1016 6 26 Rastorgujevs Andrejs LAT 4 0+0+2+2
## 1017 7 4 Fak Jakov SLO 3 0+0+1+2
## 1018 8 28 Doll Benedikt GER 3 0+1+0+2
## 1019 9 18 Lapshin Timofei RUS 4 1+0+1+2
## 1020 10 5 Schempp Simon GER 5 2+0+1+2
## 1021 11 9 Eder Simon AUT 4 0+0+3+1
## 1022 12 15 Lesser Erik GER 4 0+1+0+3
## 1023 13 6 Moravec Ondrej CZE 4 1+0+1+2
## 1024 14 7 Boe Johannes Thingnes NOR 7 2+1+3+1
## 1025 15 27 Lessing Roland EST 3 1+1+1+0
## 1026 16 25 Fourcade Simon FRA 3 0+0+2+1
## 1027 17 19 Bjoerndalen Ole Einar NOR 5 0+0+2+3
## 1028 18 8 Birnbacher Andreas GER 5 1+2+1+1
## 1029 19 23 Iliev Vladimir BUL 6 1+2+2+1
## 1030 20 11 Lindstroem Fredrik SWE 4 1+1+1+1
## 1031 20 24 Smith Nathan CAN 6 2+1+0+3
## 1032 22 17 Fillon Maillet Quentin FRA 4 1+1+1+1
## 1033 23 10 Garanichev Evgeniy RUS 8 2+2+1+3
## 1034 24 22 Tsvetkov Maxim RUS 3 1+2+0+0
## 1035 25 13 Weger Benjamin SUI 8 4+0+1+3
## 1036 26 29 Tyshchenko Artem UKR 4 2+0+1+1
## 1037 27 3 Svendsen Emil Hegle NOR 5 0+0+3+2
## 1038 28 30 Liadov Yuryi BLR 4 1+0+2+1
## 1039 29 20 Bailey Lowell USA 10 1+3+3+3
## 1040 DNF 12 Beatrix Jean Guillaume FRA NA 2+3+1
## 1041 1 27 Fourcade Martin FRA 1 1+0
## 1042 2 8 Bjoerndalen Ole Einar NOR 1 0+1
## 1043 3 48 Lapshin Timofei RUS 1 0+1
## 1044 4 21 Boe Johannes Thingnes NOR 2 0+2
## 1045 5 1 Weger Benjamin SUI 2 2+0
## 1046 6 19 Rastorgujevs Andrejs LAT 3 2+1
## 1047 7 37 Lessing Roland EST 1 0+1
## 1048 8 88 Doll Benedikt GER 2 1+1
## 1049 9 4 Anev Krasimir BUL 2 2+0
## 1050 10 23 Tyshchenko Artem UKR 0 0+0
## 1051 11 36 Liadov Yuryi BLR 1 1+0
## 1052 12 20 Eder Simon AUT 2 2+0
## 1053 13 26 Slesingr Michal CZE 3 1+2
## 1054 14 39 Iliev Vladimir BUL 2 0+2
## 1055 15 9 Bauer Klemen SLO 3 1+2
## 1056 16 3 Fak Jakov SLO 2 2+0
## 1057 16 15 Fillon Maillet Quentin FRA 3 1+2
## 1058 18 17 Chepelin Vladimir BLR 1 0+1
## 1059 19 33 Fourcade Simon FRA 2 0+2
## 1060 20 25 Birnbacher Andreas GER 3 2+1
## 1061 21 31 Bormolini Thomas ITA 1 1+0
## 1062 22 56 Bjoentegaard Erlend NOR 3 1+2
## 1063 23 35 Malyshko Dmitry RUS 3 3+0
## 1064 24 16 Mesotitsch Daniel AUT 1 0+1
## 1065 25 28 Moravec Ondrej CZE 3 2+1
## 1066 26 44 Lesser Erik GER 1 0+1
## 1067 27 40 Os Alexander NOR 3 1+2
## 1068 28 92 Wiestner Serafin SUI 2 1+1
## 1069 29 59 Eriksson Christofer SWE 2 1+1
## 1070 30 6 Schempp Simon GER 4 2+2
## 1071 31 32 Soukup Jaroslav CZE 2 0+2
## 1072 32 65 Roesch Michael BEL 2 0+2
## 1073 33 12 Windisch Dominik ITA 3 1+2
## 1074 34 10 Bailey Lowell USA 3 0+3
## 1075 35 11 Smith Nathan CAN 4 1+3
## 1076 36 13 Boehm Daniel GER 2 2+0
## 1077 37 2 Lindstroem Fredrik SWE 2 2+0
## 1078 38 24 Kazar Matej SVK 3 1+2
## 1079 39 95 Matiasko Miroslav SVK 2 0+2
## 1080 40 80 Volkov Alexey RUS 2 1+1
## 1081 41 82 Pinter Friedrich AUT 2 0+2
## 1082 42 45 Burke Tim USA 4 1+3
## 1083 43 29 Shipulin Anton RUS 4 2+2
## 1084 43 78 Koiv Kauri EST 2 0+2
## 1085 45 38 Dolder Mario SUI 4 1+3
## 1086 46 22 Savitskiy Yan KAZ 3 2+1
## 1087 47 41 Eberhard Tobias AUT 3 1+2
## 1088 48 47 Gow Christian CAN 2 1+1
## 1089 49 73 Bedard Marc Andre CAN 2 1+1
## 1090 50 34 Grossegger Sven AUT 4 3+1
## 1091 51 53 Kauppinen Jarkko FIN 2 0+2
## 1092 52 77 Dombrovski Karol LTU 0 0+0
## 1093 53 43 Otcenas Martin SVK 3 0+3
## 1094 54 90 Davies Macx CAN 3 1+2
## 1095 55 83 Krcmar Michal CZE 4 2+2
## 1096 56 30 Beatrix Jean Guillaume FRA 5 2+3
## 1097 57 49 Hasilla Tomas SVK 3 2+1
## 1098 57 51 Desthieux Simon FRA 4 1+3
## 1099 59 76 Yaliotnau Raman BLR 4 2+2
## 1100 60 42 Arwidson Tobias SWE 3 3+0
## 1101 61 5 Garanichev Evgeniy RUS 6 2+4
## 1102 62 79 Gronman Tuomas FIN 2 2+0
## 1103 63 84 Armgren Ted SWE 2 1+1
## 1104 64 62 Peiffer Arnd GER 5 1+4
## 1105 65 46 De Lorenzi Christian ITA 5 4+1
## 1106 66 91 Zhyrnyi Oleksandr UKR 4 2+2
## 1107 67 93 Christiansen Vetle Sjaastad NOR 3 3+0
## 1108 68 89 Kryuko Viktar BLR 3 2+1
## 1109 69 14 Puchianu Cornel ROU 5 2+3
## 1110 70 63 Tobreluts Indrek EST 6 2+4
## 1111 71 18 Toivanen Ahti FIN 5 1+4
## 1112 72 60 Kilchytskyy Vitaliy UKR 5 2+3
## 1113 73 68 Plywaczyk Krzysztof POL 2 0+2
## 1114 74 50 Joller Ivan SUI 4 1+3
## 1115 75 64 Danila Marian Marcel ROU 3 2+1
## 1116 75 71 Maric Janez SLO 4 1+3
## 1117 77 69 Pantov Anton KAZ 3 2+1
## 1118 78 98 Trifonov Alexandr KAZ 1 1+0
## 1119 79 54 Siemakov Volodymyr UKR 4 2+2
## 1120 80 72 Eberhard Julian AUT 2 1+1
## 1121 81 7 Tsvetkov Maxim RUS 4 4+0
## 1122 82 96 Demetz Maikol ITA 3 1+2
## 1123 83 97 Jouty Baptiste FRA 2 0+2
## 1124 84 52 Femling Peppe SWE 3 0+3
## 1125 85 85 Slotins Roberts LAT 3 1+2
## 1126 86 70 Zlatev Ivan BUL 3 0+3
## 1127 87 99 Strolia Vytautas LTU 5 2+3
## 1128 88 61 Krupcik Tomas CZE 5 1+4
## 1129 89 57 Inomata Kazuya JPN 5 2+3
## 1130 90 58 Kane Kevin GBR 3 2+1
## 1131 91 74 Sloof Joel NED 3 2+1
## 1132 92 94 Laponder Marcel GBR 4 2+2
## 1133 93 75 Trsan Rok SLO 5 4+1
## 1134 94 55 Rastic Damir SRB 6 3+3
## 1135 95 66 Puzulis Rolands LAT 6 2+4
## 1136 96 81 Oblak Lenart SLO 0 0+0
## 1137 97 86 Guzik Grzegorz POL 6 5+1
## 1138 98 67 Almoukov Alexei AUS 7 4+3
## 1139 99 87 Krsmanovic Dejan SRB 6 3+3
## 1140 1 4 Svendsen Emil Hegle NOR 0 0+0+0+0
## 1141 2 7 Semenov Sergii UKR 1 0+1+0+0
## 1142 3 16 Slesingr Michal CZE 1 0+0+1+0
## 1143 4 41 Lesser Erik GER 1 0+1+0+0
## 1144 5 12 Lindstroem Fredrik SWE 2 1+0+0+1
## 1145 6 21 Bjoerndalen Ole Einar NOR 3 2+0+1+0
## 1146 7 18 Landertinger Dominik AUT 2 0+1+1+0
## 1147 8 6 Boe Johannes Thingnes NOR 4 0+2+1+1
## 1148 9 45 Fourcade Simon FRA 1 1+0+0+0
## 1149 10 98 Fillon Maillet Quentin FRA 1 0+0+0+1
## 1150 11 39 Burke Tim USA 3 1+1+1+0
## 1151 12 17 Moravec Ondrej CZE 2 1+0+0+1
## 1152 13 44 Windisch Dominik ITA 2 1+0+0+1
## 1153 14 28 Anev Krasimir BUL 2 0+0+0+2
## 1154 15 20 Garanichev Evgeniy RUS 4 1+0+1+2
## 1155 16 34 Peiffer Arnd GER 3 1+0+0+2
## 1156 17 3 Weger Benjamin SUI 4 1+1+1+1
## 1157 18 51 Tsvetkov Maxim RUS 2 0+0+1+1
## 1158 19 97 Bormolini Thomas ITA 1 0+0+0+1
## 1159 20 15 Bailey Lowell USA 3 0+1+0+2
## 1160 21 38 Arwidson Tobias SWE 2 1+0+1+0
## 1161 22 42 Bauer Klemen SLO 4 1+1+0+2
## 1162 23 26 Boehm Daniel GER 4 1+1+0+2
## 1163 24 14 Fak Jakov SLO 5 1+1+1+2
## 1164 25 19 Schempp Simon GER 3 1+1+1+0
## 1165 26 87 Finello Jeremy SUI 2 0+1+0+1
## 1166 27 27 Beatrix Jean Guillaume FRA 5 2+1+1+1
## 1167 28 69 Puchianu Cornel ROU 3 0+1+0+2
## 1168 29 33 Boe Tarjei NOR 5 1+2+0+2
## 1169 30 37 Iliev Vladimir BUL 5 0+2+1+2
## 1170 31 35 Eberhard Tobias AUT 5 1+2+0+2
## 1171 32 78 Kobonoki Tsukasa JPN 1 0+0+0+1
## 1172 33 36 Soukup Jaroslav CZE 4 1+0+0+3
## 1173 34 73 Lessing Roland EST 3 1+1+1+0
## 1174 35 95 Birnbacher Andreas GER 5 1+0+2+2
## 1175 36 88 Komatz David AUT 4 2+1+0+1
## 1176 37 76 Tyshchenko Artem UKR 2 1+0+0+1
## 1177 38 61 Toivanen Ahti FIN 4 1+1+0+2
## 1178 39 23 Desthieux Simon FRA 5 0+2+0+3
## 1179 40 43 Hasilla Tomas SVK 2 0+2+0+0
## 1180 41 32 Koiv Kauri EST 4 0+0+3+1
## 1181 42 40 Lapshin Timofei RUS 6 2+1+1+2
## 1182 43 24 Mesotitsch Daniel AUT 6 4+0+0+2
## 1183 44 22 Kazar Matej SVK 4 1+1+1+1
## 1184 45 5 Savitskiy Yan KAZ 5 2+2+0+1
## 1185 46 96 Krupcik Tomas CZE 3 1+0+0+2
## 1186 47 13 Chepelin Vladimir BLR 4 1+2+0+1
## 1187 48 25 Hofer Lukas ITA 4 0+1+0+3
## 1188 49 30 Green Brendan CAN 4 2+2+0+0
## 1189 50 48 Roesch Michael BEL 4 1+1+0+2
## 1190 51 63 De Lorenzi Christian ITA 4 0+2+1+1
## 1191 52 70 Trifonov Alexandr KAZ 3 1+1+0+1
## 1192 53 101 Christiansen Vetle Sjaastad NOR 5 0+1+1+3
## 1193 54 8 Smith Nathan CAN 7 1+3+1+2
## 1194 55 92 Stegmayr Gabriel SWE 3 0+1+2+0
## 1195 56 64 Armgren Ted SWE 5 0+1+3+1
## 1196 57 75 Rastic Damir SRB 2 1+1+0+0
## 1197 58 29 Malyshko Dmitry RUS 5 1+2+1+1
## 1198 59 1 Shipulin Anton RUS 8 3+2+2+1
## 1199 60 85 Kilchytskyy Vitaliy UKR 5 2+2+1+0
## 1200 61 86 Bedard Marc Andre CAN 4 0+1+1+2
## 1201 62 71 Boeuf Alexis FRA 4 1+1+0+2
## 1202 63 62 Almoukov Alexei AUS 4 1+1+1+1
## 1203 64 66 Grossegger Sven AUT 7 0+4+1+2
## 1204 65 74 Puzulis Rolands LAT 3 0+2+0+1
## 1205 66 67 Zlatev Ivan BUL 5 2+2+1+0
## 1206 67 80 Hakala Matti FIN 5 3+0+1+1
## 1207 68 31 Pidruchnyi Dmytro UKR 5 0+3+1+1
## 1208 69 11 Eder Simon AUT 8 1+4+2+1
## 1209 70 72 Szczurek Lukasz POL 5 2+2+1+0
## 1210 71 49 Nordgren Leif USA 4 0+2+1+1
## 1211 72 46 Liadov Yuryi BLR 6 1+1+1+3
## 1212 73 50 Perras Scott CAN 6 1+3+1+1
## 1213 74 94 Currier Russell USA 7 3+1+3+0
## 1214 75 56 Graf Florian GER 9 3+2+1+3
## 1215 76 81 Tcherezov Ivan RUS 6 3+2+1+0
## 1216 77 52 Dombrovski Karol LTU 6 1+3+1+1
## 1217 78 93 Plywaczyk Krzysztof POL 5 1+0+3+1
## 1218 79 58 Joller Ivan SUI 7 2+1+1+3
## 1219 80 79 Krcmar Michal CZE 7 2+1+1+3
## 1220 81 10 Fourcade Martin FRA 6 4+1+0+1
## 1221 82 9 Kaukenas Tomas LTU 8 3+2+2+1
## 1222 DSQ 55 Sednev Serguei UKR 5 2+2+0+1
## 1223 83 54 Eriksson Christofer SWE 8 2+4+1+1
## 1224 84 59 Birkeland Lars Helge NOR 10 4+2+1+3
## 1225 85 53 Otcenas Martin SVK 7 2+3+0+2
## 1226 86 84 Matiasko Miroslav SVK 6 1+3+0+2
## 1227 87 83 Braun Maxim KAZ 5 0+1+2+2
## 1228 88 100 Hodzic Edin SRB 3 0+2+0+1
## 1229 89 89 Danila Marian Marcel ROU 7 2+2+0+3
## 1230 90 60 Cuenot Gaspard SUI 9 1+5+0+3
## 1231 91 57 Darozhka Aliaksandr BLR 7 2+3+1+1
## 1232 92 77 Sloof Joel NED 5 0+1+2+2
## 1233 93 90 Ermits Kalev EST 9 3+1+2+3
## 1234 94 99 Budzilovich Dzmitry BLR 7 3+1+2+1
## 1235 95 47 Jackson Lee-Steve GBR 9 3+4+1+1
## 1236 96 91 Patrijuks Aleksandrs LAT 7 1+3+1+2
## 1237 97 68 Oblak Lenart SLO 8 1+2+2+3
## 1238 98 102 Laponder Marcel GBR 8 2+3+2+1
## 1239 99 65 Lobo Escolar Victor ESP 10 3+4+2+1
## 1240 DNF 82 Hiidensalo Olli FIN NA 3+3+0+2
## 1241 DNS 2 Rastorgujevs Andrejs LAT NA
## 1242 1 1 Fourcade Martin FRA 4 2+1+0+1
## 1243 2 6 Shipulin Anton RUS 1 0+0+1+0
## 1244 3 7 Svendsen Emil Hegle NOR 2 0+1+0+1
## 1245 4 3 Fak Jakov SLO 3 0+0+1+2
## 1246 5 30 Landertinger Dominik AUT 1 0+0+0+1
## 1247 6 11 Schempp Simon GER 1 0+0+0+1
## 1248 7 22 Birnbacher Andreas GER 1 0+0+0+1
## 1249 8 16 Os Alexander NOR 1 0+0+0+1
## 1250 9 20 Beatrix Jean Guillaume FRA 2 0+0+1+1
## 1251 10 8 Bjoerndalen Ole Einar NOR 3 0+0+2+1
## 1252 11 5 Garanichev Evgeniy RUS 3 0+0+3+0
## 1253 12 26 Bauer Klemen SLO 2 0+0+1+1
## 1254 13 36 Lindstroem Fredrik SWE 1 0+0+0+1
## 1255 14 15 Boe Tarjei NOR 5 1+1+1+2
## 1256 15 45 Christiansen Vetle Sjaastad NOR 0 0+0+0+0
## 1257 16 9 Smith Nathan CAN 3 0+0+0+3
## 1258 17 23 Bailey Lowell USA 3 0+0+2+1
## 1259 18 27 Peiffer Arnd GER 3 0+0+1+2
## 1260 19 4 Slesingr Michal CZE 5 0+2+1+2
## 1261 20 2 Moravec Ondrej CZE 5 1+1+1+2
## 1262 21 33 Krupcik Tomas CZE 1 0+0+1+0
## 1263 22 38 Anev Krasimir BUL 1 0+1+0+0
## 1264 23 12 Lesser Erik GER 5 1+1+1+2
## 1265 24 10 Eder Simon AUT 5 1+0+3+1
## 1266 25 32 Mesotitsch Daniel AUT 1 0+0+0+1
## 1267 26 43 Fillon Maillet Quentin FRA 3 2+0+0+1
## 1268 27 41 Savitskiy Yan KAZ 2 0+1+1+0
## 1269 28 13 Rastorgujevs Andrejs LAT 6 0+1+3+2
## 1270 29 31 Tsvetkov Maxim RUS 3 0+0+2+1
## 1271 30 40 Boe Johannes Thingnes NOR 5 0+0+2+3
## 1272 31 42 Lapshin Timofei RUS 5 2+1+1+1
## 1273 32 34 Hofer Lukas ITA 3 0+0+1+2
## 1274 33 14 Boehm Daniel GER 4 0+0+2+2
## 1275 34 24 Fourcade Simon FRA 5 0+3+0+2
## 1276 35 17 Burke Tim USA 6 1+0+2+3
## 1277 36 28 Semenov Sergii UKR 5 1+0+1+3
## 1278 37 57 Iliev Vladimir BUL 2 1+0+0+1
## 1279 38 19 Pryma Artem UKR 6 1+2+3+0
## 1280 39 37 Liadov Yuryi BLR 3 0+1+2+0
## 1281 40 29 Komatz David AUT 3 2+1+0+0
## 1282 DSQ 18 Pechenkin Aleksandr RUS 7 3+1+1+2
## 1283 41 50 Graf Florian GER 4 0+0+2+2
## 1284 42 49 Krcmar Michal CZE 4 1+2+0+1
## 1285 43 21 Malyshko Dmitry RUS 6 2+2+0+2
## 1286 44 35 Puchianu Cornel ROU 7 0+2+3+2
## 1287 45 51 Nordgren Leif USA 4 1+0+1+2
## 1288 46 53 Chepelin Vladimir BLR 6 0+3+1+2
## 1289 47 59 Grossegger Sven AUT 5 0+0+3+2
## 1290 48 55 Zhyrnyi Oleksandr UKR 4 1+1+1+1
## 1291 49 52 Arwidson Tobias SWE 4 0+2+1+1
## 1292 50 60 Desthieux Simon FRA 6 2+0+2+2
## 1293 51 44 Hasilla Tomas SVK 6 2+0+2+2
## 1294 52 58 Bormolini Thomas ITA 5 1+2+1+1
## 1295 53 54 Windisch Dominik ITA 9 1+3+2+3
## 1296 54 47 Femling Peppe SWE 9 3+3+1+2
## 1297 55 56 Soukup Jaroslav CZE 6 1+1+2+2
## 1298 56 25 Kazar Matej SVK 9 2+3+0+4
## 1299 57 39 Eberhard Tobias AUT 6 3+1+1+1
## 1300 58 48 Cuenot Gaspard SUI 9 1+3+1+4
## 1301 59 46 Toivanen Ahti FIN 9 1+3+3+2
## 1302 1 17 Fourcade Martin FRA 0 0+0
## 1303 2 20 Moravec Ondrej CZE 0 0+0
## 1304 3 27 Fak Jakov SLO 0 0+0
## 1305 4 10 Slesingr Michal CZE 0 0+0
## 1306 5 21 Garanichev Evgeniy RUS 0 0+0
## 1307 6 18 Shipulin Anton RUS 1 1+0
## 1308 7 25 Svendsen Emil Hegle NOR 1 0+1
## 1309 8 19 Bjoerndalen Ole Einar NOR 2 1+1
## 1310 9 3 Smith Nathan CAN 0 0+0
## 1311 10 32 Eder Simon AUT 1 0+1
## 1312 11 31 Schempp Simon GER 1 0+1
## 1313 12 26 Lesser Erik GER 0 0+0
## 1314 13 6 Rastorgujevs Andrejs LAT 1 1+0
## 1315 14 37 Boehm Daniel GER 0 0+0
## 1316 15 39 Boe Tarjei NOR 2 0+2
## 1317 16 101 Os Alexander NOR 1 1+0
## 1318 17 4 Burke Tim USA 2 1+1
## 1319 DSQ 53 Pechenkin Aleksandr RUS 1 0+1
## 1320 18 5 Pryma Artem UKR 1 1+0
## 1321 19 44 Beatrix Jean Guillaume FRA 2 0+2
## 1322 20 23 Malyshko Dmitry RUS 1 0+1
## 1323 21 71 Birnbacher Andreas GER 1 1+0
## 1324 22 41 Bailey Lowell USA 1 1+0
## 1325 23 9 Fourcade Simon FRA 2 0+2
## 1326 24 7 Kazar Matej SVK 1 0+1
## 1327 25 43 Bauer Klemen SLO 2 1+1
## 1328 26 15 Peiffer Arnd GER 1 1+0
## 1329 27 8 Semenov Sergii UKR 2 1+1
## 1330 28 38 Komatz David AUT 1 0+1
## 1331 29 22 Landertinger Dominik AUT 2 1+1
## 1332 30 84 Tsvetkov Maxim RUS 1 0+1
## 1333 31 68 Mesotitsch Daniel AUT 2 2+0
## 1334 32 61 Krupcik Tomas CZE 0 0+0
## 1335 33 40 Hofer Lukas ITA 2 1+1
## 1336 34 48 Puchianu Cornel ROU 2 1+1
## 1337 35 11 Lindstroem Fredrik SWE 2 2+0
## 1338 36 60 Liadov Yuryi BLR 1 0+1
## 1339 37 29 Anev Krasimir BUL 1 1+0
## 1340 38 1 Eberhard Tobias AUT 1 0+1
## 1341 39 2 Boe Johannes Thingnes NOR 4 2+2
## 1342 40 14 Savitskiy Yan KAZ 2 0+2
## 1343 41 45 Lapshin Timofei RUS 3 1+2
## 1344 42 13 Fillon Maillet Quentin FRA 3 1+2
## 1345 43 35 Hasilla Tomas SVK 1 1+0
## 1346 44 47 Christiansen Vetle Sjaastad NOR 1 1+0
## 1347 45 64 Toivanen Ahti FIN 2 1+1
## 1348 46 59 Femling Peppe SWE 2 0+2
## 1349 47 87 Cuenot Gaspard SUI 1 0+1
## 1350 48 83 Krcmar Michal CZE 2 1+1
## 1351 49 98 Graf Florian GER 2 0+2
## 1352 50 79 Nordgren Leif USA 1 0+1
## 1353 51 34 Arwidson Tobias SWE 1 1+0
## 1354 52 28 Chepelin Vladimir BLR 4 0+4
## 1355 53 12 Windisch Dominik ITA 3 1+2
## 1356 54 81 Zhyrnyi Oleksandr UKR 1 1+0
## 1357 55 33 Soukup Jaroslav CZE 3 1+2
## 1358 56 46 Iliev Vladimir BUL 3 0+3
## 1359 57 75 Bormolini Thomas ITA 2 1+1
## 1360 58 94 Grossegger Sven AUT 1 0+1
## 1361 59 52 Desthieux Simon FRA 3 1+2
## 1362 60 99 Bedard Marc Andre CAN 1 0+1
## 1363 61 62 Almoukov Alexei AUS 0 0+0
## 1364 62 36 Green Brendan CAN 3 1+2
## 1365 63 90 Eriksson Christofer SWE 2 1+1
## 1366 64 30 Koiv Kauri EST 2 0+2
## 1367 65 76 Armgren Ted SWE 2 1+1
## 1368 66 42 Pidruchnyi Dmytro UKR 3 0+3
## 1369 67 57 Finello Jeremy SUI 1 0+1
## 1370 68 69 Dombrovski Karol LTU 1 0+1
## 1371 69 56 Sloof Joel NED 1 0+1
## 1372 69 100 Hiidensalo Olli FIN 3 2+1
## 1373 71 78 Joller Ivan SUI 4 2+2
## 1374 72 65 Otcenas Martin SVK 3 1+2
## 1375 73 95 Braun Maxim KAZ 1 0+1
## 1376 74 63 Remmelg Martin EST 1 1+0
## 1377 75 70 Roesch Michael BEL 2 1+1
## 1378 76 89 Ermits Kalev EST 3 3+0
## 1379 77 72 Szczurek Lukasz POL 1 1+0
## 1380 78 50 Trifonov Alexandr KAZ 1 0+1
## 1381 79 54 Kobonoki Tsukasa JPN 3 0+3
## 1382 80 24 Weger Benjamin SUI 6 3+3
## 1383 81 102 De Lorenzi Christian ITA 4 1+3
## 1384 82 96 Budzilovich Dzmitry BLR 2 1+1
## 1385 83 51 Hakala Matti FIN 2 0+2
## 1386 84 86 Danila Marian Marcel ROU 3 1+2
## 1387 85 85 Plywaczyk Krzysztof POL 2 0+2
## 1388 86 67 Darozhka Aliaksandr BLR 4 1+3
## 1389 87 66 Oblak Lenart SLO 3 1+2
## 1390 88 16 Kaukenas Tomas LTU 5 4+1
## 1391 89 93 Currier Russell USA 5 4+1
## 1392 90 49 Puzulis Rolands LAT 4 1+3
## 1393 91 55 Rastic Damir SRB 3 1+2
## 1394 92 97 Patrijuks Aleksandrs LAT 4 3+1
## 1395 93 73 Lobo Escolar Victor ESP 3 1+2
## 1396 94 77 Jackson Lee-Steve GBR 3 2+1
## 1397 95 88 Hodzic Edin SRB 2 2+0
## 1398 96 82 Sima Michal SVK 4 3+1
## 1399 97 80 Zlatev Ivan BUL 4 2+2
## 1400 98 92 Laponder Marcel GBR 5 2+3
## 1401 99 58 Tyshchenko Artem UKR 4 1+3
## 1402 DNS 74 Perras Scott CAN NA
## 1403 DNS 91 Boeuf Alexis FRA NA
## 1404 1 1 Fourcade Martin FRA 0 0+0+0+0
## 1405 2 4 Garanichev Evgeniy RUS 0 0+0+0+0
## 1406 3 18 Semenov Sergii UKR 0 0+0+0+0
## 1407 4 16 Fak Jakov SLO 2 0+1+0+1
## 1408 5 3 Weger Benjamin SUI 0 0+0+0+0
## 1409 6 32 Boe Johannes Thingnes NOR 1 0+0+1+0
## 1410 7 15 Shipulin Anton RUS 2 0+0+2+0
## 1411 8 22 Slesingr Michal CZE 1 0+0+1+0
## 1412 9 48 Lesser Erik GER 1 0+1+0+0
## 1413 10 67 Tsvetkov Maxim RUS 0 0+0+0+0
## 1414 11 14 Birnbacher Andreas GER 2 0+1+1+0
## 1415 12 10 Smith Nathan CAN 1 0+0+0+1
## 1416 13 13 Lapshin Timofei RUS 1 0+1+0+0
## 1417 14 8 Fillon Maillet Quentin FRA 2 0+1+0+1
## 1418 15 17 Boehm Daniel GER 2 0+1+0+1
## 1419 16 46 Fourcade Simon FRA 2 0+0+2+0
## 1420 17 37 Iliev Vladimir BUL 1 1+0+0+0
## 1421 18 21 Liadov Yuryi BLR 1 0+0+1+0
## 1422 19 36 Chepelin Vladimir BLR 2 0+0+0+2
## 1423 20 57 Nordgren Leif USA 1 1+0+0+0
## 1424 21 61 Femling Peppe SWE 0 0+0+0+0
## 1425 22 6 Rastorgujevs Andrejs LAT 1 0+0+0+1
## 1426 23 9 Lindstroem Fredrik SWE 2 0+0+1+1
## 1427 24 94 Guigonnat Antonin FRA 1 1+0+0+0
## 1428 25 74 Peiffer Arnd GER 2 1+1+0+0
## 1429 26 49 Krcmar Michal CZE 1 0+0+1+0
## 1430 27 19 Schempp Simon GER 3 0+0+2+1
## 1431 28 91 Doll Benedikt GER 2 0+1+1+0
## 1432 29 93 Birkeland Lars Helge NOR 2 1+0+0+1
## 1433 30 75 L'Abee-Lund Henrik NOR 1 0+0+0+1
## 1434 31 29 Eder Simon AUT 2 0+0+2+0
## 1435 32 98 Volkov Alexey RUS 1 1+0+0+0
## 1436 33 65 Zhyrnyi Oleksandr UKR 1 1+0+0+0
## 1437 34 30 Roesch Michael BEL 2 0+0+0+2
## 1438 35 5 Beatrix Jean Guillaume FRA 3 1+0+0+2
## 1439 36 11 Windisch Dominik ITA 3 2+1+0+0
## 1440 37 34 Pryma Artem UKR 3 1+1+1+0
## 1441 38 38 Malyshko Dmitry RUS 2 0+0+2+0
## 1442 39 43 Bjoentegaard Erlend NOR 1 1+0+0+0
## 1443 40 20 Ermits Kalev EST 2 1+0+1+0
## 1444 41 44 Grossegger Sven AUT 3 1+1+1+0
## 1445 42 35 Landertinger Dominik AUT 2 0+2+0+0
## 1446 43 28 Anev Krasimir BUL 3 1+0+0+2
## 1447 44 41 Green Brendan CAN 3 0+1+0+2
## 1448 45 90 De Lorenzi Christian ITA 2 0+2+0+0
## 1449 46 53 Eberhard Julian AUT 4 2+2+0+0
## 1450 47 24 Burke Tim USA 4 0+1+0+3
## 1451 48 27 Mesotitsch Daniel AUT 3 1+0+1+1
## 1452 49 2 Soukup Jaroslav CZE 3 0+0+0+3
## 1453 50 40 Hofer Lukas ITA 4 1+3+0+0
## 1454 51 79 Szczurek Lukasz POL 0 0+0+0+0
## 1455 52 12 Armgren Ted SWE 4 1+2+0+1
## 1456 53 83 Joller Ivan SUI 2 1+1+0+0
## 1457 54 71 Desthieux Simon FRA 3 0+2+0+1
## 1458 55 42 Arwidson Tobias SWE 2 0+1+1+0
## 1459 56 39 Tyshchenko Artem UKR 2 1+0+0+1
## 1460 57 56 Kauppinen Jarkko FIN 1 1+0+0+0
## 1461 58 31 Os Alexander NOR 2 1+0+1+0
## 1462 59 85 Dombrovski Karol LTU 1 0+1+0+0
## 1463 60 73 Gow Scott CAN 3 1+1+1+0
## 1464 61 45 Dolder Mario SUI 4 0+2+1+1
## 1465 62 50 Bailey Lowell USA 3 0+1+0+2
## 1466 63 88 Komatz David AUT 3 2+1+0+0
## 1467 64 51 Dyuzhev Dmitriy BLR 4 0+1+2+1
## 1468 65 70 Hasilla Tomas SVK 3 2+1+0+0
## 1469 66 64 Krupcik Tomas CZE 3 0+1+2+0
## 1470 67 59 Bormolini Thomas ITA 4 2+1+0+1
## 1471 68 89 Stegmayr Gabriel SWE 2 0+2+0+0
## 1472 69 66 Koiv Kauri EST 5 2+0+2+1
## 1473 70 23 Moravec Ondrej CZE 6 0+1+2+3
## 1474 71 82 Kubaliak Michal SVK 2 1+0+1+0
## 1475 72 63 Podkorytov Vassiliy KAZ 3 0+2+1+0
## 1476 73 54 Buta George ROU 3 3+0+0+0
## 1477 74 84 Sima Michal SVK 3 1+0+1+1
## 1478 75 60 Sloof Joel NED 1 0+0+0+1
## 1479 76 26 Kobonoki Tsukasa JPN 4 2+1+0+1
## 1480 77 86 Abasheu Dzmitry BLR 4 0+3+0+1
## 1481 78 47 Lessing Roland EST 6 4+2+0+0
## 1482 79 62 Matiasko Miroslav SVK 5 1+2+0+2
## 1483 80 92 Siemakov Volodymyr UKR 5 2+2+0+1
## 1484 81 72 Gerdzhikov Dimitar BUL 4 1+1+2+0
## 1485 82 58 Kaukenas Tomas LTU 6 1+2+1+2
## 1486 83 52 Rastic Damir SRB 3 1+0+0+2
## 1487 84 96 Faur Remus ROU 3 1+1+1+0
## 1488 85 33 Bauer Klemen SLO 8 1+2+3+2
## 1489 86 76 Finello Jeremy SUI 4 0+2+0+2
## 1490 87 77 Puzulis Rolands LAT 2 1+0+0+1
## 1491 88 95 Braun Maxim KAZ 4 2+0+1+1
## 1492 89 69 Guzik Grzegorz POL 6 2+0+2+2
## 1493 90 78 Trsan Rok SLO 6 1+1+3+1
## 1494 91 81 Gronman Tuomas FIN 5 1+1+2+1
## 1495 92 80 Krsmanovic Dejan SRB 4 1+2+1+0
## 1496 93 55 Kane Kevin GBR 3 1+1+0+1
## 1497 94 87 Praulitis Toms LAT 4 1+2+1+0
## 1498 DNS 7 Svendsen Emil Hegle NOR NA
## 1499 DNS 25 Savitskiy Yan KAZ NA
## 1500 DNS 68 Toivanen Ahti FIN NA
## 1501 DNS 97 Dokl Peter SLO NA
## 1502 1 70 Peiffer Arnd GER 0 0+0
## 1503 2 27 Fourcade Martin FRA 0 0+0
## 1504 3 11 Shipulin Anton RUS 0 0+0
## 1505 4 7 Birnbacher Andreas GER 0 0+0
## 1506 5 44 Birkeland Lars Helge NOR 0 0+0
## 1507 6 14 Fillon Maillet Quentin FRA 0 0+0
## 1508 7 6 Moravec Ondrej CZE 0 0+0
## 1509 8 21 Boe Johannes Thingnes NOR 1 0+1
## 1510 9 26 Landertinger Dominik AUT 0 0+0
## 1511 10 33 Garanichev Evgeniy RUS 0 0+0
## 1512 11 100 Doll Benedikt GER 1 0+1
## 1513 12 30 Pidruchnyi Dmytro UKR 0 0+0
## 1514 13 19 Schempp Simon GER 2 1+1
## 1515 14 24 Lesser Erik GER 1 0+1
## 1516 15 13 Semenov Sergii UKR 1 0+1
## 1517 16 43 Dolder Mario SUI 0 0+0
## 1518 17 34 Mesotitsch Daniel AUT 0 0+0
## 1519 18 77 Tsvetkov Maxim RUS 0 0+0
## 1520 19 31 Fak Jakov SLO 2 1+1
## 1521 20 15 Ermits Kalev EST 1 1+0
## 1522 21 25 Beatrix Jean Guillaume FRA 1 1+0
## 1523 22 16 Smith Nathan CAN 1 0+1
## 1524 23 88 Slepov Alexey RUS 2 0+2
## 1525 24 2 Slesingr Michal CZE 1 0+1
## 1526 25 94 Guigonnat Antonin FRA 1 0+1
## 1527 26 1 Weger Benjamin SUI 2 0+2
## 1528 27 23 Iliev Vladimir BUL 2 1+1
## 1529 28 36 Grossegger Sven AUT 1 1+0
## 1530 29 8 Nordgren Leif USA 1 1+0
## 1531 30 47 Boehm Daniel GER 2 1+1
## 1532 31 4 Eder Simon AUT 2 0+2
## 1533 32 48 Fourcade Simon FRA 3 3+0
## 1534 33 60 Desthieux Simon FRA 1 0+1
## 1535 34 3 Lindstroem Fredrik SWE 2 0+2
## 1536 35 45 Malyshko Dmitry RUS 2 1+1
## 1537 36 76 Gow Scott CAN 1 1+0
## 1538 37 50 Chepelin Vladimir BLR 3 0+3
## 1539 38 17 Os Alexander NOR 0 0+0
## 1540 39 40 Green Brendan CAN 1 1+0
## 1541 40 37 Hofer Lukas ITA 2 2+0
## 1542 41 52 Wiestner Serafin SUI 2 2+0
## 1543 42 101 Stenersen Torstein SWE 0 0+0
## 1544 43 20 Lapshin Timofei RUS 1 1+0
## 1545 44 41 Anev Krasimir BUL 2 1+1
## 1546 45 67 Bormolini Thomas ITA 0 0+0
## 1547 46 39 Krcmar Michal CZE 1 0+1
## 1548 47 5 Liadov Yuryi BLR 2 0+2
## 1549 48 28 L'Abee-Lund Henrik NOR 3 1+2
## 1550 49 18 Bauer Klemen SLO 3 2+1
## 1551 50 68 Matiasko Miroslav SVK 1 0+1
## 1552 51 12 Rastorgujevs Andrejs LAT 3 3+0
## 1553 52 29 Roesch Michael BEL 1 0+1
## 1554 53 38 Arwidson Tobias SWE 0 0+0
## 1555 54 75 Krupcik Tomas CZE 1 0+1
## 1556 55 73 Tyshchenko Artem UKR 1 1+0
## 1557 56 62 Waernes Andreas Dahloe NOR 2 0+2
## 1558 57 66 Dyuzhev Dmitriy BLR 2 2+0
## 1559 58 56 Hasilla Tomas SVK 0 0+0
## 1560 59 89 Siemakov Volodymyr UKR 2 1+1
## 1561 60 53 Eberhard Julian AUT 4 3+1
## 1562 61 91 Joller Ivan SUI 2 1+1
## 1563 62 32 Soukup Jaroslav CZE 2 1+1
## 1564 63 80 Bailey Lowell USA 2 0+2
## 1565 64 49 Lessing Roland EST 2 1+1
## 1566 65 9 Puchianu Cornel ROU 1 0+1
## 1567 65 82 Kubaliak Michal SVK 0 0+0
## 1568 67 92 Gow Christian CAN 1 1+0
## 1569 68 42 Burke Tim USA 3 0+3
## 1570 69 81 Abasheu Dzmitry BLR 2 1+1
## 1571 70 58 Armgren Ted SWE 2 0+2
## 1572 71 46 Pryma Artem UKR 4 1+3
## 1573 72 83 Gronman Tuomas FIN 1 0+1
## 1574 73 55 Hiidensalo Olli FIN 1 0+1
## 1575 74 61 Koiv Kauri EST 3 1+2
## 1576 75 78 Dombrovski Karol LTU 2 0+2
## 1577 76 72 Trsan Rok SLO 2 1+1
## 1578 77 98 Sima Michal SVK 2 1+1
## 1579 78 93 Kaukenas Tomas LTU 3 2+1
## 1580 79 35 Femling Peppe SWE 3 2+1
## 1581 80 65 Podkorytov Vassiliy KAZ 2 0+2
## 1582 81 63 Danila Marian Marcel ROU 2 1+1
## 1583 82 97 Szczurek Lukasz POL 2 0+2
## 1584 83 87 Komatz David AUT 4 2+2
## 1585 84 69 Zlatev Ivan BUL 2 1+1
## 1586 85 85 De Lorenzi Christian ITA 5 2+3
## 1587 86 86 Slotins Roberts LAT 1 0+1
## 1588 87 10 Windisch Dominik ITA 6 4+2
## 1589 88 64 Lobo Escolar Victor ESP 3 2+1
## 1590 89 71 Guzik Grzegorz POL 3 3+0
## 1591 90 57 Braun Maxim KAZ 4 3+1
## 1592 91 59 Jackson Lee-Steve GBR 4 2+2
## 1593 92 22 Kobonoki Tsukasa JPN 4 1+3
## 1594 93 51 Kauppinen Jarkko FIN 1 1+0
## 1595 94 74 Puzulis Rolands LAT 3 2+1
## 1596 95 96 Kane Kevin GBR 1 0+1
## 1597 96 79 Rastic Damir SRB 6 3+3
## 1598 97 99 Krsmanovic Dejan SRB 5 3+2
## 1599 DNS 54 Sloof Joel NED NA
## 1600 DNS 84 Bjoentegaard Erlend NOR NA
## 1601 DNS 90 Pantov Anton KAZ NA
## 1602 DNS 95 Dokl Peter SLO NA
## 1603 1 3 Shipulin Anton RUS 1 0+0+0+1
## 1604 2 2 Fourcade Martin FRA 1 0+0+0+1
## 1605 3 21 Eder Simon AUT 1 0+0+1+0
## 1606 4 14 Lindstroem Fredrik SWE 0 0+0+0+0
## 1607 5 17 Beatrix Jean Guillaume FRA 1 0+0+0+1
## 1608 6 9 Boe Tarjei NOR 1 0+0+1+0
## 1609 7 7 Moravec Ondrej CZE 1 0+1+0+0
## 1610 8 6 Fak Jakov SLO 3 1+0+2+0
## 1611 9 30 Smith Nathan CAN 2 1+0+0+1
## 1612 10 13 Birnbacher Andreas GER 2 1+0+1+0
## 1613 11 25 Malyshko Dmitry RUS 1 0+1+0+0
## 1614 12 23 Fillon Maillet Quentin FRA 1 0+1+0+0
## 1615 13 4 Landertinger Dominik AUT 3 0+0+2+1
## 1616 14 28 Bjoentegaard Erlend NOR 3 0+1+2+0
## 1617 15 19 Tsvetkov Maxim RUS 2 1+0+1+0
## 1618 16 12 Boehm Daniel GER 1 1+0+0+0
## 1619 17 1 Svendsen Emil Hegle NOR 4 1+2+0+1
## 1620 18 22 Anev Krasimir BUL 1 0+0+0+1
## 1621 19 27 Windisch Dominik ITA 3 2+0+1+0
## 1622 20 5 Schempp Simon GER 3 0+3+0+0
## 1623 21 26 Hofer Lukas ITA 3 1+0+0+2
## 1624 22 18 Bailey Lowell USA 2 1+0+0+1
## 1625 23 8 Boe Johannes Thingnes NOR 7 2+2+0+3
## 1626 24 20 Weger Benjamin SUI 4 1+2+1+0
## 1627 25 10 Garanichev Evgeniy RUS 6 1+1+2+2
## 1628 26 29 Lapshin Timofei RUS 3 0+1+1+1
## 1629 27 15 Burke Tim USA 6 2+0+1+3
## 1630 28 24 Iliev Vladimir BUL 6 1+1+1+3
## 1631 29 16 Slesingr Michal CZE 4 2+2+0+0
## 1632 30 11 Lesser Erik GER 9 4+3+0+2
## 1633 1 3 Svendsen Emil Hegle NOR 0 0+0+0+0
## 1634 2 1 Shipulin Anton RUS 2 0+1+1+0
## 1635 3 4 Fourcade Martin FRA 1 0+0+1+0
## 1636 4 2 Landertinger Dominik AUT 3 0+0+2+1
## 1637 5 18 Moravec Ondrej CZE 2 1+1+0+0
## 1638 6 45 Lapshin Timofei RUS 1 0+0+1+0
## 1639 7 14 Beatrix Jean Guillaume FRA 3 0+0+2+1
## 1640 8 10 Boe Johannes Thingnes NOR 4 0+1+3+0
## 1641 9 27 Weger Benjamin SUI 3 2+1+0+0
## 1642 10 15 Hofer Lukas ITA 2 0+1+0+1
## 1643 11 24 Fak Jakov SLO 2 0+0+1+1
## 1644 12 23 Lindstroem Fredrik SWE 2 0+0+1+1
## 1645 13 37 Kuehn Johannes GER 0 0+0+0+0
## 1646 14 22 Bjoentegaard Erlend NOR 4 0+1+2+1
## 1647 15 35 Krcmar Michal CZE 1 0+0+0+1
## 1648 16 5 Garanichev Evgeniy RUS 4 2+0+2+0
## 1649 17 7 Boe Tarjei NOR 4 1+0+3+0
## 1650 18 12 Windisch Dominik ITA 4 1+1+0+2
## 1651 19 6 Schempp Simon GER 3 0+2+0+1
## 1652 20 41 Fourcade Simon FRA 1 0+0+1+0
## 1653 21 26 Burke Tim USA 3 2+0+0+1
## 1654 22 25 Smith Nathan CAN 3 0+0+1+2
## 1655 23 33 Lesser Erik GER 2 0+0+2+0
## 1656 24 43 Grossegger Sven AUT 3 1+0+2+0
## 1657 25 28 Desthieux Simon FRA 2 0+0+1+1
## 1658 26 17 Iliev Vladimir BUL 3 0+1+1+1
## 1659 27 44 Os Alexander NOR 2 1+0+1+0
## 1660 28 13 Boehm Daniel GER 3 0+0+2+1
## 1661 29 16 Bailey Lowell USA 4 1+0+1+2
## 1662 30 31 Mesotitsch Daniel AUT 2 0+0+1+1
## 1663 31 32 Anev Krasimir BUL 2 1+1+0+0
## 1664 32 42 Kazar Matej SVK 2 1+1+0+0
## 1665 33 34 Green Brendan CAN 3 0+1+0+2
## 1666 34 29 Malyshko Dmitry RUS 2 2+0+0+0
## 1667 35 9 Tsvetkov Maxim RUS 5 1+1+2+1
## 1668 36 50 Pidruchnyi Dmytro UKR 2 0+0+2+0
## 1669 37 20 Slesingr Michal CZE 3 1+0+1+1
## 1670 38 8 Fillon Maillet Quentin FRA 4 0+1+3+0
## 1671 39 30 Christiansen Vetle Sjaastad NOR 3 0+2+0+1
## 1672 40 21 Otcenas Martin SVK 4 2+0+2+0
## 1673 41 11 Eder Simon AUT 6 3+0+1+2
## 1674 42 39 Chepelin Vladimir BLR 4 0+1+2+1
## 1675 43 55 Armgren Ted SWE 3 0+1+1+1
## 1676 44 40 Joller Ivan SUI 4 1+2+0+1
## 1677 45 56 Puchianu Cornel ROU 3 1+1+1+0
## 1678 46 47 Eberhard Julian AUT 7 2+3+2+0
## 1679 47 52 Claude Florent FRA 3 1+1+1+0
## 1680 48 19 Soukup Jaroslav CZE 6 2+1+2+1
## 1681 49 36 Dolder Mario SUI 5 1+2+1+1
## 1682 50 38 Birnbacher Andreas GER 6 1+1+0+4
## 1683 51 53 Nordgren Leif USA 3 0+1+2+0
## 1684 52 49 Toivanen Ahti FIN 5 1+2+1+1
## 1685 53 58 Krupcik Tomas CZE 3 1+0+1+1
## 1686 54 51 Rastorgujevs Andrejs LAT 7 0+2+4+1
## 1687 55 60 Savitskiy Yan KAZ 3 0+0+1+2
## 1688 56 48 Hiidensalo Olli FIN 5 2+1+1+1
## 1689 57 59 Guzik Grzegorz POL 5 0+0+3+2
## 1690 58 54 Wiestner Serafin SUI 9 2+3+1+3
## 1691 59 46 Sloof Joel NED 6 3+2+1+0
## 1692 DNS 57 Koiv Kauri EST NA
## 1693 1 7 Shipulin Anton RUS 0 0+0
## 1694 2 16 Landertinger Dominik AUT 0 0+0
## 1695 3 12 Svendsen Emil Hegle NOR 0 0+0
## 1696 4 6 Fourcade Martin FRA 1 0+1
## 1697 5 71 Garanichev Evgeniy RUS 0 0+0
## 1698 6 8 Schempp Simon GER 0 0+0
## 1699 7 34 Boe Tarjei NOR 0 0+0
## 1700 8 39 Fillon Maillet Quentin FRA 0 0+0
## 1701 9 47 Tsvetkov Maxim RUS 0 0+0
## 1702 10 14 Boe Johannes Thingnes NOR 2 0+2
## 1703 11 23 Eder Simon AUT 1 1+0
## 1704 12 5 Windisch Dominik ITA 1 0+1
## 1705 13 43 Boehm Daniel GER 0 0+0
## 1706 14 9 Beatrix Jean Guillaume FRA 2 0+2
## 1707 15 44 Hofer Lukas ITA 0 0+0
## 1708 16 42 Bailey Lowell USA 0 0+0
## 1709 17 46 Iliev Vladimir BUL 0 0+0
## 1710 18 20 Moravec Ondrej CZE 1 1+0
## 1711 19 48 Soukup Jaroslav CZE 0 0+0
## 1712 20 22 Slesingr Michal CZE 1 0+1
## 1713 21 57 Otcenas Martin SVK 0 0+0
## 1714 22 87 Bjoentegaard Erlend NOR 1 0+1
## 1715 23 26 Lindstroem Fredrik SWE 1 0+1
## 1716 24 28 Fak Jakov SLO 2 0+2
## 1717 25 2 Smith Nathan CAN 1 1+0
## 1718 26 24 Burke Tim USA 2 0+2
## 1719 27 10 Weger Benjamin SUI 2 2+0
## 1720 28 63 Desthieux Simon FRA 1 0+1
## 1721 29 27 Malyshko Dmitry RUS 1 0+1
## 1722 30 50 Christiansen Vetle Sjaastad NOR 1 1+0
## 1723 31 19 Mesotitsch Daniel AUT 1 1+0
## 1724 32 30 Anev Krasimir BUL 0 0+0
## 1725 33 15 Lesser Erik GER 1 0+1
## 1726 34 62 Green Brendan CAN 1 0+1
## 1727 35 65 Krcmar Michal CZE 0 0+0
## 1728 36 45 Dolder Mario SUI 2 0+2
## 1729 37 85 Kuehn Johannes GER 1 0+1
## 1730 38 25 Birnbacher Andreas GER 2 0+2
## 1731 39 74 Chepelin Vladimir BLR 1 0+1
## 1732 40 98 Joller Ivan SUI 1 0+1
## 1733 41 33 Fourcade Simon FRA 2 1+1
## 1734 42 31 Kazar Matej SVK 1 1+0
## 1735 43 86 Grossegger Sven AUT 2 1+1
## 1736 44 37 Os Alexander NOR 2 1+1
## 1737 45 4 Lapshin Timofei RUS 2 2+0
## 1738 46 58 Sloof Joel NED 0 0+0
## 1739 46 64 Eberhard Julian AUT 3 1+2
## 1740 48 49 Hiidensalo Olli FIN 2 1+1
## 1741 49 1 Toivanen Ahti FIN 1 0+1
## 1742 50 40 Pidruchnyi Dmytro UKR 1 1+0
## 1743 51 3 Rastorgujevs Andrejs LAT 3 2+1
## 1744 52 97 Claude Florent FRA 1 0+1
## 1745 53 80 Nordgren Leif USA 1 0+1
## 1746 54 61 Wiestner Serafin SUI 3 2+1
## 1747 55 75 Armgren Ted SWE 1 0+1
## 1748 56 29 Puchianu Cornel ROU 2 0+2
## 1749 57 69 Koiv Kauri EST 1 0+1
## 1750 58 94 Krupcik Tomas CZE 1 0+1
## 1751 59 54 Guzik Grzegorz POL 1 0+1
## 1752 60 18 Savitskiy Yan KAZ 1 0+1
## 1753 61 13 Bauer Klemen SLO 3 2+1
## 1754 62 41 Lessing Roland EST 3 3+0
## 1755 63 32 Semenov Sergii UKR 3 1+2
## 1756 64 79 Peiffer Arnd GER 1 1+0
## 1757 65 17 Pryma Artem UKR 3 1+2
## 1758 66 38 Arwidson Tobias SWE 1 0+1
## 1759 67 35 Komatz David AUT 3 3+0
## 1760 67 89 De Lorenzi Christian ITA 1 0+1
## 1761 69 100 Tobreluts Indrek EST 2 1+1
## 1762 70 81 Darozhka Aliaksandr BLR 2 0+2
## 1763 DSQ 83 Pechenkin Aleksandr RUS 2 2+0
## 1764 71 70 Podkorytov Vassiliy KAZ 0 0+0
## 1765 72 72 Perras Scott CAN 4 1+3
## 1766 73 91 Budzilovich Dzmitry BLR 1 0+1
## 1767 74 67 Zhyrnyi Oleksandr UKR 2 0+2
## 1768 75 102 Matiasko Miroslav SVK 2 1+1
## 1769 76 78 Eriksson Christofer SWE 4 3+1
## 1770 77 90 Femling Peppe SWE 3 2+1
## 1771 78 96 Hakala Matti FIN 1 0+1
## 1772 79 93 Bedard Marc Andre CAN 3 1+2
## 1773 80 36 Hasilla Tomas SVK 3 2+1
## 1774 81 60 Buta George ROU 2 0+2
## 1775 82 103 Szczurek Lukasz POL 2 1+1
## 1776 83 51 Almoukov Alexei AUS 2 2+0
## 1777 84 56 Kaukenas Tomas LTU 3 1+2
## 1778 85 11 Liadov Yuryi BLR 4 3+1
## 1779 86 95 Trsan Rok SLO 3 1+2
## 1780 87 21 Kobonoki Tsukasa JPN 3 0+3
## 1781 88 68 Maric Janez SLO 4 2+2
## 1782 89 84 Tyshchenko Artem UKR 3 1+2
## 1783 90 76 Partalov Dimitar BUL 2 1+1
## 1784 91 77 Dutto Pietro ITA 2 0+2
## 1785 92 59 Jackson Lee-Steve GBR 3 1+2
## 1786 93 66 Patrijuks Aleksandrs LAT 3 1+2
## 1787 94 82 Dombrovski Karol LTU 3 3+0
## 1788 95 101 Currier Russell USA 6 4+2
## 1789 96 55 Oblak Lenart SLO 4 2+2
## 1790 97 88 Puzulis Rolands LAT 2 2+0
## 1791 98 73 Lobo Escolar Victor ESP 3 2+1
## 1792 99 92 Rastic Damir SRB 4 1+3
## 1793 100 99 Braun Maxim KAZ 3 0+3
## 1794 101 52 Hodzic Edin SRB 1 0+1
## 1795 102 53 Crnkovic Kresimir CRO 5 1+4
## 1796 1 4 Schempp Simon GER 0 0+0+0+0
## 1797 2 22 Fillon Maillet Quentin FRA 0 0+0+0+0
## 1798 3 9 Slesingr Michal CZE 0 0+0+0+0
## 1799 4 3 Svendsen Emil Hegle NOR 1 0+1+0+0
## 1800 5 17 Bjoerndalen Ole Einar NOR 1 0+1+0+0
## 1801 6 2 Shipulin Anton RUS 2 1+0+0+1
## 1802 7 21 Beatrix Jean Guillaume FRA 1 0+0+0+1
## 1803 8 10 Eder Simon AUT 1 0+0+0+1
## 1804 9 26 Peiffer Arnd GER 1 0+0+1+0
## 1805 10 6 Boe Johannes Thingnes NOR 0 0+0+0+0
## 1806 11 11 Garanichev Evgeniy RUS 2 1+0+0+1
## 1807 12 7 Moravec Ondrej CZE 2 0+1+0+1
## 1808 13 20 Lapshin Timofei RUS 1 1+0+0+0
## 1809 14 12 Lindstroem Fredrik SWE 1 0+0+1+0
## 1810 15 28 Os Alexander NOR 3 0+1+1+1
## 1811 16 13 Birnbacher Andreas GER 2 0+0+1+1
## 1812 17 24 Fourcade Simon FRA 2 1+1+0+0
## 1813 18 29 Green Brendan CAN 0 0+0+0+0
## 1814 19 30 L'Abee-Lund Henrik NOR 3 0+0+1+2
## 1815 20 27 Doll Benedikt GER 4 0+1+0+3
## 1816 21 1 Fourcade Martin FRA 4 1+2+1+0
## 1817 22 16 Boehm Daniel GER 3 0+0+0+3
## 1818 23 15 Lesser Erik GER 4 1+0+1+2
## 1819 24 5 Fak Jakov SLO 2 0+0+1+1
## 1820 25 18 Malyshko Dmitry RUS 2 0+1+0+1
## 1821 26 14 Weger Benjamin SUI 4 2+1+0+1
## 1822 27 8 Anev Krasimir BUL 2 2+0+0+0
## 1823 28 25 Bailey Lowell USA 3 1+0+1+1
## 1824 29 19 Rastorgujevs Andrejs LAT 6 0+1+2+3
## 1825 30 23 Iliev Vladimir BUL 5 2+0+1+2
## 1826 1 25 Boe Johannes Thingnes NOR 0 0+0
## 1827 2 71 Schempp Simon GER 0 0+0
## 1828 3 37 Peiffer Arnd GER 1 0+1
## 1829 4 11 Shipulin Anton RUS 1 0+1
## 1830 5 7 Rastorgujevs Andrejs LAT 1 1+0
## 1831 6 14 Doll Benedikt GER 1 0+1
## 1832 7 76 Weger Benjamin SUI 1 1+0
## 1833 8 62 Anev Krasimir BUL 0 0+0
## 1834 9 97 Boehm Daniel GER 0 0+0
## 1835 10 57 Slesingr Michal CZE 1 1+0
## 1836 11 54 Os Alexander NOR 2 0+2
## 1837 12 24 Svendsen Emil Hegle NOR 1 1+0
## 1838 13 69 Moravec Ondrej CZE 2 2+0
## 1839 14 21 Fak Jakov SLO 1 0+1
## 1840 15 23 Bjoerndalen Ole Einar NOR 2 0+2
## 1841 16 79 Green Brendan CAN 0 0+0
## 1842 17 43 Iliev Vladimir BUL 1 1+0
## 1843 18 88 L'Abee-Lund Henrik NOR 1 0+1
## 1844 19 16 Bjoentegaard Erlend NOR 2 2+0
## 1845 20 27 Liadov Yuryi BLR 0 0+0
## 1846 21 30 Lindstroem Fredrik SWE 1 1+0
## 1847 22 52 Fourcade Simon FRA 2 1+1
## 1848 23 12 Garanichev Evgeniy RUS 1 1+0
## 1849 24 70 Beatrix Jean Guillaume FRA 1 0+1
## 1850 25 68 Lesser Erik GER 1 0+1
## 1851 26 72 Fourcade Martin FRA 2 1+1
## 1852 27 18 Gow Scott CAN 0 0+0
## 1853 28 53 Chepelin Vladimir BLR 2 0+2
## 1854 29 48 Tyshchenko Artem UKR 0 0+0
## 1855 30 56 Eder Simon AUT 2 2+0
## 1856 31 49 Soukup Jaroslav CZE 3 0+3
## 1857 32 8 Zhyrnyi Oleksandr UKR 1 0+1
## 1858 32 92 Desthieux Simon FRA 0 0+0
## 1859 34 63 Windisch Dominik ITA 1 0+1
## 1860 35 33 Smith Nathan CAN 3 2+1
## 1861 36 51 Roesch Michael BEL 1 1+0
## 1862 37 80 Fillon Maillet Quentin FRA 1 0+1
## 1863 38 101 Malyshko Dmitry RUS 0 0+0
## 1864 39 20 Lapshin Timofei RUS 1 1+0
## 1865 40 9 De Lorenzi Christian ITA 1 0+1
## 1866 41 65 Bailey Lowell USA 1 0+1
## 1867 42 31 Wiestner Serafin SUI 3 1+2
## 1868 43 59 Kilchytskyy Vitaliy UKR 1 1+0
## 1869 44 93 Krcmar Michal CZE 2 0+2
## 1870 45 5 Pinter Friedrich AUT 3 0+3
## 1871 46 50 Babikov Anton RUS 2 1+1
## 1872 47 85 Bormolini Thomas ITA 1 0+1
## 1873 48 3 Yaliotnau Raman BLR 2 1+1
## 1874 49 61 Landertinger Dominik AUT 3 0+3
## 1875 50 44 Burke Tim USA 3 0+3
## 1876 51 6 Arwidson Tobias SWE 1 0+1
## 1877 52 81 Volkov Alexey RUS 1 1+0
## 1878 53 75 Eriksson Christofer SWE 2 1+1
## 1879 54 47 Grossegger Sven AUT 3 2+1
## 1880 55 77 Otcenas Martin SVK 1 0+1
## 1881 56 1 Puchianu Cornel ROU 2 1+1
## 1882 57 98 Eberhard Julian AUT 4 3+1
## 1883 58 39 Bauer Klemen SLO 3 0+3
## 1884 59 94 Abasheu Dzmitry BLR 0 0+0
## 1885 60 78 Plywaczyk Krzysztof POL 0 0+0
## 1886 61 60 Kauppinen Jarkko FIN 0 0+0
## 1887 62 73 Mesotitsch Daniel AUT 2 1+1
## 1888 63 17 Koiv Kauri EST 1 1+0
## 1889 64 36 Kaukenas Tomas LTU 3 2+1
## 1890 65 38 Siemakov Volodymyr UKR 2 0+2
## 1891 66 83 Pantov Anton KAZ 1 0+1
## 1892 66 84 Sloof Joel NED 0 0+0
## 1893 68 64 Birnbacher Andreas GER 5 2+3
## 1894 69 46 Buta George ROU 2 1+1
## 1895 70 40 Braun Maxim KAZ 2 0+2
## 1896 71 41 Remmelg Martin EST 2 0+2
## 1897 72 4 Cuenot Gaspard SUI 3 0+3
## 1898 73 89 Rusinov Dmytro UKR 3 2+1
## 1899 74 15 Matiasko Miroslav SVK 2 0+2
## 1900 75 91 Dolder Mario SUI 4 2+2
## 1901 76 82 Maric Janez SLO 1 0+1
## 1902 77 42 Lobo Escolar Victor ESP 3 1+2
## 1903 77 95 Guzik Grzegorz POL 2 1+1
## 1904 79 22 Zlatev Ivan BUL 2 0+2
## 1905 80 102 Doherty Sean USA 1 0+1
## 1906 81 96 Gow Christian CAN 1 1+0
## 1907 82 13 Jouty Baptiste FRA 3 1+2
## 1908 83 35 Toivanen Ahti FIN 3 3+0
## 1909 84 10 Trsan Rok SLO 2 1+1
## 1910 85 90 Armgren Ted SWE 3 1+2
## 1911 86 26 Kazar Matej SVK 4 2+2
## 1912 87 86 Podkorytov Vassiliy KAZ 2 1+1
## 1913 88 74 Laponder Marcel GBR 0 0+0
## 1914 89 28 Hofer Lukas ITA 5 4+1
## 1915 90 67 Almoukov Alexei AUS 1 0+1
## 1916 91 55 Ermits Kalev EST 4 2+2
## 1917 92 100 Hakala Matti FIN 2 0+2
## 1918 93 99 Hasilla Tomas SVK 3 0+3
## 1919 94 45 Inomata Kazuya JPN 3 0+3
## 1920 95 34 Krsmanovic Dejan SRB 1 1+0
## 1921 96 87 Dokl Peter SLO 2 1+1
## 1922 97 2 Strolia Vytautas LTU 4 2+2
## 1923 98 32 Kane Kevin GBR 3 3+0
## 1924 99 58 Rastic Damir SRB 4 4+0
## 1925 DNS 19 Nordgren Leif USA NA
## 1926 DNS 29 Lusa Daumants LAT NA
## 1927 DNS 66 Puzulis Rolands LAT NA
## 1928 1 5 Shipulin Anton RUS 2 0+1+0+1
## 1929 2 1 Schempp Simon GER 1 0+0+0+1
## 1930 3 8 Boe Johannes Thingnes NOR 3 2+0+1+0
## 1931 4 28 Fourcade Martin FRA 0 0+0+0+0
## 1932 5 9 Peiffer Arnd GER 1 0+0+1+0
## 1933 6 6 Eder Simon AUT 2 0+0+1+1
## 1934 7 31 Babikov Anton RUS 1 1+0+0+0
## 1935 8 3 Boe Tarjei NOR 2 0+1+0+1
## 1936 9 13 Landertinger Dominik AUT 2 0+2+0+0
## 1937 10 18 Garanichev Evgeniy RUS 3 0+1+1+1
## 1938 11 2 Tsvetkov Maxim RUS 4 4+0+0+0
## 1939 12 27 Svendsen Emil Hegle NOR 1 1+0+0+0
## 1940 13 21 Krcmar Michal CZE 1 0+1+0+0
## 1941 14 41 Birnbacher Andreas GER 0 0+0+0+0
## 1942 15 15 Fak Jakov SLO 3 0+0+2+1
## 1943 16 34 Weger Benjamin SUI 2 1+0+0+1
## 1944 17 7 Anev Krasimir BUL 3 0+0+1+2
## 1945 18 35 Lesser Erik GER 3 0+1+1+1
## 1946 19 20 Semenov Sergii UKR 3 1+1+0+1
## 1947 20 14 Slepov Alexey RUS 4 2+1+1+0
## 1948 21 36 Rastorgujevs Andrejs LAT 4 0+0+2+2
## 1949 22 17 Burke Tim USA 4 1+0+2+1
## 1950 23 11 Doll Benedikt GER 5 0+2+2+1
## 1951 24 25 Zhyrnyi Oleksandr UKR 2 1+0+1+0
## 1952 25 38 Krupcik Tomas CZE 3 0+1+0+2
## 1953 26 22 Eberhard Julian AUT 5 1+2+1+1
## 1954 27 19 Windisch Dominik ITA 5 0+2+0+3
## 1955 28 32 Bailey Lowell USA 3 0+1+1+1
## 1956 29 24 Kazar Matej SVK 3 2+0+0+1
## 1957 30 23 Bjoerndalen Ole Einar NOR 5 1+1+2+1
## 1958 31 45 Green Brendan CAN 1 0+0+0+1
## 1959 32 37 Slesingr Michal CZE 3 1+1+1+0
## 1960 33 29 Iliev Vladimir BUL 4 0+2+0+2
## 1961 34 12 Hofer Lukas ITA 5 1+0+2+2
## 1962 35 39 Chepelin Vladimir BLR 2 1+1+0+0
## 1963 36 33 Pryma Artem UKR 4 1+1+1+1
## 1964 37 40 Wiestner Serafin SUI 5 1+0+2+2
## 1965 38 30 Soukup Jaroslav CZE 4 1+3+0+0
## 1966 39 26 Kilchytskyy Vitaliy UKR 4 0+2+2+0
## 1967 40 52 Zahkna Rene EST 2 0+1+0+1
## 1968 41 42 L'Abee-Lund Henrik NOR 3 0+1+1+1
## 1969 42 48 Dyuzhev Dmitriy BLR 3 0+1+2+0
## 1970 43 58 Smith Nathan CAN 4 1+1+1+1
## 1971 44 16 De Lorenzi Christian ITA 5 2+0+2+1
## 1972 45 46 Guigonnat Antonin FRA 4 1+0+1+2
## 1973 46 54 Moravec Ondrej CZE 4 3+0+0+1
## 1974 47 50 Dombrovski Karol LTU 3 0+1+2+0
## 1975 48 43 Nordgren Leif USA 2 1+1+0+0
## 1976 49 55 Vaclavik Adam CZE 6 3+0+2+1
## 1977 50 53 Podkorytov Vassiliy KAZ 6 1+1+3+1
## 1978 51 60 Oblak Lenart SLO 6 2+1+2+1
## 1979 52 57 Armgren Ted SWE 9 4+1+1+3
## 1980 DNF 4 Beatrix Jean Guillaume FRA NA 1+3
## 1981 DNF 10 Fourcade Simon FRA NA 1+0+2+3
## 1982 DNS 44 Pidruchnyi Dmytro UKR NA
## 1983 DNS 47 Yaliotnau Raman BLR NA
## 1984 DNS 49 Doherty Sean USA NA
## 1985 DNS 51 Desthieux Simon FRA NA
## 1986 DNS 56 Fillon Maillet Quentin FRA NA
## 1987 DNS 59 Grossegger Sven AUT NA
## 1988 1 16 Schempp Simon GER 0 0+0
## 1989 2 45 Tsvetkov Maxim RUS 0 0+0
## 1990 3 28 Boe Tarjei NOR 0 0+0
## 1991 4 61 Beatrix Jean Guillaume FRA 0 0+0
## 1992 5 34 Shipulin Anton RUS 1 0+1
## 1993 6 13 Eder Simon AUT 0 0+0
## 1994 7 7 Anev Krasimir BUL 0 0+0
## 1995 8 48 Boe Johannes Thingnes NOR 2 1+1
## 1996 9 21 Peiffer Arnd GER 0 0+0
## 1997 10 38 Fourcade Simon FRA 0 0+0
## 1998 11 29 Doll Benedikt GER 1 1+0
## 1999 12 6 Hofer Lukas ITA 1 0+1
## 2000 13 3 Landertinger Dominik AUT 0 0+0
## 2001 14 20 Slepov Alexey RUS 1 0+1
## 2002 15 27 Fak Jakov SLO 1 0+1
## 2003 16 70 De Lorenzi Christian ITA 0 0+0
## 2004 17 39 Burke Tim USA 1 0+1
## 2005 18 43 Garanichev Evgeniy RUS 2 1+1
## 2006 19 46 Windisch Dominik ITA 2 1+1
## 2007 20 2 Semenov Sergii UKR 1 0+1
## 2008 21 42 Krcmar Michal CZE 1 0+1
## 2009 22 53 Eberhard Julian AUT 3 2+1
## 2010 23 14 Bjoerndalen Ole Einar NOR 2 2+0
## 2011 24 47 Kazar Matej SVK 1 0+1
## 2012 25 31 Zhyrnyi Oleksandr UKR 1 0+1
## 2013 26 51 Kilchytskyy Vitaliy UKR 1 1+0
## 2014 27 22 Svendsen Emil Hegle NOR 3 0+3
## 2015 28 24 Fourcade Martin FRA 3 2+1
## 2016 29 37 Iliev Vladimir BUL 2 0+2
## 2017 30 35 Soukup Jaroslav CZE 0 0+0
## 2018 31 106 Babikov Anton RUS 1 0+1
## 2019 32 18 Bailey Lowell USA 2 0+2
## 2020 32 85 Pryma Artem UKR 2 1+1
## 2021 34 5 Weger Benjamin SUI 3 2+1
## 2022 34 59 Lesser Erik GER 3 2+1
## 2023 36 10 Rastorgujevs Andrejs LAT 2 0+2
## 2024 37 12 Slesingr Michal CZE 2 0+2
## 2025 38 60 Krupcik Tomas CZE 2 0+2
## 2026 39 30 Chepelin Vladimir BLR 2 1+1
## 2027 40 41 Wiestner Serafin SUI 3 1+2
## 2028 41 23 Birnbacher Andreas GER 2 2+0
## 2029 42 82 L'Abee-Lund Henrik NOR 0 0+0
## 2030 43 80 Nordgren Leif USA 1 0+1
## 2031 44 17 Pidruchnyi Dmytro UKR 2 1+1
## 2032 45 11 Green Brendan CAN 3 1+2
## 2033 46 83 Guigonnat Antonin FRA 2 0+2
## 2034 47 15 Yaliotnau Raman BLR 2 0+2
## 2035 48 50 Dyuzhev Dmitriy BLR 2 1+1
## 2036 49 94 Doherty Sean USA 1 1+0
## 2037 50 79 Dombrovski Karol LTU 1 0+1
## 2038 51 8 Desthieux Simon FRA 2 1+1
## 2039 52 25 Zahkna Rene EST 1 0+1
## 2040 52 68 Podkorytov Vassiliy KAZ 1 0+1
## 2041 54 9 Moravec Ondrej CZE 3 3+0
## 2042 55 101 Vaclavik Adam CZE 2 2+0
## 2043 56 1 Fillon Maillet Quentin FRA 3 2+1
## 2044 57 77 Armgren Ted SWE 1 0+1
## 2045 58 19 Smith Nathan CAN 3 2+1
## 2046 58 49 Grossegger Sven AUT 2 2+0
## 2047 60 95 Oblak Lenart SLO 0 0+0
## 2048 61 87 Pantov Anton KAZ 1 0+1
## 2049 62 26 Nelin Jesper SWE 3 2+1
## 2050 63 64 Roesch Michael BEL 1 0+1
## 2051 64 55 Hasilla Tomas SVK 1 0+1
## 2052 65 86 Komatz David AUT 3 2+1
## 2053 66 40 Savitskiy Yan KAZ 2 0+2
## 2054 67 33 Bjoentegaard Erlend NOR 4 2+2
## 2055 68 74 Szczurek Lukasz POL 0 0+0
## 2056 69 36 Davies Macx CAN 2 1+1
## 2057 70 100 Kuehn Johannes GER 5 1+4
## 2058 71 91 Lessing Roland EST 2 1+1
## 2059 72 67 Kletcherov Michail BUL 2 1+1
## 2060 73 44 Buta George ROU 1 0+1
## 2061 74 66 Trsan Rok SLO 2 1+1
## 2062 75 4 Otcenas Martin SVK 3 1+2
## 2063 76 93 Matiasko Miroslav SVK 2 0+2
## 2064 77 71 Volkov Alexey RUS 4 1+3
## 2065 78 69 Dolder Mario SUI 3 1+2
## 2066 79 81 Strolia Vytautas LTU 3 2+1
## 2067 80 89 Jaeger Martin SUI 5 2+3
## 2068 81 76 Puchianu Cornel ROU 3 1+2
## 2069 82 75 Dovzan Miha SLO 1 1+0
## 2070 83 105 Hallstroem Simon SWE 1 1+0
## 2071 84 88 Faur Remus ROU 1 1+0
## 2072 85 72 Ermits Kalev EST 4 3+1
## 2073 86 97 Gow Christian CAN 1 0+1
## 2074 87 52 Finello Jeremy SUI 3 2+1
## 2075 88 63 Gronman Tuomas FIN 1 0+1
## 2076 89 32 Stenersen Torstein SWE 5 2+3
## 2077 90 62 Guzik Grzegorz POL 3 1+2
## 2078 91 102 Gerdzhikov Dimitar BUL 2 2+0
## 2079 92 78 Koiv Kauri EST 3 2+1
## 2080 93 99 Toivanen Ahti FIN 3 1+2
## 2081 94 57 Gow Scott CAN 4 2+2
## 2082 95 103 Plywaczyk Krzysztof POL 2 1+1
## 2083 96 90 Montello Giuseppe ITA 3 2+1
## 2084 97 104 Nagai Junji JPN 1 0+1
## 2085 98 96 Kaukenas Tomas LTU 4 1+3
## 2086 99 84 Bocharnikov Sergey BLR 4 2+2
## 2087 100 73 Orpana Sami FIN 2 0+2
## 2088 101 58 Deksnis Ingus LAT 2 1+1
## 2089 102 54 Tachizaki Mikito JPN 1 1+0
## 2090 103 92 Lusa Daumants LAT 2 2+0
## 2091 104 98 Laponder Marcel GBR 2 0+2
## 2092 105 56 Kim Jongmin KOR 3 1+2
## 2093 106 65 Dixon Scott GBR 2 2+0
## 2094 1 26 Windisch Dominik ITA 4 1+0+2+1
## 2095 2 8 Doll Benedikt GER 4 2+1+0+1
## 2096 3 6 Fillon Maillet Quentin FRA 3 1+0+1+1
## 2097 4 9 Landertinger Dominik AUT 3 1+1+0+1
## 2098 5 25 Rastorgujevs Andrejs LAT 3 1+0+1+1
## 2099 6 1 Fourcade Martin FRA 6 2+0+3+1
## 2100 7 20 Burke Tim USA 3 1+0+1+1
## 2101 8 10 Peiffer Arnd GER 4 1+1+1+1
## 2102 9 11 Moravec Ondrej CZE 2 1+1+0+0
## 2103 10 29 Kazar Matej SVK 1 0+0+1+0
## 2104 11 18 Beatrix Jean Guillaume FRA 4 3+0+1+0
## 2105 12 28 Semenov Sergii UKR 4 2+0+0+2
## 2106 13 30 Pryma Artem UKR 3 0+0+2+1
## 2107 14 5 Eder Simon AUT 4 0+0+3+1
## 2108 15 4 Garanichev Evgeniy RUS 6 2+0+2+2
## 2109 16 14 Smith Nathan CAN 3 1+0+1+1
## 2110 17 2 Shipulin Anton RUS 6 1+1+2+2
## 2111 18 12 Fourcade Simon FRA 6 2+3+0+1
## 2112 19 13 Desthieux Simon FRA 3 0+1+2+0
## 2113 20 16 Bailey Lowell USA 5 2+0+2+1
## 2114 21 3 Schempp Simon GER 8 3+2+1+2
## 2115 22 21 Slepov Alexey RUS 5 2+2+1+0
## 2116 23 23 Grossegger Sven AUT 4 1+0+2+1
## 2117 24 27 Os Alexander NOR 4 2+1+0+1
## 2118 25 19 Krcmar Michal CZE 7 2+0+3+2
## 2119 26 17 Eberhard Julian AUT 7 1+3+2+1
## 2120 27 24 Malyshko Dmitry RUS 6 3+2+1+0
## 2121 28 15 Lesser Erik GER 7 1+2+2+2
## 2122 29 7 Tsvetkov Maxim RUS 5 1+3+1+0
## 2123 30 22 Slesingr Michal CZE 8 2+3+1+2
## 2124 1 6 Fourcade Martin FRA 0 0+0
## 2125 2 7 Shipulin Anton RUS 0 0+0
## 2126 3 4 Schempp Simon GER 0 0+0
## 2127 4 36 Eberhard Julian AUT 2 1+1
## 2128 5 14 Landertinger Dominik AUT 1 0+1
## 2129 6 1 Eder Simon AUT 0 0+0
## 2130 7 27 Fourcade Simon FRA 0 0+0
## 2131 8 29 Windisch Dominik ITA 1 1+0
## 2132 9 28 Os Alexander NOR 0 0+0
## 2133 10 2 Garanichev Evgeniy RUS 1 0+1
## 2134 11 39 Peiffer Arnd GER 0 0+0
## 2135 12 44 Lesser Erik GER 1 0+1
## 2136 13 9 Semenov Sergii UKR 1 1+0
## 2137 14 5 Slesingr Michal CZE 1 0+1
## 2138 15 8 Kazar Matej SVK 1 0+1
## 2139 16 15 Rastorgujevs Andrejs LAT 1 0+1
## 2140 17 48 Pryma Artem UKR 1 1+0
## 2141 18 17 Hofer Lukas ITA 1 0+1
## 2142 19 60 Varabei Maksim BLR 0 0+0
## 2143 20 13 Tsvetkov Maxim RUS 0 0+0
## 2144 21 18 Darozhka Aliaksandr BLR 2 0+2
## 2145 22 43 Volkov Alexey RUS 0 0+0
## 2146 23 20 Burke Tim USA 2 0+2
## 2147 24 38 Bailey Lowell USA 2 0+2
## 2148 25 31 Davies Macx CAN 0 0+0
## 2149 26 49 Nordgren Leif USA 1 1+0
## 2150 27 41 Grossegger Sven AUT 1 0+1
## 2151 28 10 Doll Benedikt GER 3 2+1
## 2152 29 59 Abasheu Dzmitry BLR 1 0+1
## 2153 30 30 Zhyrnyi Oleksandr UKR 1 1+0
## 2154 31 22 Smith Nathan CAN 1 1+0
## 2155 32 25 Kilchytskyy Vitaliy UKR 1 1+0
## 2156 33 52 Dolder Mario SUI 2 1+1
## 2157 34 66 Gow Scott CAN 1 1+0
## 2158 35 74 Bormolini Thomas ITA 1 0+1
## 2159 36 45 Christiansen Vetle Sjaastad NOR 1 0+1
## 2160 37 50 Krcmar Michal CZE 1 0+1
## 2161 38 79 Waeger Lorenz AUT 1 0+1
## 2162 39 63 Beatrix Jean Guillaume FRA 3 1+2
## 2163 40 16 Green Brendan CAN 1 0+1
## 2164 41 34 Malyshko Dmitry RUS 3 1+2
## 2165 42 73 Bogetveit Haavard Gutuboe NOR 1 0+1
## 2166 43 23 Desthieux Simon FRA 2 1+1
## 2167 44 24 Birkeland Lars Helge NOR 0 0+0
## 2168 45 21 Fillon Maillet Quentin FRA 4 2+2
## 2169 46 75 Slepov Alexey RUS 4 1+3
## 2170 47 26 Wiestner Serafin SUI 3 2+1
## 2171 48 89 Boehm Daniel GER 2 1+1
## 2172 49 84 Krupcik Tomas CZE 1 0+1
## 2173 50 3 L'Abee-Lund Henrik NOR 2 0+2
## 2174 51 32 Moravec Ondrej CZE 1 0+1
## 2175 52 42 Faur Remus ROU 1 0+1
## 2176 53 70 Kryuko Viktar BLR 2 1+1
## 2177 54 11 Weger Benjamin SUI 1 0+1
## 2178 55 67 Guzik Grzegorz POL 2 2+0
## 2179 56 12 Bauer Klemen SLO 3 1+2
## 2180 57 64 De Lorenzi Christian ITA 1 0+1
## 2181 58 62 Armgren Ted SWE 2 0+2
## 2182 59 35 Stenersen Torstein SWE 0 0+0
## 2183 60 88 Tachizaki Mikito JPN 1 1+0
## 2184 61 68 Gow Christian CAN 1 0+1
## 2185 DSQ 87 Tyshchenko Artem UKR 0 0+0
## 2186 62 54 Trsan Rok SLO 3 2+1
## 2187 63 33 Matiasko Miroslav SVK 2 0+2
## 2188 64 86 Pantov Anton KAZ 2 2+0
## 2189 65 61 Ermits Kalev EST 2 2+0
## 2190 66 47 Jaeger Martin SUI 5 1+4
## 2191 67 37 Braun Maxim KAZ 1 1+0
## 2192 68 83 Arwidson Tobias SWE 2 1+1
## 2193 69 78 Dovzan Miha SLO 1 1+0
## 2194 70 53 Gronman Tuomas FIN 2 0+2
## 2195 71 69 Szczurek Lukasz POL 1 0+1
## 2196 72 40 Podkorytov Vassiliy KAZ 2 1+1
## 2197 73 65 Strolia Vytautas LTU 3 2+1
## 2198 74 56 Nagai Junji JPN 2 0+2
## 2199 75 55 Puchianu Cornel ROU 5 3+2
## 2200 76 57 Sima Michal SVK 3 2+1
## 2201 77 72 Kubaliak Michal SVK 3 1+2
## 2202 78 76 Pop Gheorghe ROU 2 0+2
## 2203 79 58 Toivanen Ahti FIN 4 2+2
## 2204 80 77 Treier Jan EST 2 1+1
## 2205 81 85 Suslavicius Rokas LTU 2 1+1
## 2206 82 19 Zahkna Rene EST 3 1+2
## 2207 83 81 Hakala Matti FIN 1 1+0
## 2208 84 80 Durtschi Max USA 5 2+3
## 2209 85 46 Laponder Marcel GBR 2 2+0
## 2210 86 51 Kim Jongmin KOR 3 1+2
## 2211 87 82 Dixon Scott GBR 5 3+2
## 2212 DNS 71 Finello Jeremy SUI NA
## 2213 1 2 Fourcade Martin FRA 2 0+2+0+0
## 2214 2 1 Schempp Simon GER 1 0+0+1+0
## 2215 3 4 Shipulin Anton RUS 2 0+0+2+0
## 2216 4 3 Boe Tarjei NOR 2 0+1+0+1
## 2217 5 13 Landertinger Dominik AUT 1 0+0+1+0
## 2218 6 16 Bjoerndalen Ole Einar NOR 2 0+1+0+1
## 2219 7 10 Svendsen Emil Hegle NOR 2 0+0+1+1
## 2220 8 19 Fillon Maillet Quentin FRA 1 1+0+0+0
## 2221 9 21 Birnbacher Andreas GER 0 0+0+0+0
## 2222 10 22 Fak Jakov SLO 1 0+0+0+1
## 2223 11 29 Tsvetkov Maxim RUS 0 0+0+0+0
## 2224 12 11 Eder Simon AUT 3 1+0+0+2
## 2225 13 12 Bailey Lowell USA 1 0+0+1+0
## 2226 14 6 Garanichev Evgeniy RUS 3 0+1+1+1
## 2227 15 20 Semenov Sergii UKR 2 1+0+1+0
## 2228 16 5 Malyshko Dmitry RUS 3 0+1+1+1
## 2229 17 15 Lindstroem Fredrik SWE 3 0+2+0+1
## 2230 18 18 Smith Nathan CAN 4 2+0+0+2
## 2231 19 8 Doll Benedikt GER 4 1+0+1+2
## 2232 20 24 Moravec Ondrej CZE 2 2+0+0+0
## 2233 21 23 Hofer Lukas ITA 1 0+0+1+0
## 2234 22 9 Desthieux Simon FRA 3 1+0+2+0
## 2235 23 14 Boe Johannes Thingnes NOR 5 0+1+2+2
## 2236 24 40 Weger Benjamin SUI 2 1+1+0+0
## 2237 25 43 Lesser Erik GER 1 0+1+0+0
## 2238 26 36 Rastorgujevs Andrejs LAT 1 0+0+0+1
## 2239 27 30 Burke Tim USA 3 0+0+1+2
## 2240 28 27 Beatrix Jean Guillaume FRA 4 0+0+4+0
## 2241 29 38 Slepov Alexey RUS 4 1+1+1+1
## 2242 30 7 Eberhard Julian AUT 8 1+1+2+4
## 2243 31 39 Grossegger Sven AUT 4 0+1+1+2
## 2244 32 32 Bauer Klemen SLO 5 0+0+3+2
## 2245 33 28 De Lorenzi Christian ITA 2 1+1+0+0
## 2246 34 35 Green Brendan CAN 4 2+0+2+0
## 2247 35 25 Doherty Sean USA 6 2+1+1+2
## 2248 36 37 Otcenas Martin SVK 4 0+3+1+0
## 2249 37 17 Anev Krasimir BUL 6 1+1+2+2
## 2250 38 56 Pryma Artem UKR 3 1+0+1+1
## 2251 39 59 Gow Christian CAN 2 1+1+0+0
## 2252 40 45 Soukup Jaroslav CZE 4 0+0+3+1
## 2253 41 34 Lapshin Timofei RUS 6 1+2+2+1
## 2254 42 49 Faur Remus ROU 1 0+0+1+0
## 2255 43 42 Windisch Dominik ITA 6 0+2+2+2
## 2256 44 26 Pidruchnyi Dmytro UKR 6 0+3+1+2
## 2257 45 33 Gow Scott CAN 6 2+3+1+0
## 2258 46 54 Ermits Kalev EST 4 2+2+0+0
## 2259 47 50 Mesotitsch Daniel AUT 4 2+0+1+1
## 2260 48 47 Dyuzhev Dmitriy BLR 5 1+1+1+2
## 2261 49 58 Bischl Matthias GER 4 1+0+1+2
## 2262 50 41 Jaeger Martin SUI 6 2+1+2+1
## 2263 51 52 Buta George ROU 4 2+1+0+1
## 2264 52 55 Nordgren Leif USA 5 3+0+1+1
## 2265 53 31 Kazar Matej SVK 7 2+3+1+1
## 2266 54 57 Koiv Kauri EST 4 0+0+1+3
## 2267 55 46 Boehm Daniel GER 4 1+0+2+1
## 2268 56 53 Braun Maxim KAZ 6 1+1+2+2
## 2269 57 60 Armgren Ted SWE 6 3+1+1+1
## 2270 58 51 Janik Mateusz POL 7 0+3+3+1
## 2271 59 44 Puchianu Cornel ROU 11 4+1+3+3
## 2272 DNS 48 Birkeland Lars Helge NOR NA
## 2273 1 4 Schempp Simon GER 0 0+0
## 2274 2 22 Fourcade Martin FRA 1 1+0
## 2275 3 101 Boe Tarjei NOR 0 0+0
## 2276 4 23 Shipulin Anton RUS 1 1+0
## 2277 5 34 Malyshko Dmitry RUS 0 0+0
## 2278 6 14 Garanichev Evgeniy RUS 0 0+0
## 2279 7 65 Eberhard Julian AUT 1 0+1
## 2280 8 46 Doll Benedikt GER 1 0+1
## 2281 9 28 Desthieux Simon FRA 0 0+0
## 2282 10 3 Svendsen Emil Hegle NOR 1 1+0
## 2283 11 21 Eder Simon AUT 2 1+1
## 2284 12 48 Bailey Lowell USA 0 0+0
## 2285 13 39 Landertinger Dominik AUT 1 0+1
## 2286 14 12 Boe Johannes Thingnes NOR 1 0+1
## 2287 15 32 Lindstroem Fredrik SWE 0 0+0
## 2288 16 10 Bjoerndalen Ole Einar NOR 1 0+1
## 2289 17 36 Anev Krasimir BUL 0 0+0
## 2290 18 15 Smith Nathan CAN 1 0+1
## 2291 19 33 Fillon Maillet Quentin FRA 1 1+0
## 2292 20 7 Semenov Sergii UKR 1 1+0
## 2293 21 19 Birnbacher Andreas GER 1 1+0
## 2294 22 52 Fak Jakov SLO 2 1+1
## 2295 23 78 Hofer Lukas ITA 1 0+1
## 2296 24 35 Moravec Ondrej CZE 1 1+0
## 2297 25 74 Doherty Sean USA 2 1+1
## 2298 26 9 Pidruchnyi Dmytro UKR 2 0+2
## 2299 27 69 Beatrix Jean Guillaume FRA 2 0+2
## 2300 28 38 De Lorenzi Christian ITA 1 0+1
## 2301 29 55 Tsvetkov Maxim RUS 1 1+0
## 2302 30 2 Burke Tim USA 3 1+2
## 2303 31 44 Kazar Matej SVK 0 0+0
## 2304 32 27 Bauer Klemen SLO 2 0+2
## 2305 33 73 Gow Scott CAN 0 0+0
## 2306 34 97 Lapshin Timofei RUS 2 1+1
## 2307 35 31 Green Brendan CAN 2 1+1
## 2308 36 11 Rastorgujevs Andrejs LAT 2 0+2
## 2309 37 49 Otcenas Martin SVK 2 0+2
## 2310 38 42 Slepov Alexey RUS 2 2+0
## 2311 39 5 Grossegger Sven AUT 1 0+1
## 2312 40 17 Weger Benjamin SUI 3 1+2
## 2313 41 93 Jaeger Martin SUI 2 0+2
## 2314 42 1 Windisch Dominik ITA 3 2+1
## 2315 43 95 Lesser Erik GER 2 0+2
## 2316 44 68 Puchianu Cornel ROU 2 1+1
## 2317 45 92 Soukup Jaroslav CZE 2 0+2
## 2318 46 41 Boehm Daniel GER 1 0+1
## 2319 47 20 Dyuzhev Dmitriy BLR 1 0+1
## 2320 48 96 Birkeland Lars Helge NOR 1 1+0
## 2321 49 89 Faur Remus ROU 1 0+1
## 2322 50 102 Mesotitsch Daniel AUT 2 1+1
## 2323 51 106 Janik Mateusz POL 1 1+0
## 2324 52 47 Buta George ROU 1 0+1
## 2325 53 43 Braun Maxim KAZ 0 0+0
## 2326 54 91 Ermits Kalev EST 2 1+1
## 2327 55 105 Nordgren Leif USA 2 0+2
## 2328 56 30 Pryma Artem UKR 3 2+1
## 2329 57 79 Koiv Kauri EST 1 1+0
## 2330 58 76 Bischl Matthias GER 3 1+2
## 2331 59 90 Gow Christian CAN 1 1+0
## 2332 60 61 Armgren Ted SWE 1 0+1
## 2333 61 53 Krupcik Tomas CZE 3 1+2
## 2334 62 70 Roesch Michael BEL 2 1+1
## 2335 63 56 Zhyrnyi Oleksandr UKR 3 2+1
## 2336 64 24 Kaukenas Tomas LTU 3 1+2
## 2337 65 18 Nelin Jesper SWE 2 1+1
## 2338 66 26 Fourcade Simon FRA 3 2+1
## 2339 67 62 Guzik Grzegorz POL 2 0+2
## 2340 68 54 Liadov Yuryi BLR 2 1+1
## 2341 69 57 Finello Jeremy SUI 2 1+1
## 2342 70 40 L'Abee-Lund Henrik NOR 3 0+3
## 2343 71 88 Siemakov Volodymyr UKR 1 0+1
## 2344 72 29 Slesingr Michal CZE 4 1+3
## 2345 73 107 Gerdzhikov Dimitar BUL 2 2+0
## 2346 74 71 Hiidensalo Olli FIN 1 0+1
## 2347 75 108 Guigonnat Antonin FRA 3 1+2
## 2348 76 6 Iliev Vladimir BUL 5 2+3
## 2349 77 37 Yaliotnau Raman BLR 4 1+3
## 2350 78 59 Tachizaki Mikito JPN 2 0+2
## 2351 79 94 Chepelin Vladimir BLR 3 1+2
## 2352 80 51 Lessing Roland EST 3 1+2
## 2353 81 67 Gronman Tuomas FIN 2 0+2
## 2354 82 98 Kobonoki Tsukasa JPN 2 1+1
## 2355 83 80 Dombrovski Karol LTU 4 1+3
## 2356 84 58 Sinapov Anton BUL 3 1+2
## 2357 85 45 Wiestner Serafin SUI 5 3+2
## 2358 86 104 Bormolini Thomas ITA 4 2+2
## 2359 87 16 Savitskiy Yan KAZ 4 3+1
## 2360 88 8 Hasilla Tomas SVK 3 0+3
## 2361 89 13 Krcmar Michal CZE 4 3+1
## 2362 90 66 Podkorytov Vassiliy KAZ 4 3+1
## 2363 91 99 Joller Ivan SUI 3 1+2
## 2364 92 85 Remmelg Martin EST 2 0+2
## 2365 93 25 Davies Macx CAN 4 1+3
## 2366 94 82 Dixon Scott GBR 1 0+1
## 2367 95 50 Laponder Marcel GBR 2 1+1
## 2368 96 86 Matiasko Miroslav SVK 4 2+2
## 2369 97 87 Strolia Vytautas LTU 3 1+2
## 2370 98 100 Oblak Lenart SLO 2 1+1
## 2371 99 81 Dovzan Miha SLO 4 1+3
## 2372 100 72 Szczurek Lukasz POL 3 2+1
## 2373 101 84 Hakala Matti FIN 2 1+1
## 2374 102 77 Slotins Roberts LAT 3 1+2
## 2375 103 64 Trsan Rok SLO 4 3+1
## 2376 104 83 Femling Peppe SWE 3 1+2
## 2377 105 75 Rastic Damir SRB 3 0+3
## 2378 106 103 Deksnis Ingus LAT 4 1+3
## 2379 107 63 Kim Jongmin KOR 5 4+1
## 2380 108 60 Morton Damon AUS 7 4+3
## 2381 1 2 Schempp Simon GER 3 1+1+0+1
## 2382 2 7 Boe Johannes Thingnes NOR 1 0+0+0+1
## 2383 3 5 Lesser Erik GER 2 0+0+1+1
## 2384 4 11 Weger Benjamin SUI 0 0+0+0+0
## 2385 5 8 Doll Benedikt GER 2 1+0+1+0
## 2386 6 6 Burke Tim USA 2 0+0+1+1
## 2387 7 15 Lindstroem Fredrik SWE 0 0+0+0+0
## 2388 8 4 Landertinger Dominik AUT 3 0+1+0+2
## 2389 9 3 Peiffer Arnd GER 4 1+1+0+2
## 2390 10 12 Slesingr Michal CZE 1 0+1+0+0
## 2391 11 38 Eder Simon AUT 1 1+0+0+0
## 2392 12 35 Boe Tarjei NOR 2 0+0+1+1
## 2393 13 9 Rastorgujevs Andrejs LAT 2 0+0+1+1
## 2394 14 29 Garanichev Evgeniy RUS 2 0+0+2+0
## 2395 15 14 Semenov Sergii UKR 2 0+1+1+0
## 2396 16 10 Windisch Dominik ITA 4 0+1+2+1
## 2397 17 39 Krcmar Michal CZE 2 0+1+1+0
## 2398 18 1 Eberhard Julian AUT 8 2+0+4+2
## 2399 19 13 Zhyrnyi Oleksandr UKR 2 0+0+1+1
## 2400 20 45 Shipulin Anton RUS 3 0+1+1+1
## 2401 21 17 Hofer Lukas ITA 4 1+0+3+0
## 2402 22 31 Bailey Lowell USA 1 0+0+1+0
## 2403 23 19 Desthieux Simon FRA 2 2+0+0+0
## 2404 24 34 Darozhka Aliaksandr BLR 3 0+1+1+1
## 2405 25 25 Moravec Ondrej CZE 3 0+1+1+1
## 2406 26 27 Soukup Jaroslav CZE 3 1+0+1+1
## 2407 27 23 Slepov Alexey RUS 4 1+2+1+0
## 2408 28 18 Kilchytskyy Vitaliy UKR 2 0+2+0+0
## 2409 29 32 Nelin Jesper SWE 4 0+1+1+2
## 2410 30 16 Sinapov Anton BUL 3 0+1+1+1
## 2411 31 24 Volkov Alexey RUS 3 1+0+1+1
## 2412 32 21 Doherty Sean USA 5 2+1+1+1
## 2413 33 55 Malyshko Dmitry RUS 3 1+2+0+0
## 2414 34 30 Siemakov Volodymyr UKR 4 1+0+2+1
## 2415 35 58 Eliseev Matvey RUS 1 1+0+0+0
## 2416 36 42 Green Brendan CAN 3 0+0+2+1
## 2417 37 46 Anev Krasimir BUL 3 0+1+0+2
## 2418 38 26 Dyuzhev Dmitriy BLR 6 0+3+1+2
## 2419 39 48 Stenersen Torstein SWE 1 0+0+0+1
## 2420 40 56 Pashchenko Petr RUS 3 1+1+1+0
## 2421 41 37 Bischl Matthias GER 4 1+2+0+1
## 2422 42 51 Tkalenko Ruslan UKR 1 0+0+1+0
## 2423 43 43 Iliev Vladimir BUL 6 2+2+1+1
## 2424 44 44 Tsvetkov Maxim RUS 2 1+1+0+0
## 2425 45 36 Yaliotnau Raman BLR 6 2+1+1+2
## 2426 46 33 Graf Florian GER 6 2+2+1+1
## 2427 47 22 Chepelin Vladimir BLR 8 2+1+2+3
## 2428 48 60 Beatrix Jean Guillaume FRA 3 0+1+2+0
## 2429 49 54 Hiidensalo Olli FIN 3 2+0+1+0
## 2430 50 49 Waeger Lorenz AUT 4 2+0+2+0
## 2431 51 47 Pinter Friedrich AUT 7 1+1+3+2
## 2432 52 52 Dombrovski Karol LTU 5 0+1+3+1
## 2433 53 57 Zahkna Rene EST 6 2+1+1+2
## 2434 DNF 20 Fillon Maillet Quentin FRA NA 3
## 2435 DNF 50 Hasilla Tomas SVK NA 0+0+1
## 2436 DNS 28 Savitskiy Yan KAZ NA
## 2437 DNS 40 Fourcade Martin FRA NA
## 2438 DNS 41 Bjoerndalen Ole Einar NOR NA
## 2439 DNS 53 Wiestner Serafin SUI NA
## 2440 DNS 59 Pantov Anton KAZ NA
## 2441 1 40 Eberhard Julian AUT 0 0+0
## 2442 2 21 Schempp Simon GER 0 0+0
## 2443 3 13 Peiffer Arnd GER 0 0+0
## 2444 4 3 Landertinger Dominik AUT 0 0+0
## 2445 5 34 Lesser Erik GER 0 0+0
## 2446 6 4 Burke Tim USA 1 0+1
## 2447 7 25 Boe Johannes Thingnes NOR 1 1+0
## 2448 8 7 Doll Benedikt GER 1 0+1
## 2449 9 9 Rastorgujevs Andrejs LAT 1 0+1
## 2450 10 35 Windisch Dominik ITA 1 0+1
## 2451 11 44 Weger Benjamin SUI 1 0+1
## 2452 12 43 Slesingr Michal CZE 1 1+0
## 2453 13 45 Zhyrnyi Oleksandr UKR 0 0+0
## 2454 14 8 Semenov Sergii UKR 1 0+1
## 2455 14 22 Lindstroem Fredrik SWE 2 0+2
## 2456 16 59 Sinapov Anton BUL 0 0+0
## 2457 17 26 Hofer Lukas ITA 2 1+1
## 2458 18 14 Kilchytskyy Vitaliy UKR 0 0+0
## 2459 19 38 Desthieux Simon FRA 1 0+1
## 2460 20 30 Fillon Maillet Quentin FRA 0 0+0
## 2461 21 54 Doherty Sean USA 2 2+0
## 2462 22 46 Chepelin Vladimir BLR 2 1+1
## 2463 23 2 Slepov Alexey RUS 3 1+2
## 2464 24 18 Volkov Alexey RUS 1 0+1
## 2465 25 24 Moravec Ondrej CZE 2 1+1
## 2466 26 75 Dyuzhev Dmitriy BLR 2 0+2
## 2467 27 57 Soukup Jaroslav CZE 1 0+1
## 2468 28 15 Savitskiy Yan KAZ 1 0+1
## 2469 29 5 Garanichev Evgeniy RUS 2 2+0
## 2470 30 87 Siemakov Volodymyr UKR 1 1+0
## 2471 31 36 Bailey Lowell USA 2 1+1
## 2472 32 58 Nelin Jesper SWE 1 1+0
## 2473 33 66 Graf Florian GER 1 1+0
## 2474 34 1 Darozhka Aliaksandr BLR 2 0+2
## 2475 35 17 Boe Tarjei NOR 3 1+2
## 2476 36 72 Yaliotnau Raman BLR 2 0+2
## 2477 37 74 Bischl Matthias GER 1 0+1
## 2478 38 11 Eder Simon AUT 3 2+1
## 2479 39 27 Krcmar Michal CZE 2 1+1
## 2480 40 42 Fourcade Martin FRA 4 3+1
## 2481 41 19 Bjoerndalen Ole Einar NOR 2 1+1
## 2482 42 23 Green Brendan CAN 2 0+2
## 2483 43 28 Iliev Vladimir BUL 3 2+1
## 2484 44 31 Tsvetkov Maxim RUS 2 0+2
## 2485 45 29 Shipulin Anton RUS 1 0+1
## 2486 46 16 Anev Krasimir BUL 2 0+2
## 2487 47 76 Pinter Friedrich AUT 2 0+2
## 2488 48 32 Stenersen Torstein SWE 2 0+2
## 2489 49 63 Waeger Lorenz AUT 1 1+0
## 2490 50 51 Hasilla Tomas SVK 0 0+0
## 2491 51 48 Tkalenko Ruslan UKR 2 0+2
## 2492 52 49 Dombrovski Karol LTU 0 0+0
## 2493 53 6 Wiestner Serafin SUI 3 2+1
## 2494 54 50 Hiidensalo Olli FIN 2 0+2
## 2495 55 41 Malyshko Dmitry RUS 5 3+2
## 2496 56 78 Pashchenko Petr RUS 3 1+2
## 2497 57 61 Zahkna Rene EST 2 2+0
## 2498 58 60 Eliseev Matvey RUS 2 2+0
## 2499 59 82 Pantov Anton KAZ 0 0+0
## 2500 60 62 Beatrix Jean Guillaume FRA 3 1+2
## 2501 61 77 Nagai Junji JPN 0 0+0
## 2502 62 68 Lee Inbok KOR 1 0+1
## 2503 63 73 Gronman Tuomas FIN 2 1+1
## 2504 64 79 Buta George ROU 1 1+0
## 2505 65 52 Dolder Mario SUI 3 0+3
## 2506 66 37 Otcenas Martin SVK 2 1+1
## 2507 67 67 Puchianu Cornel ROU 3 1+2
## 2508 68 53 Faur Remus ROU 2 1+1
## 2509 69 10 Kazar Matej SVK 4 3+1
## 2510 70 20 Fourcade Simon FRA 5 3+2
## 2511 71 81 Slotins Roberts LAT 1 0+1
## 2512 72 85 Vaclavik Adam CZE 5 2+3
## 2513 73 33 Davies Macx CAN 3 1+2
## 2514 74 12 Kaukenas Tomas LTU 5 2+3
## 2515 75 47 Koiv Kauri EST 5 2+3
## 2516 76 65 Gow Scott CAN 5 2+3
## 2517 77 70 Patrijuks Aleksandrs LAT 4 2+2
## 2518 78 83 Gerdzhikov Dimitar BUL 3 2+1
## 2519 79 71 Dovzan Miha SLO 3 2+1
## 2520 80 69 Tachizaki Mikito JPN 3 1+2
## 2521 81 55 Braun Maxim KAZ 3 2+1
## 2522 82 80 Treier Jan EST 1 0+1
## 2523 83 84 Strolia Vytautas LTU 5 2+3
## 2524 84 64 Laponder Marcel GBR 3 3+0
## 2525 DNS 39 Bjoentegaard Erlend NOR NA
## 2526 DNS 56 Birkeland Lars Helge NOR NA
## 2527 DNS 86 Smith Nathan CAN NA
## 2528 1 81 Bjoerndalen Ole Einar NOR 0 0+0+0+0
## 2529 2 30 Schempp Simon GER 1 0+0+1+0
## 2530 3 58 Volkov Alexey RUS 0 0+0+0+0
## 2531 4 22 Svendsen Emil Hegle NOR 2 0+0+2+0
## 2532 4 23 Fillon Maillet Quentin FRA 2 1+0+1+0
## 2533 6 64 Fourcade Simon FRA 2 1+0+0+1
## 2534 7 24 Eder Simon AUT 2 0+1+0+1
## 2535 8 39 Landertinger Dominik AUT 2 0+0+0+2
## 2536 9 100 Birkeland Lars Helge NOR 2 0+1+1+0
## 2537 10 3 Semenov Sergii UKR 2 0+0+2+0
## 2538 11 15 L'Abee-Lund Henrik NOR 2 0+1+0+1
## 2539 12 102 Birnbacher Andreas GER 1 0+1+0+0
## 2540 13 94 Mesotitsch Daniel AUT 1 0+0+0+1
## 2541 14 41 Lindstroem Fredrik SWE 2 0+2+0+0
## 2542 15 87 Desthieux Simon FRA 3 0+1+2+0
## 2543 16 21 Shipulin Anton RUS 3 1+1+1+0
## 2544 17 88 Doherty Sean USA 2 1+0+1+0
## 2545 18 98 Babikov Anton RUS 2 0+1+1+0
## 2546 19 33 Boe Johannes Thingnes NOR 3 0+2+0+1
## 2547 20 44 Pryma Artem UKR 2 1+0+0+1
## 2548 21 67 Fourcade Martin FRA 5 1+1+0+3
## 2549 22 35 Boe Tarjei NOR 4 0+1+2+1
## 2550 23 18 Chepelin Vladimir BLR 2 0+2+0+0
## 2551 24 26 Bailey Lowell USA 2 0+0+0+2
## 2552 25 79 Dyuzhev Dmitriy BLR 3 1+0+1+1
## 2553 26 32 Tsvetkov Maxim RUS 3 1+1+0+1
## 2554 27 28 Smith Nathan CAN 4 1+1+1+1
## 2555 28 31 Soukup Jaroslav CZE 3 1+1+0+1
## 2556 29 29 Savitskiy Yan KAZ 2 0+1+1+0
## 2557 30 76 Beatrix Jean Guillaume FRA 4 0+2+0+2
## 2558 31 14 Garanichev Evgeniy RUS 4 0+1+1+2
## 2559 32 38 Malyshko Dmitry RUS 4 2+2+0+0
## 2560 33 55 Buta George ROU 2 0+2+0+0
## 2561 34 42 Windisch Dominik ITA 4 0+2+0+2
## 2562 35 8 Moravec Ondrej CZE 3 1+0+1+1
## 2563 36 37 Bauer Klemen SLO 4 1+2+1+0
## 2564 37 66 Burke Tim USA 3 1+0+2+0
## 2565 38 34 Wiestner Serafin SUI 3 0+2+0+1
## 2566 39 48 Lesser Erik GER 4 1+1+0+2
## 2567 40 25 Weger Benjamin SUI 3 1+1+1+0
## 2568 41 50 Kaukenas Tomas LTU 3 1+1+0+1
## 2569 42 73 De Lorenzi Christian ITA 3 1+1+0+1
## 2570 43 19 Grossegger Sven AUT 2 0+1+1+0
## 2571 44 80 Dombrovski Karol LTU 2 0+1+0+1
## 2572 45 9 Femling Peppe SWE 3 1+1+0+1
## 2573 46 2 Doll Benedikt GER 6 1+1+1+3
## 2574 47 101 Dovzan Miha SLO 1 0+1+0+0
## 2575 48 46 Lessing Roland EST 2 0+0+1+1
## 2576 49 56 Armgren Ted SWE 4 2+1+1+0
## 2577 50 40 Zhyrnyi Oleksandr UKR 2 1+0+0+1
## 2578 51 36 Peiffer Arnd GER 4 1+1+1+1
## 2579 52 82 Finello Jeremy SUI 4 1+0+1+2
## 2580 53 20 Slesingr Michal CZE 5 1+2+2+0
## 2581 54 99 Arwidson Tobias SWE 3 0+1+1+1
## 2582 55 70 Gerdzhikov Dimitar BUL 3 1+1+1+0
## 2583 56 89 Remmelg Martin EST 2 1+0+0+1
## 2584 57 52 Eberhard Julian AUT 6 3+0+1+2
## 2585 58 57 Krupcik Tomas CZE 3 1+1+0+1
## 2586 59 86 Matiasko Miroslav SVK 3 0+0+1+2
## 2587 60 11 Otcenas Martin SVK 5 1+1+1+2
## 2588 61 45 Kazar Matej SVK 4 1+1+0+2
## 2589 62 47 Gow Christian CAN 3 0+0+2+1
## 2590 63 6 Guigonnat Antonin FRA 5 1+1+0+3
## 2591 64 91 Partalov Dimitar BUL 2 0+2+0+0
## 2592 65 59 Guzik Grzegorz POL 3 1+0+0+2
## 2593 66 10 Iliev Vladimir BUL 7 1+3+1+2
## 2594 67 61 Trsan Rok SLO 3 0+2+1+0
## 2595 68 27 Liadov Yuryi BLR 4 1+1+2+0
## 2596 69 60 Szczurek Lukasz POL 3 1+1+1+0
## 2597 70 1 Krcmar Michal CZE 6 1+1+2+2
## 2598 71 104 Strolia Vytautas LTU 3 1+0+1+1
## 2599 72 17 Joller Ivan SUI 4 1+1+0+2
## 2600 73 63 Oblak Lenart SLO 3 1+1+0+1
## 2601 74 16 Bormolini Thomas ITA 5 1+2+1+1
## 2602 75 90 Siemakov Volodymyr UKR 5 2+1+1+1
## 2603 76 51 Boehm Daniel GER 6 1+1+2+2
## 2604 77 13 Green Brendan CAN 6 1+2+1+2
## 2605 78 4 Fak Jakov SLO 7 3+1+0+3
## 2606 79 53 Pantov Anton KAZ 4 0+0+1+3
## 2607 80 84 Penar Rafal POL 4 1+0+1+2
## 2608 81 12 Ermits Kalev EST 6 2+3+0+1
## 2609 82 77 Rusinov Dmytro UKR 5 2+2+0+1
## 2610 83 74 Lusa Daumants LAT 2 0+1+0+1
## 2611 84 69 Hasilla Tomas SVK 6 1+3+0+2
## 2612 85 85 Davies Macx CAN 5 0+1+2+2
## 2613 86 7 Gow Scott CAN 7 1+3+1+2
## 2614 87 96 Bocharnikov Sergey BLR 6 1+1+2+2
## 2615 88 83 Hiidensalo Olli FIN 6 2+2+2+0
## 2616 89 43 Puchianu Cornel ROU 8 0+1+4+3
## 2617 90 54 Koiv Kauri EST 6 1+2+0+3
## 2618 91 62 Rastic Damir SRB 4 1+1+1+1
## 2619 92 93 Podkorytov Vassiliy KAZ 8 4+1+2+1
## 2620 93 49 Hakala Matti FIN 6 0+2+2+2
## 2621 94 103 Kobonoki Tsukasa JPN 7 2+2+1+2
## 2622 95 71 Kletcherov Michail BUL 8 3+1+0+4
## 2623 96 92 Serban Denis ROU 8 3+1+2+2
## 2624 97 72 Dixon Scott GBR 7 2+2+3+0
## 2625 98 106 Laponder Marcel GBR 6 1+1+2+2
## 2626 99 65 Tachizaki Mikito JPN 6 0+2+2+2
## 2627 100 68 Langer Thorsten BEL 3 0+1+1+1
## 2628 101 75 Kim Yonggyu KOR 7 1+3+1+2
## 2629 102 97 Slotins Roberts LAT 9 1+1+3+4
## 2630 103 78 Puzulis Rolands LAT 6 1+1+2+2
## 2631 104 5 Nordgren Leif USA 13 5+2+5+1
## 2632 DNS 95 Jaeger Martin SUI NA
## 2633 DNS 105 Gronman Tuomas FIN NA
## 2634 1 1 Fourcade Martin FRA 3 1+0+1+1
## 2635 2 2 Peiffer Arnd GER 1 0+1+0+0
## 2636 3 4 Fillon Maillet Quentin FRA 2 0+0+1+1
## 2637 4 29 Boe Tarjei NOR 2 1+0+1+0
## 2638 5 7 Svendsen Emil Hegle NOR 3 0+2+0+1
## 2639 6 5 Doll Benedikt GER 3 0+0+2+1
## 2640 7 34 Malyshko Dmitry RUS 1 0+0+1+0
## 2641 8 27 Garanichev Evgeniy RUS 0 0+0+0+0
## 2642 9 8 Pidruchnyi Dmytro UKR 2 0+1+1+0
## 2643 10 9 Smith Nathan CAN 3 1+1+0+1
## 2644 11 3 Bjoerndalen Ole Einar NOR 5 0+3+2+0
## 2645 12 19 Eder Simon AUT 2 0+1+0+1
## 2646 13 18 Slepov Alexey RUS 3 1+1+0+1
## 2647 14 49 Fourcade Simon FRA 0 0+0+0+0
## 2648 15 32 Shipulin Anton RUS 2 1+0+0+1
## 2649 16 6 Boe Johannes Thingnes NOR 7 3+2+2+0
## 2650 17 21 Iliev Vladimir BUL 3 2+0+1+0
## 2651 18 47 Birnbacher Andreas GER 1 0+1+0+0
## 2652 19 40 Moravec Ondrej CZE 1 0+0+1+0
## 2653 20 24 Slesingr Michal CZE 3 0+1+0+2
## 2654 21 22 Desthieux Simon FRA 2 0+1+0+1
## 2655 22 39 Hasilla Tomas SVK 1 0+0+1+0
## 2656 23 11 Grossegger Sven AUT 3 0+2+0+1
## 2657 24 13 Krcmar Michal CZE 3 0+0+2+1
## 2658 25 58 Birkeland Lars Helge NOR 1 1+0+0+0
## 2659 26 20 Anev Krasimir BUL 2 1+0+0+1
## 2660 27 30 Lesser Erik GER 2 0+0+0+2
## 2661 28 31 Beatrix Jean Guillaume FRA 4 0+0+2+2
## 2662 29 42 Bauer Klemen SLO 2 0+0+1+1
## 2663 30 10 Davies Macx CAN 3 1+0+1+1
## 2664 31 44 Tsvetkov Maxim RUS 2 1+0+0+1
## 2665 32 14 Boehm Daniel GER 3 1+0+0+2
## 2666 33 35 Lapshin Timofei RUS 4 0+2+2+0
## 2667 34 41 De Lorenzi Christian ITA 1 0+1+0+0
## 2668 35 23 Kazar Matej SVK 3 1+1+0+1
## 2669 36 53 Rastorgujevs Andrejs LAT 2 0+0+1+1
## 2670 37 56 Lindstroem Fredrik SWE 2 0+0+0+2
## 2671 38 55 Green Brendan CAN 2 0+1+1+0
## 2672 39 45 Burke Tim USA 3 0+0+3+0
## 2673 40 26 Siemakov Volodymyr UKR 4 1+2+1+0
## 2674 41 57 Landertinger Dominik AUT 3 0+0+3+0
## 2675 42 38 Krupcik Tomas CZE 4 0+1+2+1
## 2676 43 17 Nelin Jesper SWE 6 0+1+2+3
## 2677 44 50 Pryma Artem UKR 2 0+0+2+0
## 2678 45 48 Eberhard Julian AUT 5 0+0+1+4
## 2679 46 25 Doherty Sean USA 7 1+2+2+2
## 2680 47 12 L'Abee-Lund Henrik NOR 6 1+1+2+2
## 2681 48 33 Braun Maxim KAZ 3 0+3+0+0
## 2682 49 37 Kaukenas Tomas LTU 6 0+1+2+3
## 2683 50 28 Otcenas Martin SVK 7 1+0+2+4
## 2684 51 60 Tachizaki Mikito JPN 2 1+0+1+0
## 2685 52 15 Yaliotnau Raman BLR 7 2+0+4+1
## 2686 53 59 Savitskiy Yan KAZ 3 1+1+1+0
## 2687 54 43 Fak Jakov SLO 9 3+3+2+1
## 2688 55 51 Puchianu Cornel ROU 6 2+1+2+1
## 2689 56 54 Soukup Jaroslav CZE 4 1+2+0+1
## 2690 57 52 Semenov Sergii UKR 5 0+2+3+0
## 2691 58 36 Mesotitsch Daniel AUT 6 2+2+1+1
## 2692 59 16 Weger Benjamin SUI 8 4+1+2+1
## 2693 60 46 Sinapov Anton BUL 7 2+0+2+3
## 2694 1 6 Fourcade Martin FRA 2 1+1
## 2695 2 66 Peiffer Arnd GER 1 0+1
## 2696 3 40 Bjoerndalen Ole Einar NOR 2 1+1
## 2697 4 45 Fillon Maillet Quentin FRA 2 1+1
## 2698 5 47 Doll Benedikt GER 3 0+3
## 2699 6 1 Boe Johannes Thingnes NOR 2 1+1
## 2700 7 14 Svendsen Emil Hegle NOR 2 0+2
## 2701 8 30 Pidruchnyi Dmytro UKR 2 0+2
## 2702 9 17 Smith Nathan CAN 2 1+1
## 2703 10 99 Davies Macx CAN 0 0+0
## 2704 11 5 Grossegger Sven AUT 2 0+2
## 2705 12 55 L'Abee-Lund Henrik NOR 3 1+2
## 2706 13 82 Krcmar Michal CZE 2 1+1
## 2707 14 105 Boehm Daniel GER 2 1+1
## 2708 15 86 Yaliotnau Raman BLR 2 0+2
## 2709 16 43 Weger Benjamin SUI 3 2+1
## 2710 16 87 Nelin Jesper SWE 2 1+1
## 2711 18 13 Slepov Alexey RUS 4 1+3
## 2712 19 27 Eder Simon AUT 3 1+2
## 2713 20 24 Anev Krasimir BUL 3 1+2
## 2714 21 9 Iliev Vladimir BUL 4 3+1
## 2715 21 22 Desthieux Simon FRA 4 1+3
## 2716 23 8 Kazar Matej SVK 2 1+1
## 2717 24 33 Slesingr Michal CZE 3 2+1
## 2718 25 88 Doherty Sean USA 3 1+2
## 2719 26 81 Siemakov Volodymyr UKR 2 0+2
## 2720 27 49 Garanichev Evgeniy RUS 1 0+1
## 2721 28 25 Otcenas Martin SVK 3 1+2
## 2722 29 20 Boe Tarjei NOR 5 1+4
## 2723 30 42 Lesser Erik GER 4 2+2
## 2724 31 78 Beatrix Jean Guillaume FRA 5 2+3
## 2725 32 46 Shipulin Anton RUS 3 2+1
## 2726 33 106 Braun Maxim KAZ 1 1+0
## 2727 34 74 Malyshko Dmitry RUS 5 2+3
## 2728 35 103 Lapshin Timofei RUS 4 1+3
## 2729 36 57 Mesotitsch Daniel AUT 3 1+2
## 2730 37 62 Kaukenas Tomas LTU 2 0+2
## 2731 38 97 Krupcik Tomas CZE 3 0+3
## 2732 39 84 Hasilla Tomas SVK 3 0+3
## 2733 40 52 Moravec Ondrej CZE 3 0+3
## 2734 41 4 De Lorenzi Christian ITA 3 1+2
## 2735 42 29 Bauer Klemen SLO 4 2+2
## 2736 43 48 Fak Jakov SLO 5 4+1
## 2737 44 36 Tsvetkov Maxim RUS 3 1+2
## 2738 45 63 Burke Tim USA 4 1+3
## 2739 46 61 Sinapov Anton BUL 2 0+2
## 2740 47 3 Birnbacher Andreas GER 5 3+2
## 2741 48 93 Eberhard Julian AUT 5 2+3
## 2742 49 10 Fourcade Simon FRA 6 2+4
## 2743 50 12 Pryma Artem UKR 4 3+1
## 2744 51 28 Puchianu Cornel ROU 3 1+2
## 2745 52 18 Semenov Sergii UKR 4 2+2
## 2746 53 11 Rastorgujevs Andrejs LAT 6 1+5
## 2747 54 35 Soukup Jaroslav CZE 4 2+2
## 2748 55 2 Green Brendan CAN 5 2+3
## 2749 56 38 Lindstroem Fredrik SWE 4 1+3
## 2750 57 32 Landertinger Dominik AUT 5 2+3
## 2751 58 83 Birkeland Lars Helge NOR 6 3+3
## 2752 59 44 Savitskiy Yan KAZ 3 1+2
## 2753 60 95 Tachizaki Mikito JPN 2 2+0
## 2754 61 19 Chepelin Vladimir BLR 5 2+3
## 2755 62 23 Liadov Yuryi BLR 3 0+3
## 2756 63 80 Hiidensalo Olli FIN 3 1+2
## 2757 64 15 Nordgren Leif USA 4 2+2
## 2758 65 70 Dyuzhev Dmitriy BLR 5 4+1
## 2759 66 39 Wiestner Serafin SUI 5 2+3
## 2760 67 34 Gow Scott CAN 5 3+2
## 2761 68 26 Bailey Lowell USA 6 1+5
## 2762 69 60 Armgren Ted SWE 5 3+2
## 2763 70 64 Gow Christian CAN 5 2+3
## 2764 71 77 Hofer Lukas ITA 4 0+4
## 2765 72 76 Matiasko Miroslav SVK 5 2+3
## 2766 73 37 Windisch Dominik ITA 7 2+5
## 2767 74 68 Trsan Rok SLO 5 2+3
## 2768 75 104 Jaeger Martin SUI 6 2+4
## 2769 76 96 Guigonnat Antonin FRA 7 3+4
## 2770 77 31 Schempp Simon GER 8 4+4
## 2771 78 79 Finello Jeremy SUI 6 3+3
## 2772 79 65 Oblak Lenart SLO 4 1+3
## 2773 80 21 Femling Peppe SWE 5 1+4
## 2774 81 98 Gronman Tuomas FIN 2 1+1
## 2775 82 73 Hakala Matti FIN 4 2+2
## 2776 83 50 Buta George ROU 5 1+4
## 2777 84 41 Koiv Kauri EST 4 1+3
## 2778 85 16 Ermits Kalev EST 6 2+4
## 2779 86 92 Faur Remus ROU 5 1+4
## 2780 87 58 Guzik Grzegorz POL 5 3+2
## 2781 88 94 Kilchytskyy Vitaliy UKR 6 2+4
## 2782 89 100 Slotins Roberts LAT 5 2+3
## 2783 90 89 Dovzan Miha SLO 5 2+3
## 2784 91 69 Kim Jongmin KOR 4 2+2
## 2785 92 102 Bormolini Thomas ITA 6 3+3
## 2786 93 91 Janik Mateusz POL 6 3+3
## 2787 94 51 Szczurek Lukasz POL 6 2+4
## 2788 94 75 Dombrovski Karol LTU 5 2+3
## 2789 96 72 Kobonoki Tsukasa JPN 5 3+2
## 2790 97 90 Laponder Marcel GBR 5 3+2
## 2791 98 53 Remmelg Martin EST 7 4+3
## 2792 99 101 Kletcherov Michail BUL 6 2+4
## 2793 100 59 Dixon Scott GBR 4 2+2
## 2794 101 56 Lusa Daumants LAT 5 2+3
## 2795 102 71 Pantov Anton KAZ 8 3+5
## 2796 103 85 Strolia Vytautas LTU 7 3+4
## 2797 DNF 54 Langer Thorsten BEL NA 3
## 2798 DNF 67 Rastic Damir SRB NA 2+4
## 2799 DNS 7 Joller Ivan SUI NA
## 2800 1 23 Fourcade Martin FRA 1 0+1+0+0
## 2801 2 10 Landertinger Dominik AUT 0 0+0+0+0
## 2802 3 18 Eder Simon AUT 0 0+0+0+0
## 2803 4 27 Boe Johannes Thingnes NOR 1 0+0+0+1
## 2804 5 17 Krcmar Michal CZE 0 0+0+0+0
## 2805 6 31 Fak Jakov SLO 1 0+0+1+0
## 2806 7 77 Lesser Erik GER 1 0+1+0+0
## 2807 8 49 Garanichev Evgeniy RUS 2 0+1+1+0
## 2808 9 36 Birnbacher Andreas GER 1 0+0+1+0
## 2809 10 11 Fourcade Simon FRA 2 1+0+0+1
## 2810 11 46 Savitskiy Yan KAZ 1 0+0+0+1
## 2811 12 54 Anev Krasimir BUL 1 0+1+0+0
## 2812 13 3 Doll Benedikt GER 3 0+1+1+1
## 2813 14 59 Shipulin Anton RUS 2 1+0+0+1
## 2814 15 73 Bailey Lowell USA 1 0+1+0+0
## 2815 16 39 Schempp Simon GER 2 1+0+1+0
## 2816 17 91 Bjoerndalen Ole Einar NOR 2 1+0+0+1
## 2817 18 47 Gow Scott CAN 2 0+0+0+2
## 2818 19 58 Fillon Maillet Quentin FRA 2 0+1+0+1
## 2819 20 32 Slesingr Michal CZE 3 1+1+0+1
## 2820 21 20 Iliev Vladimir BUL 3 0+1+0+2
## 2821 22 1 Boe Tarjei NOR 3 1+0+0+2
## 2822 23 95 Soukup Jaroslav CZE 2 1+0+0+1
## 2823 24 74 Koiv Kauri EST 1 0+0+1+0
## 2824 25 89 Kilchytskyy Vitaliy UKR 0 0+0+0+0
## 2825 26 90 Kletcherov Michail BUL 0 0+0+0+0
## 2826 27 4 Nordgren Leif USA 2 0+1+0+1
## 2827 28 60 Desthieux Simon FRA 2 1+0+0+1
## 2828 29 84 Lindstroem Fredrik SWE 2 0+1+1+0
## 2829 30 75 Beatrix Jean Guillaume FRA 2 0+1+0+1
## 2830 31 5 Hofer Lukas ITA 3 2+1+0+0
## 2831 32 43 Svendsen Emil Hegle NOR 2 1+0+0+1
## 2832 33 76 Trsan Rok SLO 1 0+1+0+0
## 2833 34 94 Doherty Sean USA 2 1+0+1+0
## 2834 35 85 Moravec Ondrej CZE 3 1+0+2+0
## 2835 36 92 Liadov Yuryi BLR 2 1+1+0+0
## 2836 37 2 Femling Peppe SWE 0 0+0+0+0
## 2837 38 14 Tkalenko Ruslan UKR 2 0+2+0+0
## 2838 39 96 Volkov Alexey RUS 3 1+2+0+0
## 2839 40 53 Zhyrnyi Oleksandr UKR 3 0+1+2+0
## 2840 41 71 Komatz David AUT 3 0+2+0+1
## 2841 42 69 Smith Nathan CAN 5 1+1+1+2
## 2842 43 87 Dovzan Miha SLO 1 0+1+0+0
## 2843 44 57 Burke Tim USA 4 0+1+0+3
## 2844 45 52 Roesch Michael BEL 2 0+1+0+1
## 2845 46 28 Gow Christian CAN 3 2+0+0+1
## 2846 47 97 Green Brendan CAN 3 0+1+1+1
## 2847 48 8 Pantov Anton KAZ 1 0+0+1+0
## 2848 49 56 Weger Benjamin SUI 3 2+0+0+1
## 2849 50 35 Lessing Roland EST 4 1+0+1+2
## 2850 51 67 Bormolini Thomas ITA 3 0+1+1+1
## 2851 52 16 Dombrovski Karol LTU 0 0+0+0+0
## 2852 53 72 Wiestner Serafin SUI 4 1+0+1+2
## 2853 54 48 Nelin Jesper SWE 4 2+2+0+0
## 2854 55 66 Semenov Sergii UKR 5 1+2+1+1
## 2855 56 38 Chepelin Vladimir BLR 6 3+0+2+1
## 2856 57 83 Buta George ROU 1 0+1+0+0
## 2857 58 40 Eberhard Julian AUT 6 0+1+2+3
## 2858 59 37 Rastorgujevs Andrejs LAT 6 1+3+0+2
## 2859 60 55 Windisch Dominik ITA 6 2+2+1+1
## 2860 61 62 Yaliotnau Raman BLR 5 1+2+0+2
## 2861 62 63 Orpana Sami FIN 1 0+1+0+0
## 2862 63 68 Otcenas Martin SVK 4 0+1+0+3
## 2863 64 70 Malyshko Dmitry RUS 5 2+1+2+0
## 2864 65 22 Dyuzhev Dmitriy BLR 4 2+0+1+1
## 2865 66 88 Stenersen Torstein SWE 4 1+1+2+0
## 2866 67 61 Podkorytov Vassiliy KAZ 3 1+0+1+1
## 2867 68 34 Nagai Junji JPN 3 2+1+0+0
## 2868 69 13 Oblak Lenart SLO 4 2+0+1+1
## 2869 70 50 Kaukenas Tomas LTU 5 0+3+1+1
## 2870 71 86 Penar Rafal POL 2 1+0+0+1
## 2871 72 24 Tachizaki Mikito JPN 4 1+0+3+0
## 2872 73 98 Kazar Matej SVK 5 1+1+2+1
## 2873 74 25 Dolder Mario SUI 6 0+2+1+3
## 2874 75 79 Kobonoki Tsukasa JPN 4 1+0+2+1
## 2875 76 45 Matiasko Miroslav SVK 4 1+2+0+1
## 2876 77 81 Gerdzhikov Dimitar BUL 4 1+2+1+0
## 2877 78 33 Szczurek Lukasz POL 3 2+0+0+1
## 2878 79 44 Angelis Apostolos GRE 3 2+0+0+1
## 2879 80 78 Guzik Grzegorz POL 5 0+4+0+1
## 2880 81 12 Zahkna Rene EST 5 1+0+3+1
## 2881 82 99 De Lorenzi Christian ITA 6 5+0+0+1
## 2882 83 93 Finello Jeremy SUI 7 1+2+1+3
## 2883 84 64 Langer Thierry BEL 4 1+2+0+1
## 2884 85 41 Hiidensalo Olli FIN 6 1+3+0+2
## 2885 86 65 Lusa Daumants LAT 2 1+0+0+1
## 2886 87 80 Strolia Vytautas LTU 6 2+2+1+1
## 2887 88 7 Gronman Tuomas FIN 7 2+3+0+2
## 2888 89 51 Dixon Scott GBR 3 0+0+1+2
## 2889 90 6 Lee Inbok KOR 6 2+3+1+0
## 2890 91 15 Ungureanu Marius ROU 7 2+1+2+2
## 2891 92 19 Hrkalovic Emir SRB 4 0+1+0+3
## 2892 93 29 Kim Jongmin KOR 4 0+1+1+2
## 2893 94 30 Puchianu Cornel ROU 10 3+2+4+1
## 2894 95 26 Slotins Roberts LAT 6 4+0+1+1
## 2895 96 9 Ustuntas Mehmet TUR 2 0+0+2+0
## 2896 97 21 Gombos Karoly HUN 7 0+2+2+3
## 2897 98 82 Laponder Marcel GBR 8 2+2+3+1
## 2898 99 42 Hodzic Edin SRB 7 3+1+1+2
## 2899 1 8 Boe Johannes Thingnes NOR 1 0+0+1+0
## 2900 2 1 Fourcade Martin FRA 1 1+0+0+0
## 2901 3 2 Bjoerndalen Ole Einar NOR 0 0+0+0+0
## 2902 4 21 Windisch Dominik ITA 2 1+0+0+1
## 2903 5 14 Peiffer Arnd GER 1 1+0+0+0
## 2904 6 9 Boe Tarjei NOR 2 1+1+0+0
## 2905 7 16 Fak Jakov SLO 1 0+0+1+0
## 2906 8 4 Semenov Sergii UKR 0 0+0+0+0
## 2907 9 7 Shipulin Anton RUS 2 0+1+0+1
## 2908 10 27 Bailey Lowell USA 1 0+0+0+1
## 2909 11 6 Eder Simon AUT 2 0+0+0+2
## 2910 12 24 Burke Tim USA 2 0+0+1+1
## 2911 13 26 Chepelin Vladimir BLR 2 0+1+1+0
## 2912 14 15 Lesser Erik GER 2 0+0+0+2
## 2913 15 3 Landertinger Dominik AUT 3 2+1+0+0
## 2914 16 28 Babikov Anton RUS 2 1+0+0+1
## 2915 17 19 Slesingr Michal CZE 3 1+0+1+1
## 2916 18 13 Doll Benedikt GER 3 0+0+1+2
## 2917 19 10 Schempp Simon GER 3 0+0+1+2
## 2918 20 12 Fillon Maillet Quentin FRA 3 1+0+1+1
## 2919 21 20 Iliev Vladimir BUL 3 0+0+1+2
## 2920 22 18 Krcmar Michal CZE 2 0+0+1+1
## 2921 23 11 Garanichev Evgeniy RUS 4 2+1+0+1
## 2922 24 17 Desthieux Simon FRA 3 0+0+2+1
## 2923 25 25 Anev Krasimir BUL 3 0+0+1+2
## 2924 26 30 Rastorgujevs Andrejs LAT 3 1+1+1+0
## 2925 27 23 Wiestner Serafin SUI 4 2+0+1+1
## 2926 28 5 Svendsen Emil Hegle NOR 4 1+0+0+3
## 2927 29 22 Savitskiy Yan KAZ 6 0+2+2+2
## 2928 DNF 29 Nordgren Leif USA NA 2+2+2
## 2929 1 1 Fourcade Martin FRA 3 0+0+1+2
## 2930 2 2 Bjoerndalen Ole Einar NOR 2 1+0+0+1
## 2931 3 17 Svendsen Emil Hegle NOR 1 0+0+0+1
## 2932 4 4 Boe Johannes Thingnes NOR 3 0+2+0+1
## 2933 5 39 Fak Jakov SLO 0 0+0+0+0
## 2934 6 12 Desthieux Simon FRA 0 0+0+0+0
## 2935 7 19 Lesser Erik GER 2 0+0+0+2
## 2936 8 3 Semenov Sergii UKR 3 1+0+1+1
## 2937 9 45 Shipulin Anton RUS 1 0+0+0+1
## 2938 10 16 Fillon Maillet Quentin FRA 2 0+1+1+0
## 2939 11 6 Garanichev Evgeniy RUS 4 1+0+1+2
## 2940 12 15 Slesingr Michal CZE 1 0+1+0+0
## 2941 13 7 Peiffer Arnd GER 3 0+0+1+2
## 2942 14 9 Landertinger Dominik AUT 4 1+1+0+2
## 2943 15 46 Smith Nathan CAN 2 0+1+1+0
## 2944 16 27 Eder Simon AUT 3 0+2+1+0
## 2945 17 14 Burke Tim USA 3 0+0+1+2
## 2946 18 8 Schempp Simon GER 4 1+2+0+1
## 2947 19 40 Savitskiy Yan KAZ 1 0+1+0+0
## 2948 20 11 Wiestner Serafin SUI 3 0+0+1+2
## 2949 21 23 Babikov Anton RUS 3 0+1+1+1
## 2950 22 24 Krcmar Michal CZE 2 0+0+1+1
## 2951 23 13 Chepelin Vladimir BLR 4 0+0+1+3
## 2952 24 10 Iliev Vladimir BUL 5 3+0+1+1
## 2953 25 28 Zhyrnyi Oleksandr UKR 2 0+1+0+1
## 2954 26 36 Eberhard Julian AUT 6 3+1+2+0
## 2955 27 20 Rastorgujevs Andrejs LAT 5 0+2+1+2
## 2956 28 5 Windisch Dominik ITA 6 0+3+1+2
## 2957 29 34 Anev Krasimir BUL 3 0+0+1+2
## 2958 30 25 Otcenas Martin SVK 3 0+0+2+1
## 2959 31 54 Boe Tarjei NOR 3 0+1+1+1
## 2960 32 22 Pryma Artem UKR 4 2+1+1+0
## 2961 33 35 Green Brendan CAN 3 1+1+1+0
## 2962 34 30 Lindstroem Fredrik SWE 3 0+1+1+1
## 2963 35 37 Lessing Roland EST 2 1+0+1+0
## 2964 36 29 Bailey Lowell USA 5 0+0+2+3
## 2965 37 56 Bormolini Thomas ITA 2 0+2+0+0
## 2966 38 31 Nelin Jesper SWE 4 0+0+1+3
## 2967 39 33 Doll Benedikt GER 6 2+2+1+1
## 2968 40 53 Fourcade Simon FRA 4 2+0+1+1
## 2969 41 60 Soukup Jaroslav CZE 2 0+0+1+1
## 2970 42 49 Kletcherov Michail BUL 2 0+1+1+0
## 2971 43 42 Tsvetkov Maxim RUS 4 1+1+0+2
## 2972 44 57 Kazar Matej SVK 3 1+0+2+0
## 2973 45 43 Doherty Sean USA 5 0+2+1+2
## 2974 46 32 Darozhka Aliaksandr BLR 6 0+1+2+3
## 2975 47 21 Kaukenas Tomas LTU 7 2+1+3+1
## 2976 48 51 Grossegger Sven AUT 4 2+0+0+2
## 2977 49 47 Gow Scott CAN 6 0+3+1+2
## 2978 50 26 Puchianu Cornel ROU 6 2+1+1+2
## 2979 51 55 Hiidensalo Olli FIN 4 0+0+1+3
## 2980 52 18 Nordgren Leif USA 7 2+2+1+2
## 2981 53 58 Davies Macx CAN 4 1+0+1+2
## 2982 54 41 De Lorenzi Christian ITA 8 4+3+0+1
## 2983 55 48 Jaeger Martin SUI 8 3+1+2+2
## 2984 56 50 Bauer Klemen SLO 6 2+1+1+2
## 2985 57 38 Koiv Kauri EST 7 0+1+3+3
## 2986 DNF 52 Weger Benjamin SUI NA 4+3+2
## 2987 DNS 44 Pidruchnyi Dmytro UKR NA
## 2988 DNS 59 Moravec Ondrej CZE NA
## 2989 1 8 Fourcade Martin FRA 0 0+0
## 2990 2 53 Bjoerndalen Ole Einar NOR 0 0+0
## 2991 3 69 Semenov Sergii UKR 0 0+0
## 2992 4 58 Boe Johannes Thingnes NOR 1 0+1
## 2993 5 34 Windisch Dominik ITA 1 1+0
## 2994 6 9 Garanichev Evgeniy RUS 1 0+1
## 2995 7 47 Peiffer Arnd GER 0 0+0
## 2996 8 84 Schempp Simon GER 1 1+0
## 2997 9 81 Landertinger Dominik AUT 1 1+0
## 2998 10 45 Iliev Vladimir BUL 1 0+1
## 2999 11 76 Wiestner Serafin SUI 1 0+1
## 3000 12 82 Desthieux Simon FRA 1 0+1
## 3001 13 33 Chepelin Vladimir BLR 1 1+0
## 3002 14 35 Burke Tim USA 1 0+1
## 3003 15 83 Slesingr Michal CZE 1 1+0
## 3004 16 12 Fillon Maillet Quentin FRA 1 1+0
## 3005 17 87 Svendsen Emil Hegle NOR 1 0+1
## 3006 18 91 Nordgren Leif USA 0 0+0
## 3007 19 80 Lesser Erik GER 2 0+2
## 3008 20 24 Rastorgujevs Andrejs LAT 2 0+2
## 3009 21 73 Kaukenas Tomas LTU 1 0+1
## 3010 22 93 Pryma Artem UKR 1 0+1
## 3011 23 30 Babikov Anton RUS 0 0+0
## 3012 24 101 Krcmar Michal CZE 1 1+0
## 3013 25 65 Otcenas Martin SVK 1 0+1
## 3014 26 96 Puchianu Cornel ROU 0 0+0
## 3015 27 62 Eder Simon AUT 3 1+2
## 3016 28 3 Zhyrnyi Oleksandr UKR 0 0+0
## 3017 29 79 Bailey Lowell USA 1 1+0
## 3018 30 43 Lindstroem Fredrik SWE 1 0+1
## 3019 31 75 Nelin Jesper SWE 2 0+2
## 3020 32 71 Darozhka Aliaksandr BLR 1 0+1
## 3021 33 46 Doll Benedikt GER 3 1+2
## 3022 34 61 Anev Krasimir BUL 2 0+2
## 3023 35 60 Green Brendan CAN 1 0+1
## 3024 36 97 Eberhard Julian AUT 4 2+2
## 3025 37 44 Lessing Roland EST 1 0+1
## 3026 38 88 Koiv Kauri EST 0 0+0
## 3027 39 36 Fak Jakov SLO 2 1+1
## 3028 40 32 Savitskiy Yan KAZ 1 1+0
## 3029 41 25 De Lorenzi Christian ITA 2 1+1
## 3030 42 67 Tsvetkov Maxim RUS 1 0+1
## 3031 43 20 Doherty Sean USA 2 1+1
## 3032 44 27 Pidruchnyi Dmytro UKR 2 2+0
## 3033 45 1 Shipulin Anton RUS 2 1+1
## 3034 46 40 Smith Nathan CAN 4 1+3
## 3035 47 99 Gow Scott CAN 2 0+2
## 3036 48 100 Jaeger Martin SUI 2 0+2
## 3037 49 90 Kletcherov Michail BUL 0 0+0
## 3038 50 70 Bauer Klemen SLO 2 0+2
## 3039 51 37 Grossegger Sven AUT 1 1+0
## 3040 51 52 Weger Benjamin SUI 2 1+1
## 3041 53 59 Fourcade Simon FRA 2 2+0
## 3042 54 86 Boe Tarjei NOR 4 1+3
## 3043 55 48 Hiidensalo Olli FIN 1 0+1
## 3044 56 102 Bormolini Thomas ITA 2 0+2
## 3045 57 26 Kazar Matej SVK 3 2+1
## 3046 58 15 Davies Macx CAN 1 0+1
## 3047 59 42 Moravec Ondrej CZE 3 0+3
## 3048 60 11 Soukup Jaroslav CZE 3 1+2
## 3049 61 14 Stenersen Torstein SWE 1 0+1
## 3050 62 19 Hasilla Tomas SVK 1 0+1
## 3051 63 10 Ermits Kalev EST 3 3+0
## 3052 64 50 Janik Mateusz POL 1 0+1
## 3053 65 7 Sinapov Anton BUL 2 1+1
## 3054 66 18 Dolder Mario SUI 3 2+1
## 3055 67 85 Kobonoki Tsukasa JPN 1 0+1
## 3056 68 23 Tachizaki Mikito JPN 0 0+0
## 3057 69 94 Bjoentegaard Erlend NOR 3 1+2
## 3058 70 55 Buta George ROU 1 0+1
## 3059 71 98 Dovzan Miha SLO 2 0+2
## 3060 72 13 Podkorytov Vassiliy KAZ 0 0+0
## 3061 73 28 Nagai Junji JPN 1 0+1
## 3062 74 5 Yaliotnau Raman BLR 4 2+2
## 3063 75 63 Hofer Lukas ITA 3 1+2
## 3064 76 78 Szczurek Lukasz POL 2 1+1
## 3065 77 72 Braun Maxim KAZ 0 0+0
## 3066 78 22 Guzik Grzegorz POL 3 2+1
## 3067 79 89 Varabei Maksim BLR 3 1+2
## 3068 80 31 Roesch Michael BEL 3 1+2
## 3069 81 64 Faur Remus ROU 2 1+1
## 3070 82 17 Orpana Sami FIN 2 0+2
## 3071 83 4 Crnkovic Kresimir CRO 3 1+2
## 3072 84 74 Langer Thierry BEL 2 2+0
## 3073 85 16 Trsan Rok SLO 5 3+2
## 3074 86 6 Lee Inbok KOR 4 3+1
## 3075 87 95 Strolia Vytautas LTU 6 2+4
## 3076 88 92 Armgren Ted SWE 5 3+2
## 3077 89 66 Gronman Tuomas FIN 4 2+2
## 3078 90 77 Laponder Marcel GBR 2 0+2
## 3079 91 51 Dixon Scott GBR 1 0+1
## 3080 92 57 Kim Jongmin KOR 2 2+0
## 3081 93 68 Slotins Roberts LAT 4 1+3
## 3082 94 49 Angelis Apostolos GRE 3 3+0
## 3083 95 39 Dombrovski Karol LTU 4 1+3
## 3084 96 56 Gombos Karoly HUN 3 1+2
## 3085 97 38 Ustuntas Mehmet TUR 0 0+0
## 3086 98 29 Petrovic Filip CRO 5 3+2
## 3087 99 2 Hrkalovic Emir SRB 3 1+2
## 3088 100 41 Patrijuks Aleksandrs LAT 5 3+2
## 3089 101 21 Ustuntas Ahmet TUR 2 1+1
## 3090 102 54 Krsmanovic Dejan SRB 5 4+1
## 3091 1 25 Beatrix Jean Guillaume FRA 0 0+0+0+0
## 3092 2 5 Svendsen Emil Hegle NOR 1 0+0+1+0
## 3093 3 2 Bjoerndalen Ole Einar NOR 2 1+0+1+0
## 3094 4 3 Schempp Simon GER 2 0+1+1+0
## 3095 5 11 Birnbacher Andreas GER 1 0+0+1+0
## 3096 6 10 Desthieux Simon FRA 1 0+1+0+0
## 3097 7 1 Fourcade Martin FRA 4 2+0+2+0
## 3098 8 13 Boe Johannes Thingnes NOR 2 0+1+1+0
## 3099 9 28 Windisch Dominik ITA 2 1+0+1+0
## 3100 10 4 Fillon Maillet Quentin FRA 1 0+0+0+1
## 3101 11 7 Shipulin Anton RUS 2 0+0+1+1
## 3102 12 12 Smith Nathan CAN 3 0+1+1+1
## 3103 13 16 Peiffer Arnd GER 1 0+0+1+0
## 3104 14 8 Garanichev Evgeniy RUS 3 1+0+0+2
## 3105 15 15 Slepov Alexey RUS 4 1+1+1+1
## 3106 16 27 Lesser Erik GER 2 0+1+1+0
## 3107 17 24 Landertinger Dominik AUT 3 0+0+2+1
## 3108 18 6 Boe Tarjei NOR 4 1+1+2+0
## 3109 19 18 Lindstroem Fredrik SWE 2 0+0+0+2
## 3110 20 14 Malyshko Dmitry RUS 3 1+1+1+0
## 3111 21 21 Fourcade Simon FRA 4 0+1+1+2
## 3112 22 26 Burke Tim USA 4 2+0+1+1
## 3113 23 19 Bailey Lowell USA 3 0+0+2+1
## 3114 24 23 Pidruchnyi Dmytro UKR 3 0+0+2+1
## 3115 25 9 Doll Benedikt GER 5 0+1+3+1
## 3116 26 17 Tsvetkov Maxim RUS 3 0+2+0+1
## 3117 27 30 Eberhard Julian AUT 6 1+2+2+1
## 3118 28 20 Volkov Alexey RUS 3 2+0+1+0
## 3119 29 22 Moravec Ondrej CZE 5 2+1+1+1
## 3120 30 29 Bauer Klemen SLO 4 1+0+1+2
## 3121 1 1 Schempp Simon GER 0 0+0+0+0
## 3122 2 5 Fourcade Martin FRA 1 0+0+0+1
## 3123 3 6 Shipulin Anton RUS 2 0+1+1+0
## 3124 4 9 Boe Tarjei NOR 1 0+0+0+1
## 3125 5 7 Fillon Maillet Quentin FRA 1 0+0+1+0
## 3126 6 3 Garanichev Evgeniy RUS 2 1+0+0+1
## 3127 7 11 Svendsen Emil Hegle NOR 2 0+0+1+1
## 3128 8 2 Bjoerndalen Ole Einar NOR 2 0+0+1+1
## 3129 9 14 Burke Tim USA 1 0+0+1+0
## 3130 10 33 Fourcade Simon FRA 0 0+0+0+0
## 3131 11 26 Birnbacher Andreas GER 1 1+0+0+0
## 3132 12 21 Lesser Erik GER 1 0+0+1+0
## 3133 13 8 Doll Benedikt GER 4 0+0+2+2
## 3134 14 30 Lindstroem Fredrik SWE 0 0+0+0+0
## 3135 15 32 Beatrix Jean Guillaume FRA 1 0+0+0+1
## 3136 16 10 Volkov Alexey RUS 1 1+0+0+0
## 3137 17 12 Tsvetkov Maxim RUS 1 0+0+0+1
## 3138 18 16 Windisch Dominik ITA 3 2+0+0+1
## 3139 19 43 Pidruchnyi Dmytro UKR 1 0+0+0+1
## 3140 20 18 Bauer Klemen SLO 2 0+0+1+1
## 3141 21 31 Rastorgujevs Andrejs LAT 2 0+0+1+1
## 3142 22 28 Anev Krasimir BUL 2 0+1+0+1
## 3143 23 23 Eberhard Julian AUT 4 1+1+1+1
## 3144 24 13 Desthieux Simon FRA 2 0+1+0+1
## 3145 25 4 Slepov Alexey RUS 6 2+2+1+1
## 3146 26 19 Moravec Ondrej CZE 3 3+0+0+0
## 3147 27 42 Peiffer Arnd GER 1 1+0+0+0
## 3148 28 27 Darozhka Aliaksandr BLR 3 0+2+1+0
## 3149 29 15 Bailey Lowell USA 3 0+1+1+1
## 3150 30 46 Green Brendan CAN 2 0+0+0+2
## 3151 31 36 Fak Jakov SLO 4 0+0+3+1
## 3152 32 17 Hofer Lukas ITA 5 1+1+1+2
## 3153 33 38 Malyshko Dmitry RUS 3 2+0+0+1
## 3154 34 25 Soukup Jaroslav CZE 2 1+0+1+0
## 3155 35 24 Smith Nathan CAN 3 1+0+2+0
## 3156 36 50 Slesingr Michal CZE 3 1+1+0+1
## 3157 37 58 Iliev Vladimir BUL 3 0+1+0+2
## 3158 38 20 Weger Benjamin SUI 6 1+1+2+2
## 3159 39 49 Semenov Sergii UKR 4 0+1+3+0
## 3160 40 56 Zhyrnyi Oleksandr UKR 2 1+0+1+0
## 3161 41 47 Kazar Matej SVK 3 0+0+1+2
## 3162 42 51 Buta George ROU 1 1+0+0+0
## 3163 43 39 Krcmar Michal CZE 6 2+0+1+3
## 3164 44 41 Chepelin Vladimir BLR 4 2+0+1+1
## 3165 45 35 Gow Scott CAN 4 1+1+2+0
## 3166 46 22 Grossegger Sven AUT 6 3+0+2+1
## 3167 47 45 L'Abee-Lund Henrik NOR 2 1+0+1+0
## 3168 48 55 Wiestner Serafin SUI 4 1+0+1+2
## 3169 49 52 Nordgren Leif USA 4 0+1+2+1
## 3170 50 44 Claude Florent FRA 4 2+0+2+0
## 3171 51 60 Otcenas Martin SVK 4 1+0+1+2
## 3172 52 40 Dyuzhev Dmitriy BLR 4 0+3+0+1
## 3173 53 57 Jaeger Martin SUI 4 1+1+2+0
## 3174 54 54 Siemakov Volodymyr UKR 5 2+1+2+0
## 3175 55 53 Armgren Ted SWE 4 0+0+2+2
## 3176 56 29 Yaliotnau Raman BLR 8 2+3+2+1
## 3177 57 34 Davies Macx CAN 8 3+2+2+1
## 3178 58 59 Gustafsson Daniel SWE 6 2+2+1+1
## 3179 59 48 Dovzan Miha SLO 8 1+2+0+5
## 3180 DNF 37 Gow Christian CAN NA 0+1+0
## 3181 1 52 Schempp Simon GER 0 0+0
## 3182 2 14 Bjoerndalen Ole Einar NOR 0 0+0
## 3183 3 17 Garanichev Evgeniy RUS 0 0+0
## 3184 4 96 Slepov Alexey RUS 0 0+0
## 3185 5 20 Fourcade Martin FRA 1 0+1
## 3186 6 28 Shipulin Anton RUS 1 0+1
## 3187 7 24 Fillon Maillet Quentin FRA 0 0+0
## 3188 8 60 Doll Benedikt GER 1 0+1
## 3189 9 8 Boe Tarjei NOR 1 0+1
## 3190 10 61 Volkov Alexey RUS 0 0+0
## 3191 11 21 Svendsen Emil Hegle NOR 1 0+1
## 3192 12 35 Tsvetkov Maxim RUS 0 0+0
## 3193 13 13 Desthieux Simon FRA 0 0+0
## 3194 14 37 Burke Tim USA 1 0+1
## 3195 15 7 Bailey Lowell USA 0 0+0
## 3196 16 78 Windisch Dominik ITA 1 0+1
## 3197 17 38 Hofer Lukas ITA 1 1+0
## 3198 18 33 Bauer Klemen SLO 1 0+1
## 3199 19 10 Moravec Ondrej CZE 1 0+1
## 3200 20 36 Weger Benjamin SUI 1 1+0
## 3201 21 69 Lesser Erik GER 1 0+1
## 3202 22 32 Grossegger Sven AUT 1 1+0
## 3203 23 73 Eberhard Julian AUT 3 0+3
## 3204 24 9 Smith Nathan CAN 1 1+0
## 3205 25 55 Soukup Jaroslav CZE 1 0+1
## 3206 26 11 Birnbacher Andreas GER 1 1+0
## 3207 27 64 Darozhka Aliaksandr BLR 1 0+1
## 3208 28 15 Anev Krasimir BUL 1 1+0
## 3209 29 1 Yaliotnau Raman BLR 0 0+0
## 3210 30 26 Lindstroem Fredrik SWE 2 0+2
## 3211 31 22 Rastorgujevs Andrejs LAT 1 0+1
## 3212 32 51 Beatrix Jean Guillaume FRA 2 0+2
## 3213 33 43 Fourcade Simon FRA 1 1+0
## 3214 34 19 Davies Macx CAN 1 1+0
## 3215 35 65 Gow Scott CAN 1 0+1
## 3216 36 3 Fak Jakov SLO 1 0+1
## 3217 37 102 Gow Christian CAN 0 0+0
## 3218 38 12 Malyshko Dmitry RUS 2 0+2
## 3219 39 44 Krcmar Michal CZE 2 1+1
## 3220 40 97 Dyuzhev Dmitriy BLR 1 0+1
## 3221 41 31 Chepelin Vladimir BLR 1 0+1
## 3222 42 42 Peiffer Arnd GER 0 0+0
## 3223 43 84 Pidruchnyi Dmytro UKR 2 2+0
## 3224 44 87 Claude Florent FRA 1 1+0
## 3225 45 27 L'Abee-Lund Henrik NOR 1 0+1
## 3226 46 29 Green Brendan CAN 2 0+2
## 3227 47 41 Kazar Matej SVK 1 1+0
## 3228 48 76 Dovzan Miha SLO 0 0+0
## 3229 49 4 Semenov Sergii UKR 2 1+1
## 3230 50 18 Slesingr Michal CZE 4 0+4
## 3231 51 30 Buta George ROU 1 0+1
## 3232 52 90 Nordgren Leif USA 1 0+1
## 3233 53 67 Armgren Ted SWE 1 0+1
## 3234 54 39 Siemakov Volodymyr UKR 1 0+1
## 3235 55 6 Wiestner Serafin SUI 3 2+1
## 3236 56 46 Zhyrnyi Oleksandr UKR 2 0+2
## 3237 57 50 Jaeger Martin SUI 3 1+2
## 3238 58 45 Iliev Vladimir BUL 3 1+2
## 3239 59 85 Gustafsson Daniel SWE 0 0+0
## 3240 60 53 Otcenas Martin SVK 3 2+1
## 3241 61 56 Guzik Grzegorz POL 1 1+0
## 3242 62 93 Kletcherov Michail BUL 0 0+0
## 3243 63 40 Savitskiy Yan KAZ 2 0+2
## 3244 64 34 Boe Johannes Thingnes NOR 5 2+3
## 3245 65 70 Koiv Kauri EST 1 1+0
## 3246 66 106 Boehm Daniel GER 1 1+0
## 3247 67 58 Ermits Kalev EST 4 3+1
## 3248 68 101 Lessing Roland EST 1 0+1
## 3249 69 62 Puchianu Cornel ROU 2 1+1
## 3250 70 98 Trsan Rok SLO 1 1+0
## 3251 71 63 Doherty Sean USA 4 3+1
## 3252 72 68 Dombrovski Karol LTU 2 0+2
## 3253 73 23 Hasilla Tomas SVK 2 1+1
## 3254 74 105 Remmelg Martin EST 1 1+0
## 3255 75 66 Janik Mateusz POL 1 1+0
## 3256 76 104 Krupcik Tomas CZE 3 1+2
## 3257 77 95 Pryma Artem UKR 3 0+3
## 3258 78 81 Finello Jeremy SUI 2 1+1
## 3259 79 79 Sinapov Anton BUL 1 1+0
## 3260 80 5 De Lorenzi Christian ITA 3 1+2
## 3261 81 57 Dixon Scott GBR 1 1+0
## 3262 82 48 Femling Peppe SWE 4 1+3
## 3263 83 88 Pinter Friedrich AUT 5 2+3
## 3264 84 86 Deksnis Ingus LAT 0 0+0
## 3265 85 92 Faur Remus ROU 2 1+1
## 3266 86 82 Joller Ivan SUI 3 0+3
## 3267 87 2 Kaukenas Tomas LTU 3 1+2
## 3268 88 99 Kobonoki Tsukasa JPN 2 2+0
## 3269 89 94 Podkorytov Vassiliy KAZ 4 2+2
## 3270 90 80 Oblak Lenart SLO 3 2+1
## 3271 91 83 Penar Rafal POL 1 0+1
## 3272 92 54 Slotins Roberts LAT 2 0+2
## 3273 93 59 Braun Maxim KAZ 3 1+2
## 3274 94 72 Tachizaki Mikito JPN 3 3+0
## 3275 95 77 Loukkaanhuhta Mikko FIN 0 0+0
## 3276 96 47 Roesch Michael BEL 3 1+2
## 3277 97 89 Sima Michal SVK 2 1+1
## 3278 98 75 Kim Yonggyu KOR 2 1+1
## 3279 99 71 Morton Damon AUS 2 1+1
## 3280 100 91 Strolia Vytautas LTU 4 2+2
## 3281 101 49 Rastic Damir SRB 3 1+2
## 3282 102 100 Koivunen Mikael FIN 5 2+3
## 3283 DNS 16 Eder Simon AUT NA
## 3284 DNS 25 Landertinger Dominik AUT NA
## 3285 DNS 74 Os A. Alexander NOR NA
## 3286 DNS 103 Laponder Marcel GBR NA
## 3287 1 3 Fourcade Martin FRA 2 1+1+0+0
## 3288 2 1 Boe Johannes Thingnes NOR 3 1+0+0+2
## 3289 3 2 Shipulin Anton RUS 2 1+0+0+1
## 3290 4 11 Eder Simon AUT 3 1+1+0+1
## 3291 5 10 Bjoentegaard Erlend NOR 2 0+1+0+1
## 3292 6 14 Slesingr Michal CZE 3 1+0+1+1
## 3293 7 20 Burke Tim USA 3 1+0+0+2
## 3294 8 21 Iliev Vladimir BUL 4 1+1+2+0
## 3295 9 16 Pryma Artem UKR 3 1+1+0+1
## 3296 10 28 Povarnitsyn Alexander RUS 2 1+0+0+1
## 3297 11 19 Ermits Kalev EST 3 1+0+0+2
## 3298 12 12 Doll Benedikt GER 5 2+1+1+1
## 3299 13 4 Lesser Erik GER 5 0+0+2+3
## 3300 14 15 Bailey Lowell USA 5 1+0+3+1
## 3301 15 23 Birnbacher Andreas GER 4 0+1+2+1
## 3302 16 31 Zhyrnyi Oleksandr UKR 3 1+0+1+1
## 3303 17 6 Weger Benjamin SUI 7 1+2+2+2
## 3304 18 18 Kazar Matej SVK 3 0+1+1+1
## 3305 19 8 Boe Tarjei NOR 5 1+0+2+2
## 3306 20 13 Doherty Sean USA 6 2+2+1+1
## 3307 21 7 Rastorgujevs Andrejs LAT 7 0+0+3+4
## 3308 22 27 Eberhard Julian AUT 7 2+1+1+3
## 3309 23 39 Grossegger Sven AUT 3 0+0+1+2
## 3310 24 24 Dolder Mario SUI 4 1+0+2+1
## 3311 25 35 Semenov Sergii UKR 4 3+1+0+0
## 3312 26 32 Bauer Klemen SLO 4 1+1+1+1
## 3313 27 5 Wiestner Serafin SUI 8 1+1+5+1
## 3314 28 29 Krcmar Michal CZE 4 2+0+2+0
## 3315 29 36 Chepelin Vladimir BLR 5 2+1+1+1
## 3316 30 37 Birkeland Lars Helge NOR 4 2+1+1+0
## 3317 31 17 Os Alexander NOR 7 1+0+4+2
## 3318 32 44 Beatrix Jean Guillaume FRA 4 0+2+2+0
## 3319 33 49 Rusinov Dmytro UKR 3 1+0+1+1
## 3320 34 26 Liadov Yuryi BLR 7 3+0+2+2
## 3321 35 38 Fourcade Simon FRA 7 2+2+2+1
## 3322 36 25 Savitskiy Yan KAZ 7 2+0+2+3
## 3323 37 54 Boehm Daniel GER 4 1+1+1+1
## 3324 38 22 Hofer Lukas ITA 9 1+4+2+2
## 3325 39 52 Desthieux Simon FRA 4 0+0+1+3
## 3326 40 58 Bormolini Thomas ITA 6 1+0+2+3
## 3327 41 41 Trsan Rok SLO 7 2+2+2+1
## 3328 42 42 De Lorenzi Christian ITA 8 3+1+3+1
## 3329 43 60 Nagai Junji JPN 1 0+1+0+0
## 3330 44 34 Windisch Dominik ITA 10 3+2+3+2
## 3331 45 30 Waeger Lorenz AUT 7 2+0+1+4
## 3332 46 59 Toivanen Ahti FIN 6 1+0+2+3
## 3333 47 48 Perras Scott CAN 7 0+2+3+2
## 3334 48 47 Sima Michal SVK 6 1+1+3+1
## 3335 49 50 Podkorytov Vassiliy KAZ 6 2+0+1+3
## 3336 50 57 Dovzan Miha SLO 3 2+0+1+0
## 3337 51 55 Yaliotnau Raman BLR 9 1+0+4+4
## 3338 52 56 Gronman Tuomas FIN 7 0+1+4+2
## 3339 53 40 Jaeger Martin SUI 10 3+1+3+3
## 3340 DNF 9 Peiffer Arnd GER NA 1+0+1+2
## 3341 DNF 33 Fillon Maillet Quentin FRA NA 4+2
## 3342 DNS 43 Tsvetkov Maxim RUS NA
## 3343 DNS 45 Malyshko Dmitry RUS NA
## 3344 DNS 46 Lindstroem Fredrik SWE NA
## 3345 DNS 51 Armgren Ted SWE NA
## 3346 DNS 53 Sinapov Anton BUL NA
## 3347 1 25 Boe Johannes Thingnes NOR 0 0+0
## 3348 2 16 Shipulin Anton RUS 0 0+0
## 3349 3 3 Fourcade Martin FRA 1 0+1
## 3350 4 54 Lesser Erik GER 0 0+0
## 3351 5 13 Wiestner Serafin SUI 1 0+1
## 3352 6 30 Weger Benjamin SUI 1 0+1
## 3353 7 31 Rastorgujevs Andrejs LAT 1 0+1
## 3354 8 32 Boe Tarjei NOR 1 0+1
## 3355 9 8 Peiffer Arnd GER 1 0+1
## 3356 10 2 Bjoentegaard Erlend NOR 1 0+1
## 3357 11 5 Eder Simon AUT 1 1+0
## 3358 12 12 Doll Benedikt GER 2 0+2
## 3359 13 42 Doherty Sean USA 1 0+1
## 3360 14 10 Slesingr Michal CZE 1 1+0
## 3361 15 36 Bailey Lowell USA 1 0+1
## 3362 16 17 Pryma Artem UKR 1 1+0
## 3363 17 55 Os Alexander NOR 1 0+1
## 3364 18 23 Kazar Matej SVK 1 1+0
## 3365 19 68 Ermits Kalev EST 0 0+0
## 3366 20 6 Burke Tim USA 2 1+1
## 3367 21 1 Iliev Vladimir BUL 3 2+1
## 3368 22 33 Hofer Lukas ITA 3 1+2
## 3369 23 26 Birnbacher Andreas GER 1 1+0
## 3370 24 59 Dolder Mario SUI 1 0+1
## 3371 25 14 Savitskiy Yan KAZ 1 1+0
## 3372 26 89 Liadov Yuryi BLR 1 0+1
## 3373 27 7 Eberhard Julian AUT 4 1+3
## 3374 28 53 Povarnitsyn Alexander RUS 2 1+1
## 3375 29 35 Krcmar Michal CZE 2 1+1
## 3376 30 81 Waeger Lorenz AUT 0 0+0
## 3377 31 39 Zhyrnyi Oleksandr UKR 2 0+2
## 3378 32 22 Bauer Klemen SLO 2 1+1
## 3379 33 18 Fillon Maillet Quentin FRA 2 0+2
## 3380 34 4 Windisch Dominik ITA 4 2+2
## 3381 35 21 Semenov Sergii UKR 3 3+0
## 3382 36 24 Chepelin Vladimir BLR 3 0+3
## 3383 37 29 Birkeland Lars Helge NOR 2 0+2
## 3384 38 19 Fourcade Simon FRA 1 0+1
## 3385 39 34 Grossegger Sven AUT 2 0+2
## 3386 40 64 Jaeger Martin SUI 3 2+1
## 3387 41 40 Trsan Rok SLO 1 1+0
## 3388 42 77 De Lorenzi Christian ITA 2 1+1
## 3389 43 11 Tsvetkov Maxim RUS 1 1+0
## 3390 44 43 Beatrix Jean Guillaume FRA 2 1+1
## 3391 45 70 Malyshko Dmitry RUS 3 1+2
## 3392 46 37 Lindstroem Fredrik SWE 1 1+0
## 3393 47 69 Sima Michal SVK 0 0+0
## 3394 48 52 Perras Scott CAN 2 1+1
## 3395 49 73 Rusinov Dmytro UKR 2 0+2
## 3396 50 80 Podkorytov Vassiliy KAZ 0 0+0
## 3397 51 47 Armgren Ted SWE 2 1+1
## 3398 52 27 Desthieux Simon FRA 3 2+1
## 3399 53 78 Sinapov Anton BUL 2 0+2
## 3400 54 82 Boehm Daniel GER 2 1+1
## 3401 55 15 Yaliotnau Raman BLR 4 1+3
## 3402 56 44 Gronman Tuomas FIN 2 1+1
## 3403 56 72 Dovzan Miha SLO 1 0+1
## 3404 58 48 Bormolini Thomas ITA 2 2+0
## 3405 59 61 Toivanen Ahti FIN 3 3+0
## 3406 60 86 Nagai Junji JPN 0 0+0
## 3407 61 92 Faur Remus ROU 1 0+1
## 3408 62 41 Guzik Grzegorz POL 3 2+1
## 3409 63 58 Puchianu Cornel ROU 2 2+0
## 3410 64 57 Strolia Vytautas LTU 3 2+1
## 3411 65 76 Nordgren Leif USA 3 2+1
## 3412 66 28 Volkov Alexey RUS 1 0+1
## 3413 67 83 Zahkna Rene EST 2 0+2
## 3414 68 56 Pantov Anton KAZ 3 2+1
## 3415 69 49 Krupcik Tomas CZE 3 1+2
## 3416 70 85 Szczurek Lukasz POL 2 0+2
## 3417 71 45 Komatz David AUT 3 2+1
## 3418 72 67 Dyuzhev Dmitriy BLR 5 3+2
## 3419 73 88 Arwidson Tobias SWE 2 2+0
## 3420 74 63 Treier Jan EST 1 0+1
## 3421 75 51 Gerdzhikov Dimitar BUL 4 2+2
## 3422 76 38 Buta George ROU 3 1+2
## 3423 77 46 Matiasko Miroslav SVK 4 2+2
## 3424 78 50 Campbell Carsen CAN 1 1+0
## 3425 79 91 Kornev Alexey RUS 3 1+2
## 3426 80 65 Tachizaki Mikito JPN 2 1+1
## 3427 81 66 Kletcherov Michail BUL 3 3+0
## 3428 82 90 Neumann Matthew CAN 3 1+2
## 3429 83 62 Kilchytskyy Vitaliy UKR 6 3+3
## 3430 84 60 Lee Inbok KOR 4 2+2
## 3431 85 79 Hakala Matti FIN 4 2+2
## 3432 86 75 Suslavicius Rokas LTU 1 0+1
## 3433 87 87 Kubaliak Michal SVK 5 3+2
## 3434 88 74 Hudec Matthew CAN 2 1+1
## 3435 DNS 9 Stenersen Torstein SWE NA
## 3436 DNS 20 Schempp Simon GER NA
## 3437 DNS 71 Moravec Ondrej CZE NA
## 3438 DNS 84 Joller Ivan SUI NA
## 3439 1 46 Fourcade Martin FRA 1 0+0+1+0
## 3440 2 76 Eder Simon AUT 1 0+0+0+1
## 3441 3 21 Shipulin Anton RUS 1 0+0+1+0
## 3442 4 37 Moravec Ondrej CZE 0 0+0+0+0
## 3443 5 44 Tsvetkov Maxim RUS 0 0+0+0+0
## 3444 6 23 Garanichev Evgeniy RUS 1 0+0+0+1
## 3445 7 66 Stenersen Torstein SWE 1 0+0+0+1
## 3446 8 47 Doll Benedikt GER 2 0+2+0+0
## 3447 9 64 Bjoentegaard Erlend NOR 2 0+1+0+1
## 3448 10 71 Krcmar Michal CZE 1 0+1+0+0
## 3449 11 36 Boe Tarjei NOR 2 0+1+0+1
## 3450 12 40 Anev Krasimir BUL 1 0+0+0+1
## 3451 13 53 Hofer Lukas ITA 1 0+1+0+0
## 3452 14 25 Bailey Lowell USA 1 1+0+0+0
## 3453 15 19 Birnbacher Andreas GER 2 1+1+0+0
## 3454 16 57 Boe Johannes Thingnes NOR 4 0+0+1+3
## 3455 17 58 Lesser Erik GER 4 1+1+2+0
## 3456 18 59 Green Brendan CAN 2 1+1+0+0
## 3457 19 69 Kilchytskyy Vitaliy UKR 2 0+1+0+1
## 3458 20 48 Kazar Matej SVK 1 1+0+0+0
## 3459 21 82 Kuehn Johannes GER 4 0+2+1+1
## 3460 22 104 Komatz David AUT 3 0+1+0+2
## 3461 23 27 Lindstroem Fredrik SWE 2 0+1+0+1
## 3462 24 29 Landertinger Dominik AUT 3 0+1+0+2
## 3463 25 17 Birkeland Lars Helge NOR 2 0+0+1+1
## 3464 26 4 Zhyrnyi Oleksandr UKR 1 0+0+1+0
## 3465 27 99 Nordgren Leif USA 3 0+0+1+2
## 3466 28 22 Fillon Maillet Quentin FRA 2 0+0+0+2
## 3467 29 26 Svendsen Emil Hegle NOR 3 0+1+1+1
## 3468 30 54 Burke Tim USA 3 1+0+1+1
## 3469 31 34 Windisch Dominik ITA 3 0+2+1+0
## 3470 32 2 Volkov Alexey RUS 2 2+0+0+0
## 3471 33 41 Slesingr Michal CZE 3 0+1+1+1
## 3472 34 93 Zahkna Rene EST 2 0+1+1+0
## 3473 35 95 Matiasko Miroslav SVK 3 0+2+0+1
## 3474 36 32 Fak Jakov SLO 3 0+2+0+1
## 3475 37 5 Savitskiy Yan KAZ 1 0+0+0+1
## 3476 38 50 Dyuzhev Dmitriy BLR 3 0+1+1+1
## 3477 39 9 De Lorenzi Christian ITA 2 0+0+1+1
## 3478 40 65 Finello Jeremy SUI 3 0+0+2+1
## 3479 41 86 Vaclavik Adam CZE 4 1+0+0+3
## 3480 42 94 Bormolini Thomas ITA 3 0+2+0+1
## 3481 43 20 Pidruchnyi Dmytro UKR 1 0+0+0+1
## 3482 44 30 Bjoerndalen Ole Einar NOR 4 0+1+2+1
## 3483 45 91 Gerdzhikov Dimitar BUL 1 1+0+0+0
## 3484 46 96 Gow Christian CAN 1 0+1+0+0
## 3485 47 105 Szczurek Lukasz POL 2 0+1+1+0
## 3486 48 18 Fourcade Simon FRA 2 0+1+1+0
## 3487 49 42 Rastorgujevs Andrejs LAT 5 1+0+3+1
## 3488 50 77 Trsan Rok SLO 3 0+1+1+1
## 3489 51 45 Smith Nathan CAN 3 0+2+1+0
## 3490 52 38 Davies Macx CAN 2 1+0+1+0
## 3491 53 55 Krupcik Tomas CZE 3 1+1+0+1
## 3492 54 16 Nelin Jesper SWE 2 0+1+1+0
## 3493 55 13 Eberhard Julian AUT 4 0+2+0+2
## 3494 56 39 Grossegger Sven AUT 4 1+1+2+0
## 3495 57 84 Tcherezov Ivan RUS 4 2+1+1+0
## 3496 58 70 Guzik Grzegorz POL 3 0+2+0+1
## 3497 59 35 Semenov Sergii UKR 4 1+1+0+2
## 3498 60 33 Chepelin Vladimir BLR 4 1+1+1+1
## 3499 61 63 Beatrix Jean Guillaume FRA 4 0+3+0+1
## 3500 62 6 Peiffer Arnd GER 3 0+1+1+1
## 3501 63 97 Nagai Junji JPN 3 3+0+0+0
## 3502 64 100 Strolia Vytautas LTU 4 0+2+0+2
## 3503 65 90 Abasheu Dzmitry BLR 5 1+1+1+2
## 3504 66 79 Plywaczyk Krzysztof POL 3 0+1+0+2
## 3505 67 1 Iliev Vladimir BUL 3 2+0+0+1
## 3506 68 75 Kletcherov Michail BUL 4 0+2+0+2
## 3507 69 61 Otcenas Martin SVK 5 1+2+1+1
## 3508 70 56 Faur Remus ROU 3 0+0+1+2
## 3509 71 7 Guigonnat Antonin FRA 4 1+0+0+3
## 3510 72 74 Malyshko Dmitry RUS 7 0+2+5+0
## 3511 73 81 Dixon Scott GBR 2 1+0+1+0
## 3512 74 60 Koiv Kauri EST 4 1+2+1+0
## 3513 75 11 Doherty Sean USA 3 1+0+2+0
## 3514 76 80 Podkorytov Vassiliy KAZ 4 1+2+1+0
## 3515 77 51 Ermits Kalev EST 6 0+2+2+2
## 3516 78 67 Tachizaki Mikito JPN 3 0+1+1+1
## 3517 79 88 Pantov Anton KAZ 6 2+1+0+3
## 3518 80 78 Dombrovski Karol LTU 4 0+0+3+1
## 3519 81 52 Gronman Tuomas FIN 4 0+2+1+1
## 3520 82 28 Buta George ROU 4 0+2+0+2
## 3521 83 83 Armgren Ted SWE 5 1+2+1+1
## 3522 84 8 Wiestner Serafin SUI 4 0+3+0+1
## 3523 85 31 Weger Benjamin SUI 6 4+1+1+0
## 3524 86 72 Dolder Mario SUI 6 1+2+2+1
## 3525 87 68 Lusa Daumants LAT 4 0+1+0+3
## 3526 88 103 Treier Jan EST 5 2+2+1+0
## 3527 89 73 Dovzan Miha SLO 6 2+1+2+1
## 3528 90 49 Orpana Sami FIN 5 2+2+0+1
## 3529 91 62 Kim Jongmin KOR 5 1+0+2+2
## 3530 92 3 Darozhka Aliaksandr BLR 5 0+2+1+2
## 3531 93 15 Soukup Jaroslav CZE 7 2+2+1+2
## 3532 94 89 Puchianu Cornel ROU 6 2+2+1+1
## 3533 95 43 Kaukenas Tomas LTU 8 1+2+4+1
## 3534 96 101 Claude Fabien FRA 11 2+4+1+4
## 3535 97 87 Jaeger Martin SUI 10 3+5+1+1
## 3536 98 92 Koivunen Mikael FIN 4 0+1+2+1
## 3537 99 106 Laponder Marcel GBR 4 0+2+1+1
## 3538 100 10 Gow Scott CAN 8 1+3+2+2
## 3539 101 98 Slotins Roberts LAT 8 2+2+2+2
## 3540 102 14 Hasilla Tomas SVK 7 2+1+0+4
## 3541 103 85 Oblak Lenart SLO 9 1+2+4+2
## 3542 DNF 12 Bauer Klemen SLO NA 0+3
## 3543 DNS 24 Schempp Simon GER NA
## 3544 DNS 102 Siemakov Volodymyr UKR NA
## 3545 1 30 Lesser Erik GER 0 0+0+0+0
## 3546 2 1 Fourcade Martin FRA 1 0+0+0+1
## 3547 3 7 Garanichev Evgeniy RUS 1 0+0+0+1
## 3548 4 5 Shipulin Anton RUS 1 1+0+0+0
## 3549 5 28 Krcmar Michal CZE 1 0+0+1+0
## 3550 6 8 Schempp Simon GER 2 1+1+0+0
## 3551 7 13 Moravec Ondrej CZE 1 0+0+0+1
## 3552 8 14 Desthieux Simon FRA 1 1+0+0+0
## 3553 9 9 Eder Simon AUT 1 0+1+0+0
## 3554 10 3 Svendsen Emil Hegle NOR 1 0+0+1+0
## 3555 11 2 Boe Tarjei NOR 3 0+2+1+0
## 3556 12 10 Boe Johannes Thingnes NOR 3 0+0+2+1
## 3557 13 4 Fillon Maillet Quentin FRA 3 1+2+0+0
## 3558 14 17 Tsvetkov Maxim RUS 1 0+0+0+1
## 3559 15 15 Smith Nathan CAN 1 1+0+0+0
## 3560 16 22 Fourcade Simon FRA 2 0+1+0+1
## 3561 17 21 Lindstroem Fredrik SWE 1 0+0+0+1
## 3562 18 25 Grossegger Sven AUT 2 1+0+1+0
## 3563 19 12 Doll Benedikt GER 4 1+0+1+2
## 3564 20 26 Stenersen Torstein SWE 0 0+0+0+0
## 3565 21 20 Bailey Lowell USA 1 0+0+1+0
## 3566 22 11 Birnbacher Andreas GER 3 1+1+1+0
## 3567 23 18 Landertinger Dominik AUT 5 2+1+2+0
## 3568 24 29 Hofer Lukas ITA 5 2+2+0+1
## 3569 25 23 Malyshko Dmitry RUS 5 1+2+0+2
## 3570 26 19 Pidruchnyi Dmytro UKR 4 0+1+1+2
## 3571 27 24 Anev Krasimir BUL 4 1+1+2+0
## 3572 28 27 Bjoentegaard Erlend NOR 4 0+3+1+0
## 3573 29 16 Peiffer Arnd GER 7 2+1+2+2
## 3574 30 6 Bjoerndalen Ole Einar NOR 10 2+3+2+3
## 3575 1 1 Fourcade Martin FRA 1 0+1+0+0
## 3576 2 19 Moravec Ondrej CZE 0 0+0+0+0
## 3577 3 3 Boe Tarjei NOR 3 2+0+1+0
## 3578 4 17 Pidruchnyi Dmytro UKR 2 0+2+0+0
## 3579 5 14 Peiffer Arnd GER 1 1+0+0+0
## 3580 6 21 Fourcade Simon FRA 1 0+0+1+0
## 3581 7 7 Garanichev Evgeniy RUS 2 1+0+0+1
## 3582 8 5 Fillon Maillet Quentin FRA 2 0+0+2+0
## 3583 9 27 Rastorgujevs Andrejs LAT 3 0+1+2+0
## 3584 10 8 Boe Johannes Thingnes NOR 2 0+1+0+1
## 3585 11 13 Doll Benedikt GER 3 1+1+0+1
## 3586 12 4 Bjoerndalen Ole Einar NOR 3 2+0+0+1
## 3587 13 2 Svendsen Emil Hegle NOR 4 1+0+0+3
## 3588 14 9 Birnbacher Andreas GER 3 1+1+1+0
## 3589 15 6 Shipulin Anton RUS 4 1+2+1+0
## 3590 16 23 Bailey Lowell USA 3 0+0+1+2
## 3591 17 26 Slesingr Michal CZE 2 1+0+1+0
## 3592 18 22 Malyshko Dmitry RUS 4 0+2+1+1
## 3593 19 20 Tsvetkov Maxim RUS 3 0+1+0+2
## 3594 20 12 Desthieux Simon FRA 2 0+1+1+0
## 3595 21 10 Eder Simon AUT 4 1+3+0+0
## 3596 22 29 Eberhard Julian AUT 5 3+1+1+0
## 3597 23 15 Landertinger Dominik AUT 5 2+1+1+1
## 3598 24 25 Grossegger Sven AUT 4 0+1+1+2
## 3599 25 11 Smith Nathan CAN 6 1+2+3+0
## 3600 26 18 Beatrix Jean Guillaume FRA 6 0+0+2+4
## 3601 27 28 Krcmar Michal CZE 4 0+3+1+0
## 3602 28 16 Lindstroem Fredrik SWE 5 1+0+2+2
## 3603 29 30 Anev Krasimir BUL 5 2+0+2+1
## 3604 30 24 Slepov Alexey RUS 8 2+2+2+2
## 3605 1 6 Eder Simon AUT 1 1+0+0+0
## 3606 2 4 Fourcade Martin FRA 2 0+0+1+1
## 3607 3 8 Slesingr Michal CZE 0 0+0+0+0
## 3608 4 2 Boe Tarjei NOR 3 0+2+0+1
## 3609 5 3 Svendsen Emil Hegle NOR 2 1+0+0+1
## 3610 6 15 Smith Nathan CAN 1 1+0+0+0
## 3611 7 1 Boe Johannes Thingnes NOR 4 0+1+1+2
## 3612 8 13 Moravec Ondrej CZE 2 0+0+1+1
## 3613 9 40 Garanichev Evgeniy RUS 1 0+0+0+1
## 3614 10 10 Pidruchnyi Dmytro UKR 1 0+0+0+1
## 3615 11 7 Landertinger Dominik AUT 2 0+1+0+1
## 3616 12 14 Rastorgujevs Andrejs LAT 3 1+0+1+1
## 3617 13 29 Fourcade Simon FRA 1 0+1+0+0
## 3618 14 5 Grossegger Sven AUT 3 1+1+0+1
## 3619 15 9 Birnbacher Andreas GER 2 0+0+1+1
## 3620 16 23 Anev Krasimir BUL 0 0+0+0+0
## 3621 17 30 Tsvetkov Maxim RUS 1 0+1+0+0
## 3622 18 16 Eberhard Julian AUT 5 1+2+1+1
## 3623 19 31 Fillon Maillet Quentin FRA 1 0+1+0+0
## 3624 20 26 Birkeland Lars Helge NOR 2 0+1+0+1
## 3625 21 12 Krcmar Michal CZE 2 0+0+1+1
## 3626 22 33 Bailey Lowell USA 1 0+0+1+0
## 3627 23 19 Lindstroem Fredrik SWE 4 0+1+1+2
## 3628 24 28 Shipulin Anton RUS 3 0+2+1+0
## 3629 25 21 Desthieux Simon FRA 2 0+0+1+1
## 3630 26 18 Burke Tim USA 5 1+0+2+2
## 3631 27 17 Bjoentegaard Erlend NOR 4 0+2+1+1
## 3632 28 11 Peiffer Arnd GER 3 1+0+1+1
## 3633 29 27 Kilchytskyy Vitaliy UKR 1 1+0+0+0
## 3634 30 32 Beatrix Jean Guillaume FRA 2 0+0+0+2
## 3635 31 51 Guigonnat Antonin FRA 2 0+1+1+0
## 3636 32 45 Os Alexander NOR 2 0+1+0+1
## 3637 33 24 Wiestner Serafin SUI 2 0+1+0+1
## 3638 34 41 Lesser Erik GER 4 1+0+2+1
## 3639 35 25 Semenov Sergii UKR 3 1+1+1+0
## 3640 36 37 Malyshko Dmitry RUS 3 0+2+0+1
## 3641 37 48 Boehm Daniel GER 2 0+1+0+1
## 3642 38 44 Eliseev Matvey RUS 2 1+0+0+1
## 3643 39 35 Chepelin Vladimir BLR 3 0+1+1+1
## 3644 40 22 Zhyrnyi Oleksandr UKR 4 0+1+3+0
## 3645 41 58 Finello Jeremy SUI 2 1+0+1+0
## 3646 42 59 Stenersen Torstein SWE 3 1+1+0+1
## 3647 43 49 Komatz David AUT 3 1+1+0+1
## 3648 44 43 Otcenas Martin SVK 5 2+1+0+2
## 3649 45 39 Weger Benjamin SUI 5 1+3+0+1
## 3650 46 42 Bormolini Thomas ITA 6 2+2+0+2
## 3651 47 57 Dombrovski Karol LTU 2 0+0+2+0
## 3652 48 36 Bocharnikov Sergey BLR 3 1+1+1+0
## 3653 49 54 Krupcik Tomas CZE 3 1+0+1+1
## 3654 50 55 Davies Macx CAN 4 2+0+0+2
## 3655 51 56 Slepov Alexey RUS 7 2+3+2+0
## 3656 52 53 Hofer Lukas ITA 4 3+0+1+0
## 3657 53 34 Gow Christian CAN 2 0+1+1+0
## 3658 54 47 Gow Scott CAN 4 2+1+1+0
## 3659 55 60 Matiasko Miroslav SVK 4 1+0+2+1
## 3660 56 38 Yaliotnau Raman BLR 7 1+1+2+3
## 3661 57 46 Podkorytov Vassiliy KAZ 6 1+1+2+2
## 3662 58 50 Janik Mateusz POL 6 2+1+3+0
## 3663 DNF 20 Iliev Vladimir BUL NA 1+1+2
## 3664 DNF 52 Koiv Kauri EST NA 2+1+2
## 3665 1 8 Boe Johannes Thingnes NOR 0 0+0
## 3666 2 5 Boe Tarjei NOR 0 0+0
## 3667 3 26 Svendsen Emil Hegle NOR 0 0+0
## 3668 4 39 Fourcade Martin FRA 1 1+0
## 3669 5 49 Grossegger Sven AUT 0 0+0
## 3670 6 3 Eder Simon AUT 0 0+0
## 3671 7 21 Landertinger Dominik AUT 0 0+0
## 3672 8 14 Slesingr Michal CZE 0 0+0
## 3673 9 18 Birnbacher Andreas GER 1 0+1
## 3674 10 25 Pidruchnyi Dmytro UKR 1 0+1
## 3675 11 30 Peiffer Arnd GER 1 0+1
## 3676 12 44 Krcmar Michal CZE 0 0+0
## 3677 13 13 Moravec Ondrej CZE 1 1+0
## 3678 14 24 Rastorgujevs Andrejs LAT 1 1+0
## 3679 15 7 Smith Nathan CAN 2 0+2
## 3680 16 33 Eberhard Julian AUT 3 1+2
## 3681 17 73 Bjoentegaard Erlend NOR 0 0+0
## 3682 18 11 Burke Tim USA 1 0+1
## 3683 19 42 Lindstroem Fredrik SWE 1 0+1
## 3684 20 37 Iliev Vladimir BUL 0 0+0
## 3685 21 35 Desthieux Simon FRA 0 0+0
## 3686 22 36 Zhyrnyi Oleksandr UKR 0 0+0
## 3687 23 20 Anev Krasimir BUL 0 0+0
## 3688 24 15 Wiestner Serafin SUI 1 0+1
## 3689 25 1 Semenov Sergii UKR 0 0+0
## 3690 26 48 Birkeland Lars Helge NOR 1 1+0
## 3691 26 57 Kilchytskyy Vitaliy UKR 1 0+1
## 3692 28 16 Shipulin Anton RUS 2 1+1
## 3693 29 58 Fourcade Simon FRA 1 1+0
## 3694 30 67 Tsvetkov Maxim RUS 1 1+0
## 3695 31 29 Fillon Maillet Quentin FRA 2 0+2
## 3696 32 10 Beatrix Jean Guillaume FRA 2 0+2
## 3697 33 40 Bailey Lowell USA 1 0+1
## 3698 34 52 Gow Christian CAN 0 0+0
## 3699 35 31 Chepelin Vladimir BLR 2 1+1
## 3700 36 98 Bocharnikov Sergey BLR 0 0+0
## 3701 37 2 Malyshko Dmitry RUS 2 2+0
## 3702 38 22 Yaliotnau Raman BLR 1 1+0
## 3703 39 34 Weger Benjamin SUI 2 2+0
## 3704 40 19 Garanichev Evgeniy RUS 2 0+2
## 3705 41 63 Lesser Erik GER 1 0+1
## 3706 42 87 Bormolini Thomas ITA 1 0+1
## 3707 43 43 Otcenas Martin SVK 2 0+2
## 3708 44 81 Eliseev Matvey RUS 3 2+1
## 3709 45 88 Os Alexander NOR 2 1+1
## 3710 46 69 Podkorytov Vassiliy KAZ 0 0+0
## 3711 47 28 Gow Scott CAN 2 1+1
## 3712 48 93 Boehm Daniel GER 1 1+0
## 3713 48 102 Komatz David AUT 1 1+0
## 3714 50 53 Janik Mateusz POL 0 0+0
## 3715 51 89 Guigonnat Antonin FRA 2 2+0
## 3716 52 62 Koiv Kauri EST 1 0+1
## 3717 53 41 Hofer Lukas ITA 2 2+0
## 3718 54 60 Krupcik Tomas CZE 1 0+1
## 3719 55 45 Davies Macx CAN 2 1+1
## 3720 56 46 Slepov Alexey RUS 2 1+1
## 3721 57 55 Dombrovski Karol LTU 2 0+2
## 3722 58 83 Finello Jeremy SUI 0 0+0
## 3723 59 65 Stenersen Torstein SWE 2 1+1
## 3724 60 95 Matiasko Miroslav SVK 0 0+0
## 3725 61 17 Doll Benedikt GER 5 1+4
## 3726 62 50 Dolder Mario SUI 1 1+0
## 3727 63 54 De Lorenzi Christian ITA 3 0+3
## 3728 64 76 Faur Remus ROU 0 0+0
## 3729 65 6 Windisch Dominik ITA 3 2+1
## 3730 66 32 Bauer Klemen SLO 2 1+1
## 3731 67 72 Dyuzhev Dmitriy BLR 2 0+2
## 3732 68 103 Puchianu Cornel ROU 2 0+2
## 3733 69 23 Kazar Matej SVK 2 1+1
## 3734 70 4 Buta George ROU 1 0+1
## 3735 71 82 Siemakov Volodymyr UKR 3 2+1
## 3736 72 78 Ermits Kalev EST 3 2+1
## 3737 72 86 Perras Scott CAN 2 2+0
## 3738 74 59 Strolia Vytautas LTU 3 1+2
## 3739 75 96 Vaclavik Adam CZE 3 1+2
## 3740 76 79 Orpana Sami FIN 1 0+1
## 3741 77 74 Gerdzhikov Dimitar BUL 1 0+1
## 3742 78 61 Hasilla Tomas SVK 2 0+2
## 3743 79 100 Tachizaki Mikito JPN 1 0+1
## 3744 80 104 Dovzan Miha SLO 1 0+1
## 3745 81 47 Braun Maxim KAZ 2 1+1
## 3746 82 27 Nelin Jesper SWE 5 3+2
## 3747 83 56 Gronman Tuomas FIN 2 2+0
## 3748 84 9 Savitskiy Yan KAZ 3 1+2
## 3749 85 66 Kim Jongmin KOR 1 0+1
## 3750 86 68 Oblak Lenart SLO 3 1+2
## 3751 87 77 Trsan Rok SLO 1 0+1
## 3752 88 71 Guzik Grzegorz POL 3 2+1
## 3753 89 75 Deksnis Ingus LAT 1 0+1
## 3754 90 80 Nagai Junji JPN 3 1+2
## 3755 91 90 Szczurek Lukasz POL 2 0+2
## 3756 92 85 Zahkna Rene EST 3 3+0
## 3757 93 97 Partalov Dimitar BUL 1 1+0
## 3758 94 64 Crnkovic Kresimir CRO 5 2+3
## 3759 95 101 Femling Peppe SWE 2 2+0
## 3760 96 38 Soukup Jaroslav CZE 5 3+2
## 3761 97 99 Slotins Roberts LAT 3 2+1
## 3762 98 51 Jaeger Martin SUI 6 2+4
## 3763 99 91 Treier Jan EST 3 1+2
## 3764 100 92 Suslavicius Rokas LTU 3 0+3
## 3765 101 84 Laponder Marcel GBR 3 2+1
## 3766 102 70 Dixon Scott GBR 5 3+2
## 3767 DNS 12 Schempp Simon GER NA
## 3768 DNS 94 Hiidensalo Olli FIN NA
## 3769 1 33 Shipulin Anton RUS 1 0+0+1+0
## 3770 2 28 Fourcade Martin FRA 2 0+1+1+0
## 3771 3 16 Semenov Sergii UKR 1 0+0+0+1
## 3772 4 32 Bjoerndalen Ole Einar NOR 1 0+0+1+0
## 3773 5 30 Schempp Simon GER 2 0+1+0+1
## 3774 6 11 Anev Krasimir BUL 1 0+1+0+0
## 3775 7 40 Tsvetkov Maxim RUS 1 0+0+0+1
## 3776 8 24 Krcmar Michal CZE 1 0+0+0+1
## 3777 9 1 Peiffer Arnd GER 2 0+1+0+1
## 3778 10 25 Bailey Lowell USA 1 0+0+0+1
## 3779 11 4 Doll Benedikt GER 2 0+1+0+1
## 3780 12 20 Garanichev Evgeniy RUS 2 1+0+0+1
## 3781 13 2 Birkeland Lars Helge NOR 1 1+0+0+0
## 3782 14 15 Boe Johannes Thingnes NOR 2 2+0+0+0
## 3783 15 3 Fillon Maillet Quentin FRA 3 0+0+1+2
## 3784 16 74 Siemakov Volodymyr UKR 1 0+1+0+0
## 3785 17 19 Gow Scott CAN 1 0+0+1+0
## 3786 18 51 Desthieux Simon FRA 2 1+0+0+1
## 3787 19 31 Weger Benjamin SUI 2 0+1+0+1
## 3788 20 70 Waeger Lorenz AUT 2 0+1+0+1
## 3789 21 42 Lesser Erik GER 3 0+1+1+1
## 3790 22 26 Lindstroem Fredrik SWE 2 0+0+0+2
## 3791 23 13 Beatrix Jean Guillaume FRA 3 0+2+0+1
## 3792 24 10 Windisch Dominik ITA 4 1+1+1+1
## 3793 25 35 Samuelsson Sebastian SWE 2 0+1+0+1
## 3794 26 57 Fourcade Simon FRA 3 1+1+1+0
## 3795 27 99 Femling Peppe SWE 1 1+0+0+0
## 3796 28 103 Gjermundshaug Vegard NOR 2 1+1+0+0
## 3797 29 81 Nordgren Leif USA 2 1+1+0+0
## 3798 30 8 Landertinger Dominik AUT 4 0+0+1+3
## 3799 31 22 Gronman Tuomas FIN 2 0+2+0+0
## 3800 32 58 L'Abee-Lund Henrik NOR 4 1+0+0+3
## 3801 33 90 Schommer Paul USA 2 0+2+0+0
## 3802 34 50 Burke Tim USA 4 0+1+1+2
## 3803 35 67 Oblak Lenart SLO 0 0+0+0+0
## 3804 36 68 Doherty Sean USA 3 1+1+0+1
## 3805 37 100 Claude Fabien FRA 4 0+3+1+0
## 3806 38 49 Chepelin Vladimir BLR 4 2+1+0+1
## 3807 39 47 Babikov Anton RUS 4 1+0+1+2
## 3808 40 86 Soukup Jaroslav CZE 3 0+1+1+1
## 3809 41 93 Grossegger Sven AUT 3 0+2+0+1
## 3810 42 75 Willeitner Michael GER 4 1+1+1+1
## 3811 43 69 Kazar Matej SVK 3 1+0+1+1
## 3812 44 17 Savitskiy Yan KAZ 3 1+0+1+1
## 3813 45 34 Pryma Artem UKR 4 1+1+2+0
## 3814 46 61 Gerdzhikov Dimitar BUL 2 1+0+0+1
## 3815 47 5 Roesch Michael BEL 3 1+1+1+0
## 3816 48 98 Abasheu Dzmitry BLR 3 0+1+1+1
## 3817 49 88 Zhyrnyi Oleksandr UKR 3 2+0+0+1
## 3818 50 39 Komatz David AUT 3 1+0+2+0
## 3819 51 54 Dolder Mario SUI 3 0+1+0+2
## 3820 52 83 Kobonoki Tsukasa JPN 2 1+0+0+1
## 3821 53 38 Iliev Vladimir BUL 2 0+0+1+1
## 3822 54 84 Podkorytov Vassiliy KAZ 3 1+2+0+0
## 3823 55 89 Kletcherov Michail BUL 2 1+0+0+1
## 3824 56 59 Hoerl Fabian AUT 3 2+0+0+1
## 3825 57 9 Moravec Ondrej CZE 4 2+1+0+1
## 3826 58 12 Bauer Klemen SLO 5 1+1+1+2
## 3827 59 64 Nelin Jesper SWE 5 1+3+1+0
## 3828 60 77 Zahkna Rene EST 2 1+1+0+0
## 3829 61 52 Bjoentegaard Erlend NOR 5 1+2+1+1
## 3830 62 63 Bricis Ilmars LAT 3 2+0+0+1
## 3831 63 7 Rastorgujevs Andrejs LAT 6 0+3+0+3
## 3832 64 95 Malyshko Dmitry RUS 4 0+0+1+3
## 3833 65 104 Dombrovski Karol LTU 2 0+0+0+2
## 3834 66 14 Guzik Grzegorz POL 3 1+1+0+1
## 3835 67 27 Mesotitsch Daniel AUT 5 1+0+2+2
## 3836 68 80 Bormolini Thomas ITA 4 0+1+2+1
## 3837 69 37 Koiv Kauri EST 4 2+0+1+1
## 3838 70 72 Vaclavik Adam CZE 5 1+2+0+2
## 3839 71 106 Finello Jeremy SUI 5 2+2+1+0
## 3840 72 18 Kaukenas Tomas LTU 5 1+0+3+1
## 3841 73 71 Pantov Anton KAZ 4 2+2+0+0
## 3842 74 43 Puchianu Cornel ROU 5 0+3+1+1
## 3843 75 41 Green Brendan CAN 6 2+1+2+1
## 3844 75 60 Gow Christian CAN 4 0+2+0+2
## 3845 77 92 Szczurek Lukasz POL 3 1+1+1+0
## 3846 78 56 Dixon Scott GBR 1 0+1+0+0
## 3847 79 66 Dovzan Miha SLO 4 2+1+0+1
## 3848 80 55 Faur Remus ROU 4 2+0+1+1
## 3849 81 44 Bischl Matthias GER 6 1+2+1+2
## 3850 82 101 Lessing Roland EST 6 2+1+2+1
## 3851 83 29 Pidruchnyi Dmytro UKR 7 2+1+2+2
## 3852 84 23 Otcenas Martin SVK 6 0+1+3+2
## 3853 85 48 Slesingr Michal CZE 7 2+2+1+2
## 3854 86 45 Wiestner Serafin SUI 7 2+2+1+2
## 3855 87 53 Eliseev Matvey RUS 6 2+2+1+1
## 3856 88 102 Sima Michal SVK 3 1+1+1+0
## 3857 89 46 Hasilla Tomas SVK 6 0+3+1+2
## 3858 90 105 Lusa Daumants LAT 4 2+1+1+0
## 3859 91 36 Hiidensalo Olli FIN 7 0+5+2+0
## 3860 92 62 Seppala Tero FIN 6 1+1+2+2
## 3861 93 97 Ozaki Kosuke JPN 4 1+1+1+1
## 3862 94 87 Zini Rudy ITA 5 3+1+0+1
## 3863 95 96 Buta George ROU 6 2+0+3+1
## 3864 96 21 Bocharnikov Sergey BLR 8 1+3+2+2
## 3865 97 73 Kim Yonggyu KOR 5 2+2+1+0
## 3866 98 107 Braun Maxim KAZ 6 2+1+0+3
## 3867 99 79 Strolia Vytautas LTU 6 2+2+1+1
## 3868 100 76 Montello Giuseppe ITA 7 1+3+1+2
## 3869 101 94 Heo Seonhoe KOR 3 0+0+2+1
## 3870 102 78 Janik Mateusz POL 5 1+1+2+1
## 3871 103 82 Varabei Maksim BLR 9 2+2+2+3
## 3872 104 85 Hodzic Edin SRB 5 0+2+1+2
## 3873 105 65 Angelis Apostolos GRE 8 2+3+1+2
## 3874 DNS 6 Hofer Lukas ITA NA
## 3875 DNS 91 Drinovec Mitja SLO NA
## 3876 DNS 108 Davies Macx CAN NA
## 3877 1 9 Boe Johannes Thingnes NOR 0 0+0+0+0
## 3878 2 17 Fillon Maillet Quentin FRA 1 1+0+0+0
## 3879 3 2 Shipulin Anton RUS 1 0+1+0+0
## 3880 4 5 Svendsen Emil Hegle NOR 2 1+0+0+1
## 3881 5 1 Fourcade Martin FRA 3 0+0+1+2
## 3882 6 13 Beatrix Jean Guillaume FRA 2 1+0+0+1
## 3883 7 3 Schempp Simon GER 1 1+0+0+0
## 3884 8 6 Lesser Erik GER 1 0+0+0+1
## 3885 9 10 Eberhard Julian AUT 2 1+1+0+0
## 3886 10 7 Bjoerndalen Ole Einar NOR 3 0+1+0+2
## 3887 11 23 Birkeland Lars Helge NOR 1 0+0+0+1
## 3888 12 15 Windisch Dominik ITA 3 2+0+1+0
## 3889 13 8 Tsvetkov Maxim RUS 3 1+0+1+1
## 3890 14 12 Babikov Anton RUS 3 1+0+0+2
## 3891 15 26 Garanichev Evgeniy RUS 3 1+1+0+1
## 3892 16 16 Bailey Lowell USA 2 0+0+1+1
## 3893 17 30 Lindstroem Fredrik SWE 2 0+0+1+1
## 3894 18 22 Semenov Sergii UKR 2 1+0+1+0
## 3895 19 14 Doll Benedikt GER 4 1+1+0+2
## 3896 20 25 Desthieux Simon FRA 5 1+1+1+2
## 3897 21 4 Peiffer Arnd GER 4 1+1+2+0
## 3898 22 21 Pidruchnyi Dmytro UKR 3 0+0+3+0
## 3899 23 19 Moravec Ondrej CZE 3 2+0+1+0
## 3900 24 20 Slesingr Michal CZE 4 0+1+3+0
## 3901 25 27 Siemakov Volodymyr UKR 3 0+0+2+1
## 3902 26 24 Rastorgujevs Andrejs LAT 7 1+2+1+3
## 3903 27 18 Weger Benjamin SUI 6 1+2+2+1
## 3904 28 11 Krcmar Michal CZE 5 1+2+0+2
## 3905 29 29 Waeger Lorenz AUT 3 2+0+0+1
## 3906 30 28 Gow Scott CAN 4 1+0+2+1
## 3907 1 100 Bailey Lowell USA 0 0+0+0+0
## 3908 2 51 Moravec Ondrej CZE 0 0+0+0+0
## 3909 3 4 Fourcade Martin FRA 2 1+0+1+0
## 3910 4 27 Lesser Erik GER 1 0+1+0+0
## 3911 5 15 Semenov Sergii UKR 1 0+0+1+0
## 3912 6 67 Krcmar Michal CZE 0 0+0+0+0
## 3913 7 1 Shipulin Anton RUS 2 2+0+0+0
## 3914 8 96 Boe Johannes Thingnes NOR 2 0+0+1+1
## 3915 9 3 Birkeland Lars Helge NOR 1 0+0+1+0
## 3916 10 11 Weger Benjamin SUI 1 0+0+0+1
## 3917 11 99 Volkov Alexey RUS 1 1+0+0+0
## 3918 12 80 Eder Simon AUT 2 0+1+0+1
## 3919 13 46 Schempp Simon GER 2 2+0+0+0
## 3920 14 101 Eberhard Julian AUT 3 2+0+1+0
## 3921 15 59 Mesotitsch Daniel AUT 1 1+0+0+0
## 3922 16 78 Anev Krasimir BUL 2 1+0+0+1
## 3923 17 6 Fillon Maillet Quentin FRA 3 1+1+0+1
## 3924 18 94 Slesingr Michal CZE 3 0+1+1+1
## 3925 19 58 Doll Benedikt GER 3 1+2+0+0
## 3926 20 73 Garanichev Evgeniy RUS 3 0+1+1+1
## 3927 21 90 Windisch Dominik ITA 3 1+0+1+1
## 3928 22 13 Beatrix Jean Guillaume FRA 2 0+2+0+0
## 3929 23 49 Nordgren Leif USA 2 1+0+0+1
## 3930 24 63 Iliev Vladimir BUL 3 2+0+1+0
## 3931 25 70 Claude Fabien FRA 3 1+1+0+1
## 3932 26 5 Landertinger Dominik AUT 3 0+2+0+1
## 3933 27 81 Svendsen Emil Hegle NOR 3 1+1+1+0
## 3934 28 61 Abasheu Dzmitry BLR 1 1+0+0+0
## 3935 29 75 Kazar Matej SVK 1 1+0+0+0
## 3936 30 21 Koiv Kauri EST 1 0+1+0+0
## 3937 31 8 Chepelin Vladimir BLR 3 0+2+0+1
## 3938 32 37 Krupcik Tomas CZE 3 2+1+0+0
## 3939 33 93 Savitskiy Yan KAZ 3 1+1+0+1
## 3940 34 77 Peiffer Arnd GER 4 3+1+0+0
## 3941 34 88 Hofer Lukas ITA 4 3+1+0+0
## 3942 36 74 Burke Tim USA 4 1+1+0+2
## 3943 37 44 Stenersen Torstein SWE 3 0+0+3+0
## 3944 38 68 Lindstroem Fredrik SWE 3 0+1+1+1
## 3945 39 16 Sinapov Anton BUL 3 2+1+0+0
## 3946 40 41 Bocharnikov Sergey BLR 3 1+1+0+1
## 3947 41 32 Pidruchnyi Dmytro UKR 4 1+1+1+1
## 3948 42 50 Davies Macx CAN 1 0+0+0+1
## 3949 43 24 Gow Scott CAN 2 0+1+0+1
## 3950 44 33 Wiestner Serafin SUI 3 0+1+1+1
## 3951 45 89 Zahkna Rene EST 2 0+1+0+1
## 3952 46 12 Kaukenas Tomas LTU 3 1+1+1+0
## 3953 47 95 Bjoerndalen Ole Einar NOR 4 0+1+2+1
## 3954 48 66 Lessing Roland EST 3 1+1+0+1
## 3955 49 48 Hiidensalo Olli FIN 3 1+1+0+1
## 3956 50 22 Dovzan Miha SLO 3 0+2+0+1
## 3957 51 40 Desthieux Simon FRA 4 1+2+1+0
## 3958 52 83 Samuelsson Sebastian SWE 4 2+1+0+1
## 3959 53 91 Nedza-Kubiniec Andrzej POL 2 0+1+1+0
## 3960 54 7 Nelin Jesper SWE 5 1+1+2+1
## 3961 55 9 Roesch Michael BEL 4 2+0+1+1
## 3962 56 14 Rastorgujevs Andrejs LAT 6 1+2+0+3
## 3963 57 55 Szczurek Lukasz POL 3 1+1+0+1
## 3964 58 23 Doherty Sean USA 4 1+1+2+0
## 3965 59 19 Bormolini Thomas ITA 4 1+0+3+0
## 3966 60 60 Hasilla Tomas SVK 3 1+0+1+1
## 3967 61 92 Yaliotnau Raman BLR 4 1+1+0+2
## 3968 62 86 Nagai Junji JPN 3 0+1+0+2
## 3969 63 62 Finello Jeremy SUI 3 0+1+1+1
## 3970 64 102 Dolder Mario SUI 4 1+1+0+2
## 3971 65 10 Otcenas Martin SVK 4 1+1+2+0
## 3972 66 57 Dombrovski Karol LTU 2 0+0+1+1
## 3973 67 56 Podkorytov Vassiliy KAZ 5 1+1+2+1
## 3974 68 47 Kobonoki Tsukasa JPN 4 2+2+0+0
## 3975 69 29 Dixon Scott GBR 2 0+0+2+0
## 3976 70 98 Tkalenko Ruslan UKR 5 0+1+1+3
## 3977 71 38 Pop Gheorghe ROU 3 1+1+0+1
## 3978 72 31 Loginov Alexander RUS 7 3+2+1+1
## 3979 73 42 Strolia Vytautas LTU 5 0+2+2+1
## 3980 74 20 Tachizaki Mikito JPN 5 2+2+1+0
## 3981 75 34 Lusa Daumants LAT 3 0+2+0+1
## 3982 76 87 Puchianu Cornel ROU 5 1+1+1+2
## 3983 77 28 Langer Thierry BEL 4 0+2+1+1
## 3984 78 54 Faur Remus ROU 4 0+1+2+1
## 3985 79 76 Seppala Tero FIN 6 1+2+1+2
## 3986 80 72 Zhyrnyi Oleksandr UKR 7 1+2+3+1
## 3987 81 26 Gerdzhikov Dimitar BUL 6 2+0+1+3
## 3988 82 64 Oblak Lenart SLO 4 1+0+2+1
## 3989 83 45 Kim Jongmin KOR 3 0+0+1+2
## 3990 84 36 Vitenko Vladislav KAZ 7 1+2+1+3
## 3991 85 18 Loukkaanhuhta Mikko FIN 6 0+0+4+2
## 3992 86 85 Green Brendan CAN 5 2+1+0+2
## 3993 87 71 Montello Giuseppe ITA 6 3+2+0+1
## 3994 88 2 Bauer Klemen SLO 7 3+1+1+2
## 3995 89 69 Heo Seonhoe KOR 5 3+0+1+1
## 3996 90 25 Guzik Grzegorz POL 6 2+1+2+1
## 3997 91 39 Sima Michal SVK 5 2+2+0+1
## 3998 92 43 Angelis Apostolos GRE 5 2+2+0+1
## 3999 93 79 Patrijuks Aleksandrs LAT 6 1+1+2+2
## 4000 94 82 Hodzic Edin SRB 5 0+2+2+1
## 4001 95 35 Gombos Karoly HUN 5 0+3+1+1
## 4002 96 84 Crnkovic Kresimir CRO 10 3+2+1+4
## 4003 97 30 Petrovic Filip CRO 8 1+1+3+3
## 4004 98 97 Starodubets Aleksandr KOR 8 2+2+1+3
## 4005 99 52 Gleave Alex GBR 7 1+3+2+1
## 4006 100 65 Krsmanovic Dejan SRB 12 5+2+2+3
## 4007 DNF 17 Gow Christian CAN NA 2+0+0
## 4008 DNS 53 Morton Damon AUS NA
## 4009 1 8 Schempp Simon GER 0 0+0+0+0
## 4010 2 4 Boe Johannes Thingnes NOR 1 0+0+0+1
## 4011 3 17 Eder Simon AUT 0 0+0+0+0
## 4012 4 7 Shipulin Anton RUS 2 0+1+1+0
## 4013 5 2 Fourcade Martin FRA 3 1+0+0+2
## 4014 6 3 Bailey Lowell USA 0 0+0+0+0
## 4015 7 22 Landertinger Dominik AUT 2 0+0+0+2
## 4016 8 27 Lindstroem Fredrik SWE 1 0+0+1+0
## 4017 9 1 Doll Benedikt GER 2 0+0+2+0
## 4018 10 9 Peiffer Arnd GER 2 0+0+0+2
## 4019 11 18 Garanichev Evgeniy RUS 2 0+0+2+0
## 4020 12 16 Anev Krasimir BUL 1 0+0+0+1
## 4021 13 29 Slesingr Michal CZE 2 0+0+1+1
## 4022 14 21 Boe Tarjei NOR 2 0+0+1+1
## 4023 15 24 Fillon Maillet Quentin FRA 3 1+2+0+0
## 4024 16 5 Moravec Ondrej CZE 2 0+0+1+1
## 4025 17 30 Bauer Klemen SLO 2 1+1+0+0
## 4026 18 14 Beatrix Jean Guillaume FRA 2 0+0+2+0
## 4027 19 11 Eberhard Julian AUT 5 1+2+1+1
## 4028 20 19 Iliev Vladimir BUL 3 0+1+0+2
## 4029 21 10 Lesser Erik GER 3 0+0+3+0
## 4030 22 15 Krcmar Michal CZE 1 1+0+0+0
## 4031 23 6 Bjoerndalen Ole Einar NOR 3 1+2+0+0
## 4032 24 23 Windisch Dominik ITA 4 1+0+3+0
## 4033 25 25 Pidruchnyi Dmytro UKR 4 1+1+1+1
## 4034 26 13 Tsvetkov Maxim RUS 3 1+0+1+1
## 4035 27 20 Semenov Sergii UKR 4 1+1+0+2
## 4036 28 12 Svendsen Emil Hegle NOR 5 1+2+2+0
## 4037 29 28 Wiestner Serafin SUI 4 2+1+1+0
## 4038 30 26 Dolder Mario SUI 4 0+1+2+1
## 4039 1 3 Fourcade Martin FRA 1 0+0+0+1
## 4040 2 2 Boe Johannes Thingnes NOR 3 1+1+1+0
## 4041 3 8 Bjoerndalen Ole Einar NOR 1 0+0+0+1
## 4042 4 21 Shipulin Anton RUS 1 0+1+0+0
## 4043 5 5 Moravec Ondrej CZE 2 0+0+1+1
## 4044 6 4 Bailey Lowell USA 1 0+0+1+0
## 4045 7 6 Anev Krasimir BUL 1 0+0+0+1
## 4046 8 7 Eberhard Julian AUT 3 1+1+0+1
## 4047 9 14 Boe Tarjei NOR 2 1+0+0+1
## 4048 10 9 Schempp Simon GER 3 0+0+2+1
## 4049 11 1 Doll Benedikt GER 3 1+1+1+0
## 4050 12 22 Eder Simon AUT 3 1+1+0+1
## 4051 13 27 Beatrix Jean Guillaume FRA 1 1+0+0+0
## 4052 14 28 Pidruchnyi Dmytro UKR 2 1+0+1+0
## 4053 15 41 Semenov Sergii UKR 1 0+0+1+0
## 4054 16 33 Bauer Klemen SLO 2 0+0+0+2
## 4055 17 30 Lindstroem Fredrik SWE 1 1+0+0+0
## 4056 18 13 Iliev Vladimir BUL 4 2+1+1+0
## 4057 19 12 Peiffer Arnd GER 4 1+0+1+2
## 4058 20 10 Garanichev Evgeniy RUS 4 1+1+1+1
## 4059 21 17 Landertinger Dominik AUT 4 1+0+2+1
## 4060 22 43 Fillon Maillet Quentin FRA 3 1+2+0+0
## 4061 23 32 Gow Christian CAN 1 0+0+1+0
## 4062 24 47 Otcenas Martin SVK 1 0+0+0+1
## 4063 25 18 Windisch Dominik ITA 3 2+1+0+0
## 4064 26 19 Wiestner Serafin SUI 3 2+1+0+0
## 4065 27 35 Desthieux Simon FRA 3 1+0+0+2
## 4066 28 37 Lesser Erik GER 4 0+0+2+2
## 4067 29 15 Dolder Mario SUI 3 0+1+1+1
## 4068 30 42 Slesingr Michal CZE 3 0+0+0+3
## 4069 31 51 Roesch Michael BEL 2 1+0+1+0
## 4070 32 40 Burke Tim USA 3 1+0+1+1
## 4071 33 24 Savitskiy Yan KAZ 4 2+1+0+1
## 4072 34 44 Montello Giuseppe ITA 1 0+1+0+0
## 4073 35 29 Koiv Kauri EST 2 1+0+0+1
## 4074 36 48 Hiidensalo Olli FIN 3 1+0+0+2
## 4075 37 57 Rastorgujevs Andrejs LAT 5 0+1+2+2
## 4076 38 20 Puchianu Cornel ROU 5 3+0+1+1
## 4077 39 49 Babikov Anton RUS 4 2+1+1+0
## 4078 40 45 Bocharnikov Sergey BLR 3 0+1+1+1
## 4079 41 31 Kaukenas Tomas LTU 4 0+1+1+2
## 4080 42 23 Faur Remus ROU 3 0+0+2+1
## 4081 43 16 Hasilla Tomas SVK 5 0+1+3+1
## 4082 44 59 Nelin Jesper SWE 4 2+0+1+1
## 4083 45 58 Zhyrnyi Oleksandr UKR 2 1+0+0+1
## 4084 46 60 Stenersen Torstein SWE 3 2+1+0+0
## 4085 47 25 Gow Scott CAN 7 0+3+3+1
## 4086 48 46 Bormolini Thomas ITA 3 0+2+1+0
## 4087 49 26 Nordgren Leif USA 5 2+0+2+1
## 4088 50 50 Mesotitsch Daniel AUT 5 1+1+2+1
## 4089 51 52 Lessing Roland EST 4 0+2+1+1
## 4090 52 38 Green Brendan CAN 5 3+1+0+1
## 4091 53 55 Weger Benjamin SUI 6 3+3+0+0
## 4092 54 34 Vaclavik Adam CZE 9 2+3+2+2
## 4093 55 39 Doherty Sean USA 9 2+3+3+1
## 4094 56 54 Strolia Vytautas LTU 6 2+2+1+1
## 4095 57 53 Guzik Grzegorz POL 6 3+1+1+1
## 4096 DNF 11 Sinapov Anton BUL NA 3
## 4097 DNS 36 Svendsen Emil Hegle NOR NA
## 4098 DNS 56 Hofer Lukas ITA NA
## 4099 1 82 Doll Benedikt GER 0 0+0
## 4100 2 96 Boe Johannes Thingnes NOR 0 0+0
## 4101 3 4 Fourcade Martin FRA 2 1+1
## 4102 4 77 Bailey Lowell USA 0 0+0
## 4103 5 81 Moravec Ondrej CZE 1 0+1
## 4104 6 40 Anev Krasimir BUL 0 0+0
## 4105 7 10 Eberhard Julian AUT 2 1+1
## 4106 8 55 Bjoerndalen Ole Einar NOR 1 0+1
## 4107 9 34 Schempp Simon GER 1 1+0
## 4108 10 9 Garanichev Evgeniy RUS 1 1+0
## 4109 11 62 Sinapov Anton BUL 0 0+0
## 4110 12 32 Peiffer Arnd GER 2 0+2
## 4111 13 1 Iliev Vladimir BUL 1 1+0
## 4112 14 84 Boe Tarjei NOR 1 0+1
## 4113 15 64 Dolder Mario SUI 0 0+0
## 4114 16 65 Hasilla Tomas SVK 0 0+0
## 4115 17 18 Landertinger Dominik AUT 3 1+2
## 4116 18 2 Windisch Dominik ITA 2 1+1
## 4117 18 48 Wiestner Serafin SUI 2 0+2
## 4118 20 30 Puchianu Cornel ROU 1 1+0
## 4119 21 52 Shipulin Anton RUS 3 1+2
## 4120 22 57 Eder Simon AUT 3 1+2
## 4121 23 74 Faur Remus ROU 0 0+0
## 4122 24 5 Savitskiy Yan KAZ 2 0+2
## 4123 25 16 Gow Scott CAN 2 1+1
## 4124 26 14 Nordgren Leif USA 1 0+1
## 4125 27 7 Beatrix Jean Guillaume FRA 2 2+0
## 4126 28 49 Pidruchnyi Dmytro UKR 2 1+1
## 4127 29 33 Koiv Kauri EST 0 0+0
## 4128 30 80 Lindstroem Fredrik SWE 2 0+2
## 4129 31 15 Kaukenas Tomas LTU 1 0+1
## 4130 32 24 Gow Christian CAN 0 0+0
## 4131 33 88 Bauer Klemen SLO 1 0+1
## 4132 34 42 Vaclavik Adam CZE 4 2+2
## 4133 34 46 Desthieux Simon FRA 3 2+1
## 4134 36 101 Svendsen Emil Hegle NOR 2 1+1
## 4135 37 22 Lesser Erik GER 3 0+3
## 4136 38 58 Green Brendan CAN 1 1+0
## 4137 39 97 Doherty Sean USA 2 2+0
## 4138 40 43 Burke Tim USA 2 0+2
## 4139 41 11 Semenov Sergii UKR 3 0+3
## 4140 42 86 Slesingr Michal CZE 3 2+1
## 4141 43 20 Fillon Maillet Quentin FRA 4 1+3
## 4142 44 47 Montello Giuseppe ITA 2 1+1
## 4143 45 100 Bocharnikov Sergey BLR 2 0+2
## 4144 46 79 Bormolini Thomas ITA 1 0+1
## 4145 47 51 Otcenas Martin SVK 2 0+2
## 4146 48 38 Hiidensalo Olli FIN 1 0+1
## 4147 49 29 Babikov Anton RUS 3 1+2
## 4148 50 36 Mesotitsch Daniel AUT 2 1+1
## 4149 51 19 Roesch Michael BEL 3 2+1
## 4150 52 66 Lessing Roland EST 3 2+1
## 4151 53 92 Guzik Grzegorz POL 1 0+1
## 4152 54 71 Strolia Vytautas LTU 1 1+0
## 4153 55 6 Weger Benjamin SUI 2 0+2
## 4154 56 3 Hofer Lukas ITA 2 1+1
## 4155 57 93 Rastorgujevs Andrejs LAT 4 3+1
## 4156 58 87 Zhyrnyi Oleksandr UKR 2 2+0
## 4157 59 12 Nelin Jesper SWE 3 1+2
## 4158 60 26 Stenersen Torstein SWE 2 2+0
## 4159 61 67 Krcmar Michal CZE 4 3+1
## 4160 62 90 Sima Michal SVK 1 1+0
## 4161 63 78 Braun Maxim KAZ 2 1+1
## 4162 64 56 Dovzan Miha SLO 3 2+1
## 4163 65 45 Chepelin Vladimir BLR 4 1+3
## 4164 66 13 Gronman Tuomas FIN 2 1+1
## 4165 67 39 Tachizaki Mikito JPN 2 0+2
## 4166 68 23 Pantov Anton KAZ 2 0+2
## 4167 69 53 Tsvetkov Maxim RUS 3 2+1
## 4168 70 91 Gerdzhikov Dimitar BUL 2 1+1
## 4169 71 69 Seppala Tero FIN 2 1+1
## 4170 72 70 Szczurek Lukasz POL 1 1+0
## 4171 73 73 Siemakov Volodymyr UKR 2 0+2
## 4172 74 99 Buta George ROU 2 1+1
## 4173 75 72 Kobonoki Tsukasa JPN 3 0+3
## 4174 76 102 Samuelsson Sebastian SWE 4 3+1
## 4175 77 17 Kazar Matej SVK 5 4+1
## 4176 78 98 Ermits Kalev EST 3 1+2
## 4177 79 103 Davies Macx CAN 3 2+1
## 4178 80 83 Kim Yonggyu KOR 2 2+0
## 4179 81 94 Finello Jeremy SUI 2 1+1
## 4180 82 68 Varabei Maksim BLR 4 2+2
## 4181 83 50 Crnkovic Kresimir CRO 5 2+3
## 4182 84 54 Bricis Ilmars LAT 3 1+2
## 4183 85 75 Fourcade Simon FRA 4 3+1
## 4184 86 85 Ozaki Kosuke JPN 2 1+1
## 4185 87 59 Morton Damon AUS 2 1+1
## 4186 88 61 Patrijuks Aleksandrs LAT 2 0+2
## 4187 89 31 Lee Inbok KOR 2 1+1
## 4188 90 25 Langer Thierry BEL 2 1+1
## 4189 91 27 Gombos Karoly HUN 1 0+1
## 4190 92 8 Yaliotnau Raman BLR 7 2+5
## 4191 93 37 Trsan Rok SLO 3 0+3
## 4192 94 35 Penar Rafal POL 2 1+1
## 4193 95 41 Dombrovski Karol LTU 4 1+3
## 4194 96 89 Kim Jongmin KOR 3 2+1
## 4195 97 21 Krsmanovic Dejan SRB 4 3+1
## 4196 98 28 Dixon Scott GBR 5 4+1
## 4197 99 60 Hodzic Edin SRB 5 3+2
## 4198 100 76 Petrovic Filip CRO 4 2+2
## 4199 101 95 Angelis Apostolos GRE 4 1+3
## 4200 102 63 Fountain Vinny GBR 5 1+4
## 4201 DNS 44 Ustuntas Mehmet TUR NA
## 4202 1 5 Peiffer Arnd GER 0 0+0+0+0
## 4203 2 6 Eder Simon AUT 2 0+0+1+1
## 4204 3 3 Svendsen Emil Hegle NOR 2 0+0+1+1
## 4205 4 2 Moravec Ondrej CZE 2 0+0+1+1
## 4206 5 1 Fourcade Martin FRA 4 0+1+1+2
## 4207 6 15 Hofer Lukas ITA 1 0+0+1+0
## 4208 7 4 Boe Johannes Thingnes NOR 3 0+1+1+1
## 4209 8 13 Christiansen Vetle Sjaastad NOR 1 0+0+0+1
## 4210 9 7 Rastorgujevs Andrejs LAT 4 0+0+1+3
## 4211 10 29 Shipulin Anton RUS 2 0+0+0+2
## 4212 11 32 Boe Tarjei NOR 1 0+1+0+0
## 4213 12 23 Garanichev Evgeniy RUS 2 0+0+2+0
## 4214 12 24 Desthieux Simon FRA 2 1+0+1+0
## 4215 14 12 Rees Roman GER 1 0+1+0+0
## 4216 15 18 Lapshin Timofei KOR 2 1+0+0+1
## 4217 16 22 Anev Krasimir BUL 2 0+2+0+0
## 4218 17 21 Birkeland Lars Helge NOR 1 1+0+0+0
## 4219 18 44 Doherty Sean USA 0 0+0+0+0
## 4220 19 27 Eliseev Matvey RUS 2 0+0+1+1
## 4221 20 30 Doll Benedikt GER 3 2+0+1+0
## 4222 21 26 Pidruchnyi Dmytro UKR 2 0+0+1+1
## 4223 22 10 Roesch Michael BEL 3 1+0+2+0
## 4224 23 11 Landertinger Dominik AUT 4 1+1+1+1
## 4225 24 17 Windisch Dominik ITA 4 2+0+2+0
## 4226 25 19 Graf Florian GER 4 0+2+1+1
## 4227 26 25 Samuelsson Sebastian SWE 3 0+3+0+0
## 4228 27 16 Bailey Lowell USA 3 0+0+1+2
## 4229 28 31 Mesotitsch Daniel AUT 2 1+0+0+1
## 4230 29 8 Bjoerndalen Ole Einar NOR 5 1+3+1+0
## 4231 30 33 Iliev Vladimir BUL 3 0+0+2+1
## 4232 31 40 Weger Benjamin SUI 3 1+0+2+0
## 4233 32 14 Krcmar Michal CZE 5 2+1+1+1
## 4234 33 35 Slesingr Michal CZE 5 2+0+2+1
## 4235 34 36 Dolder Mario SUI 4 1+0+1+2
## 4236 35 41 Claude Fabien FRA 4 1+1+1+1
## 4237 36 42 Pryma Artem UKR 2 1+0+1+0
## 4238 37 50 Gow Christian CAN 1 0+0+1+0
## 4239 38 49 Abasheu Dzmitry BLR 1 0+0+0+1
## 4240 39 46 Trsan Rok SLO 1 0+0+0+1
## 4241 40 20 Bauer Klemen SLO 6 1+1+3+1
## 4242 41 47 Semenov Sergii UKR 4 0+2+2+0
## 4243 42 34 Nawrath Philipp GER 5 0+2+1+2
## 4244 43 43 Nordgren Leif USA 4 0+2+2+0
## 4245 44 28 Kaukenas Tomas LTU 4 2+1+1+0
## 4246 45 56 Lessing Roland EST 3 2+0+1+0
## 4247 46 54 Gerdzhikov Dimitar BUL 2 0+1+1+0
## 4248 47 51 Kobonoki Tsukasa JPN 3 0+1+2+0
## 4249 48 55 Bocharnikov Sergey BLR 4 0+1+1+2
## 4250 49 58 Lindstroem Fredrik SWE 4 0+2+1+1
## 4251 50 45 Green Brendan CAN 3 0+1+0+2
## 4252 51 57 Zhyrnyi Oleksandr UKR 4 2+0+2+0
## 4253 52 53 Zahkna Rene EST 3 2+1+0+0
## 4254 53 39 Hiidensalo Olli FIN 9 1+2+3+3
## 4255 54 59 Siemakov Volodymyr UKR 6 3+2+0+1
## 4256 DNF 48 Fillon Maillet Quentin FRA NA 0+0+2
## 4257 DNS 9 Eberhard Julian AUT NA
## 4258 DNS 37 Savitskiy Yan KAZ NA
## 4259 DNS 38 Babikov Anton RUS NA
## 4260 DNS 52 Faur Remus ROU NA
## 4261 DNS 60 Tsvetkov Maxim RUS NA
## 4262 1 38 Fourcade Martin FRA 1 0+1
## 4263 2 24 Moravec Ondrej CZE 0 0+0
## 4264 3 20 Svendsen Emil Hegle NOR 0 0+0
## 4265 4 3 Boe Johannes Thingnes NOR 0 0+0
## 4266 5 22 Peiffer Arnd GER 0 0+0
## 4267 6 45 Eder Simon AUT 1 0+1
## 4268 7 42 Rastorgujevs Andrejs LAT 1 0+1
## 4269 8 23 Bjoerndalen Ole Einar NOR 1 1+0
## 4270 9 40 Eberhard Julian AUT 2 2+0
## 4271 10 48 Roesch Michael BEL 0 0+0
## 4272 11 10 Landertinger Dominik AUT 1 1+0
## 4273 12 37 Rees Roman GER 0 0+0
## 4274 13 61 Christiansen Vetle Sjaastad NOR 0 0+0
## 4275 14 2 Krcmar Michal CZE 0 0+0
## 4276 15 44 Hofer Lukas ITA 2 2+0
## 4277 16 28 Bailey Lowell USA 0 0+0
## 4278 17 29 Windisch Dominik ITA 1 0+1
## 4279 18 80 Lapshin Timofei KOR 1 0+1
## 4280 19 1 Graf Florian GER 1 1+0
## 4281 20 50 Bauer Klemen SLO 1 0+1
## 4282 21 25 Birkeland Lars Helge NOR 1 1+0
## 4283 21 57 Anev Krasimir BUL 1 0+1
## 4284 23 30 Garanichev Evgeniy RUS 2 0+2
## 4285 24 18 Desthieux Simon FRA 2 2+0
## 4286 25 6 Samuelsson Sebastian SWE 1 0+1
## 4287 26 8 Pidruchnyi Dmytro UKR 1 0+1
## 4288 27 4 Eliseev Matvey RUS 1 1+0
## 4289 28 5 Kaukenas Tomas LTU 0 0+0
## 4290 29 27 Shipulin Anton RUS 3 1+2
## 4291 30 41 Doll Benedikt GER 3 1+2
## 4292 31 13 Mesotitsch Daniel AUT 0 0+0
## 4293 32 15 Boe Tarjei NOR 2 0+2
## 4294 33 47 Iliev Vladimir BUL 2 0+2
## 4295 34 75 Nawrath Philipp GER 1 1+0
## 4296 35 31 Slesingr Michal CZE 1 1+0
## 4297 36 17 Dolder Mario SUI 2 0+2
## 4298 37 34 Savitskiy Yan KAZ 1 1+0
## 4299 38 74 Babikov Anton RUS 0 0+0
## 4300 39 67 Hiidensalo Olli FIN 1 0+1
## 4301 40 26 Weger Benjamin SUI 0 0+0
## 4302 41 93 Claude Fabien FRA 1 1+0
## 4303 42 46 Pryma Artem UKR 1 0+1
## 4304 43 14 Nordgren Leif USA 2 1+1
## 4305 44 71 Doherty Sean USA 1 0+1
## 4306 45 21 Green Brendan CAN 0 0+0
## 4307 46 62 Trsan Rok SLO 0 0+0
## 4308 47 12 Semenov Sergii UKR 3 1+2
## 4309 48 43 Fillon Maillet Quentin FRA 3 1+2
## 4310 49 84 Abasheu Dzmitry BLR 1 0+1
## 4311 50 77 Gow Christian CAN 0 0+0
## 4312 51 92 Kobonoki Tsukasa JPN 1 0+1
## 4313 52 76 Faur Remus ROU 0 0+0
## 4314 53 66 Zahkna Rene EST 1 1+0
## 4315 54 96 Gerdzhikov Dimitar BUL 1 0+1
## 4316 55 7 Bocharnikov Sergey BLR 3 0+3
## 4317 56 78 Lessing Roland EST 2 1+1
## 4318 57 87 Zhyrnyi Oleksandr UKR 2 0+2
## 4319 58 32 Lindstroem Fredrik SWE 2 0+2
## 4320 59 58 Siemakov Volodymyr UKR 2 0+2
## 4321 60 33 Tsvetkov Maxim RUS 2 0+2
## 4322 61 36 Beatrix Jean Guillaume FRA 3 0+3
## 4323 62 99 Finello Jeremy SUI 1 0+1
## 4324 63 70 Varabei Maksim BLR 2 1+1
## 4325 64 63 Vaclavik Adam CZE 3 1+2
## 4326 65 60 Waeger Lorenz AUT 2 1+1
## 4327 66 54 Montello Giuseppe ITA 2 0+2
## 4328 67 39 Gow Scott CAN 2 1+1
## 4329 68 49 Chepelin Vladimir BLR 4 1+3
## 4330 69 65 Podkorytov Vassiliy KAZ 1 1+0
## 4331 70 64 Kazar Matej SVK 2 1+1
## 4332 71 88 Soukup Jaroslav CZE 2 0+2
## 4333 72 19 Sinapov Anton BUL 4 3+1
## 4334 73 73 Yeremin Roman KAZ 4 3+1
## 4335 74 86 Oblak Lenart SLO 0 0+0
## 4336 75 90 Buta George ROU 1 1+0
## 4337 76 68 Wiestner Serafin SUI 4 3+1
## 4338 77 72 Tachizaki Mikito JPN 2 0+2
## 4339 78 55 Dovzan Miha SLO 3 3+0
## 4340 79 101 Soederhielm Tiio SWE 2 0+2
## 4341 80 51 Otcenas Martin SVK 2 1+1
## 4342 81 16 Gronman Tuomas FIN 2 1+1
## 4343 82 69 Szczurek Lukasz POL 0 0+0
## 4344 83 9 Hasilla Tomas SVK 3 0+3
## 4345 84 100 Schommer Paul USA 3 2+1
## 4346 85 85 Strolia Vytautas LTU 4 2+2
## 4347 86 52 Fourcade Simon FRA 5 4+1
## 4348 87 89 Remmelg Martin EST 2 2+0
## 4349 88 35 Puchianu Cornel ROU 5 2+3
## 4350 89 56 Angelis Apostolos GRE 2 1+1
## 4351 90 81 Braun Maxim KAZ 3 1+2
## 4352 91 94 Bormolini Thomas ITA 4 2+2
## 4353 92 53 Dombrovski Karol LTU 3 2+1
## 4354 93 83 Hoerl Fabian AUT 3 2+1
## 4355 94 97 Malyshko Dmitry RUS 4 2+2
## 4356 95 91 Seppala Tero FIN 4 0+4
## 4357 96 59 Stenersen Torstein SWE 4 3+1
## 4358 97 11 Guzik Grzegorz POL 2 2+0
## 4359 98 79 Bricis Ilmars LAT 3 2+1
## 4360 99 98 Nedza-Kubiniec Andrzej POL 3 3+0
## 4361 100 82 Lusa Daumants LAT 5 3+2
## 4362 101 95 Kim Jongmin KOR 4 2+2
## 4363 1 1 Fourcade Martin FRA 1 0+1+0+0
## 4364 2 6 Schempp Simon GER 2 1+1+0+0
## 4365 3 16 Babikov Anton RUS 1 0+0+0+1
## 4366 4 20 Moravec Ondrej CZE 2 1+0+0+1
## 4367 5 24 Pidruchnyi Dmytro UKR 1 0+0+0+1
## 4368 6 19 Eliseev Matvey RUS 2 0+1+1+0
## 4369 7 5 Bjoerndalen Ole Einar NOR 2 1+0+1+0
## 4370 8 11 Fillon Maillet Quentin FRA 2 0+1+1+0
## 4371 9 3 Boe Johannes Thingnes NOR 3 2+0+1+0
## 4372 10 15 Desthieux Simon FRA 2 1+0+1+0
## 4373 11 8 Lesser Erik GER 2 1+1+0+0
## 4374 12 2 Shipulin Anton RUS 2 0+1+1+0
## 4375 13 23 Beatrix Jean Guillaume FRA 0 0+0+0+0
## 4376 14 7 Peiffer Arnd GER 1 1+0+0+0
## 4377 15 21 Birkeland Lars Helge NOR 2 0+0+2+0
## 4378 16 30 Windisch Dominik ITA 3 0+0+2+1
## 4379 17 27 Semenov Sergii UKR 3 0+1+1+1
## 4380 18 10 Eberhard Julian AUT 5 1+1+2+1
## 4381 19 12 Krcmar Michal CZE 3 0+1+1+1
## 4382 20 28 Bjoentegaard Erlend NOR 4 1+0+1+2
## 4383 21 9 Bailey Lowell USA 3 0+1+0+2
## 4384 22 4 Tsvetkov Maxim RUS 2 0+0+1+1
## 4385 23 17 Eder Simon AUT 3 0+0+3+0
## 4386 24 14 Doll Benedikt GER 5 1+1+1+2
## 4387 25 13 Rastorgujevs Andrejs LAT 5 1+1+3+0
## 4388 26 22 Roesch Michael BEL 2 1+0+1+0
## 4389 27 29 Soukup Jaroslav CZE 4 0+0+1+3
## 4390 28 26 Iliev Vladimir BUL 4 1+1+1+1
## 4391 29 25 Samuelsson Sebastian SWE 4 1+2+1+0
## 4392 30 18 Slesingr Michal CZE 6 3+0+1+2
## 4393 1 1 Fourcade Martin FRA 1 0+1+0+0
## 4394 2 2 Shipulin Anton RUS 2 0+0+1+1
## 4395 3 16 Fillon Maillet Quentin FRA 0 0+0+0+0
## 4396 4 17 Schempp Simon GER 0 0+0+0+0
## 4397 5 4 Boe Johannes Thingnes NOR 3 1+0+0+2
## 4398 6 30 Roesch Michael BEL 0 0+0+0+0
## 4399 7 6 Rastorgujevs Andrejs LAT 2 0+0+2+0
## 4400 8 31 Beatrix Jean Guillaume FRA 1 0+0+0+1
## 4401 9 20 Bailey Lowell USA 2 1+0+1+0
## 4402 10 28 Krcmar Michal CZE 1 0+0+1+0
## 4403 11 41 Garanichev Evgeniy RUS 0 0+0+0+0
## 4404 12 14 Bjoerndalen Ole Einar NOR 2 0+1+1+0
## 4405 13 9 Eberhard Julian AUT 4 1+1+2+0
## 4406 14 12 Tsvetkov Maxim RUS 2 2+0+0+0
## 4407 15 25 Doll Benedikt GER 2 1+0+1+0
## 4408 16 10 Bjoentegaard Erlend NOR 3 0+0+2+1
## 4409 17 22 Pidruchnyi Dmytro UKR 1 0+0+0+1
## 4410 18 13 Samuelsson Sebastian SWE 3 0+0+1+2
## 4411 19 44 Slesingr Michal CZE 2 1+1+0+0
## 4412 20 19 Soukup Jaroslav CZE 1 0+0+0+1
## 4413 21 7 Semenov Sergii UKR 3 0+1+1+1
## 4414 22 5 Iliev Vladimir BUL 3 1+0+0+2
## 4415 23 35 Desthieux Simon FRA 3 1+0+1+1
## 4416 24 15 Lesser Erik GER 3 0+0+2+1
## 4417 25 21 Windisch Dominik ITA 4 0+1+2+1
## 4418 26 11 Peiffer Arnd GER 3 0+1+2+0
## 4419 27 23 Pryma Artem UKR 3 1+1+1+0
## 4420 28 26 Mesotitsch Daniel AUT 3 0+1+2+0
## 4421 29 24 Wiestner Serafin SUI 3 0+1+1+1
## 4422 30 32 Hofer Lukas ITA 3 0+2+1+0
## 4423 31 49 Eder Simon AUT 1 0+0+1+0
## 4424 32 48 Eliseev Matvey RUS 2 0+0+2+0
## 4425 33 33 Chepelin Vladimir BLR 4 0+1+2+1
## 4426 34 50 Babikov Anton RUS 3 0+2+0+1
## 4427 35 36 Birkeland Lars Helge NOR 4 1+1+0+2
## 4428 36 46 Bischl Matthias GER 2 0+0+1+1
## 4429 37 38 Anev Krasimir BUL 3 0+0+2+1
## 4430 38 39 Hiidensalo Olli FIN 3 0+0+2+1
## 4431 39 47 Lindstroem Fredrik SWE 3 2+0+0+1
## 4432 40 18 Gow Scott CAN 3 0+2+1+0
## 4433 41 45 Savitskiy Yan KAZ 4 1+0+0+3
## 4434 42 40 Dolder Mario SUI 3 1+0+1+1
## 4435 43 42 Otcenas Martin SVK 4 0+1+2+1
## 4436 44 53 Kazar Matej SVK 2 0+0+1+1
## 4437 45 27 Kilchytskyy Vitaliy UKR 5 2+0+1+2
## 4438 46 37 Bauer Klemen SLO 6 1+2+2+1
## 4439 47 60 Malyshko Dmitry RUS 3 1+0+0+2
## 4440 48 34 Yaliotnau Raman BLR 3 0+0+1+2
## 4441 49 29 Komatz David AUT 5 1+0+2+2
## 4442 50 8 Moravec Ondrej CZE 6 0+5+1+0
## 4443 51 43 Hasilla Tomas SVK 4 1+0+2+1
## 4444 52 54 Green Brendan CAN 5 1+0+3+1
## 4445 53 51 Dovzan Miha SLO 4 0+0+3+1
## 4446 54 56 Femling Peppe SWE 6 0+3+2+1
## 4447 55 59 Sinapov Anton BUL 6 2+1+2+1
## 4448 56 52 Varabei Maksim BLR 9 4+1+2+2
## 4449 57 58 Oblak Lenart SLO 6 0+1+3+2
## 4450 LAP 55 Currier Russell USA NA 5+2+0
## 4451 DNS 3 Svendsen Emil Hegle NOR NA
## 4452 DNS 57 Gerdzhikov Dimitar BUL NA
## 4453 1 31 Fourcade Martin FRA 1 0+1
## 4454 2 16 Shipulin Anton RUS 0 0+0
## 4455 3 25 Svendsen Emil Hegle NOR 1 0+1
## 4456 4 22 Boe Johannes Thingnes NOR 1 1+0
## 4457 5 38 Iliev Vladimir BUL 1 0+1
## 4458 6 7 Rastorgujevs Andrejs LAT 1 0+1
## 4459 7 42 Semenov Sergii UKR 0 0+0
## 4460 8 43 Moravec Ondrej CZE 0 0+0
## 4461 9 20 Eberhard Julian AUT 3 2+1
## 4462 10 73 Bjoentegaard Erlend NOR 1 0+1
## 4463 11 11 Peiffer Arnd GER 0 0+0
## 4464 12 6 Tsvetkov Maxim RUS 0 0+0
## 4465 13 44 Samuelsson Sebastian SWE 1 0+1
## 4466 14 2 Bjoerndalen Ole Einar NOR 1 1+0
## 4467 15 45 Lesser Erik GER 1 0+1
## 4468 16 34 Fillon Maillet Quentin FRA 1 1+0
## 4469 17 27 Schempp Simon GER 1 0+1
## 4470 18 15 Gow Scott CAN 0 0+0
## 4471 19 66 Soukup Jaroslav CZE 0 0+0
## 4472 20 3 Bailey Lowell USA 1 0+1
## 4473 21 33 Windisch Dominik ITA 1 1+0
## 4474 22 29 Pidruchnyi Dmytro UKR 1 1+0
## 4475 23 1 Pryma Artem UKR 1 1+0
## 4476 24 36 Wiestner Serafin SUI 2 0+2
## 4477 25 30 Doll Benedikt GER 3 2+1
## 4478 26 5 Mesotitsch Daniel AUT 1 0+1
## 4479 27 57 Kilchytskyy Vitaliy UKR 0 0+0
## 4480 28 9 Krcmar Michal CZE 2 0+2
## 4481 29 50 Komatz David AUT 0 0+0
## 4482 30 23 Roesch Michael BEL 1 0+1
## 4483 31 67 Beatrix Jean Guillaume FRA 2 0+2
## 4484 32 48 Hofer Lukas ITA 1 1+0
## 4485 33 8 Chepelin Vladimir BLR 2 1+1
## 4486 34 81 Yaliotnau Raman BLR 1 1+0
## 4487 35 13 Desthieux Simon FRA 1 0+1
## 4488 36 35 Birkeland Lars Helge NOR 2 1+1
## 4489 37 24 Bauer Klemen SLO 2 1+1
## 4490 38 21 Anev Krasimir BUL 1 0+1
## 4491 39 71 Hiidensalo Olli FIN 1 0+1
## 4492 40 80 Dolder Mario SUI 2 0+2
## 4493 41 47 Garanichev Evgeniy RUS 2 1+1
## 4494 42 40 Otcenas Martin SVK 1 0+1
## 4495 43 32 Hasilla Tomas SVK 1 1+0
## 4496 44 26 Slesingr Michal CZE 3 3+0
## 4497 45 77 Savitskiy Yan KAZ 2 1+1
## 4498 46 72 Bischl Matthias GER 1 0+1
## 4499 47 12 Lindstroem Fredrik SWE 3 1+2
## 4500 48 46 Eliseev Matvey RUS 4 1+3
## 4501 49 19 Eder Simon AUT 3 0+3
## 4502 50 10 Babikov Anton RUS 2 2+0
## 4503 51 51 Dovzan Miha SLO 1 0+1
## 4504 52 39 Varabei Maksim BLR 2 0+2
## 4505 53 63 Kazar Matej SVK 2 1+1
## 4506 54 37 Green Brendan CAN 2 1+1
## 4507 55 78 Currier Russell USA 2 1+1
## 4508 56 83 Femling Peppe SWE 2 1+1
## 4509 57 84 Gerdzhikov Dimitar BUL 0 0+0
## 4510 58 90 Oblak Lenart SLO 0 0+0
## 4511 59 60 Sinapov Anton BUL 2 1+1
## 4512 60 61 Malyshko Dmitry RUS 3 1+2
## 4513 61 82 Begue Aristide FRA 2 2+0
## 4514 62 102 Finello Jeremy SUI 2 0+2
## 4515 63 98 Sima Michal SVK 2 0+2
## 4516 64 65 Braun Maxim KAZ 1 1+0
## 4517 65 18 Fourcade Simon FRA 2 1+1
## 4518 66 28 Weger Benjamin SUI 3 2+1
## 4519 67 56 Kaukenas Tomas LTU 3 1+2
## 4520 68 58 Tachizaki Mikito JPN 2 1+1
## 4521 69 95 Waeger Lorenz AUT 2 1+1
## 4522 70 17 Puchianu Cornel ROU 3 0+3
## 4523 71 69 Guzik Grzegorz POL 1 0+1
## 4524 72 101 Zhyrnyi Oleksandr UKR 2 1+1
## 4525 73 88 Podkorytov Vassiliy KAZ 2 1+1
## 4526 74 75 Davies Macx CAN 2 1+1
## 4527 75 97 Remmelg Martin EST 2 1+1
## 4528 76 96 Kristejn Lukas CZE 2 1+1
## 4529 77 92 Darozhka Aliaksandr BLR 2 0+2
## 4530 78 41 Dorfer Matthias GER 2 1+1
## 4531 79 100 Buta George ROU 1 0+1
## 4532 80 79 Lessing Roland EST 2 0+2
## 4533 81 104 Pantov Anton KAZ 1 0+1
## 4534 82 52 Bormolini Thomas ITA 3 2+1
## 4535 83 54 Trsan Rok SLO 3 1+2
## 4536 84 74 Dombrovski Karol LTU 1 0+1
## 4537 85 4 Koiv Kauri EST 5 4+1
## 4538 86 62 Faur Remus ROU 2 1+1
## 4539 87 55 Bricis Ilmars LAT 3 1+2
## 4540 88 87 Strolia Vytautas LTU 3 2+1
## 4541 89 99 Montello Giuseppe ITA 2 0+2
## 4542 90 86 Nedza-Kubiniec Andrzej POL 2 1+1
## 4543 91 85 Ozaki Kosuke JPN 2 0+2
## 4544 92 89 Gjesbakk Fredrik NOR 6 3+3
## 4545 93 49 Leitner Felix AUT 6 2+4
## 4546 94 76 Crnkovic Kresimir CRO 4 1+3
## 4547 95 53 Orpana Sami FIN 3 0+3
## 4548 96 68 Penar Rafal POL 3 1+2
## 4549 97 94 Starodubets Aleksandr KOR 1 1+0
## 4550 98 64 Kim Jongmin KOR 3 0+3
## 4551 99 70 Dixon Scott GBR 4 2+2
## 4552 100 93 Huhtala Teemu FIN 5 3+2
## 4553 101 91 Slotins Roberts LAT 5 2+3
## 4554 DNS 14 Burke Tim USA NA
## 4555 DNS 59 Nelin Jesper SWE NA
## 4556 DNS 103 Gow Christian CAN NA
## 4557 1 3 Schempp Simon GER 1 0+0+1+0
## 4558 2 6 Lesser Erik GER 1 0+0+0+1
## 4559 3 1 Fourcade Martin FRA 2 0+0+2+0
## 4560 4 16 Beatrix Jean Guillaume FRA 1 0+0+1+0
## 4561 5 8 Bjoerndalen Ole Einar NOR 1 0+0+0+1
## 4562 6 17 Doll Benedikt GER 2 0+1+1+0
## 4563 7 7 Svendsen Emil Hegle NOR 2 0+0+1+1
## 4564 8 10 Babikov Anton RUS 2 0+1+0+1
## 4565 9 15 Krcmar Michal CZE 3 0+2+1+0
## 4566 10 23 Weger Benjamin SUI 1 0+0+1+0
## 4567 11 5 Tsvetkov Maxim RUS 2 0+0+2+0
## 4568 12 28 Landertinger Dominik AUT 2 0+0+0+2
## 4569 13 14 Moravec Ondrej CZE 3 1+1+0+1
## 4570 14 2 Shipulin Anton RUS 4 2+2+0+0
## 4571 15 18 Eliseev Matvey RUS 2 0+0+2+0
## 4572 16 24 Hofer Lukas ITA 3 1+0+1+1
## 4573 17 27 Malyshko Dmitry RUS 2 1+0+1+0
## 4574 18 4 Peiffer Arnd GER 4 1+0+1+2
## 4575 19 20 Roesch Michael BEL 3 1+0+1+1
## 4576 20 26 L'Abee-Lund Henrik NOR 4 1+2+1+0
## 4577 21 25 Iliev Vladimir BUL 4 2+1+1+0
## 4578 22 9 Eberhard Julian AUT 5 1+3+0+1
## 4579 23 21 Semenov Sergii UKR 5 1+3+0+1
## 4580 24 30 Mesotitsch Daniel AUT 3 2+0+1+0
## 4581 25 29 Siemakov Volodymyr UKR 2 0+1+0+1
## 4582 26 19 Desthieux Simon FRA 2 0+0+1+1
## 4583 27 22 Pidruchnyi Dmytro UKR 3 1+1+1+0
## 4584 28 11 Windisch Dominik ITA 6 0+4+0+2
## 4585 29 12 Slesingr Michal CZE 6 3+0+3+0
## 4586 DNF 13 Fillon Maillet Quentin FRA NA 4+1+2
## 4587 1 8 Fourcade Martin FRA 1 0+1+0+0
## 4588 2 15 Peiffer Arnd GER 3 0+0+1+2
## 4589 3 3 Windisch Dominik ITA 5 0+0+3+2
## 4590 4 7 Svendsen Emil Hegle NOR 5 1+1+2+1
## 4591 5 5 Lesser Erik GER 5 0+0+2+3
## 4592 6 18 Babikov Anton RUS 5 0+0+5+0
## 4593 7 2 Slesingr Michal CZE 6 0+1+2+3
## 4594 8 20 L'Abee-Lund Henrik NOR 5 0+0+3+2
## 4595 9 57 Pryma Artem UKR 2 1+0+0+1
## 4596 10 13 Tsvetkov Maxim RUS 4 0+1+0+3
## 4597 11 9 Weger Benjamin SUI 5 1+3+1+0
## 4598 12 4 Hofer Lukas ITA 5 2+1+2+0
## 4599 13 28 Siemakov Volodymyr UKR 1 0+0+1+0
## 4600 14 36 Roesch Michael BEL 4 1+1+1+1
## 4601 15 16 Beatrix Jean Guillaume FRA 4 0+0+2+2
## 4602 16 24 Shipulin Anton RUS 5 0+3+1+1
## 4603 17 10 Iliev Vladimir BUL 7 4+0+2+1
## 4604 18 11 Malyshko Dmitry RUS 6 1+2+2+1
## 4605 19 1 Eberhard Julian AUT 8 0+1+2+5
## 4606 20 6 Schempp Simon GER 6 2+1+2+1
## 4607 21 19 Moravec Ondrej CZE 2 0+0+1+1
## 4608 22 25 Mesotitsch Daniel AUT 2 0+0+1+1
## 4609 23 42 Claude Fabien FRA 6 2+1+0+3
## 4610 24 44 Doll Benedikt GER 3 0+2+1+0
## 4611 25 27 Fillon Maillet Quentin FRA 6 0+2+2+2
## 4612 26 35 Burke Tim USA 4 0+0+2+2
## 4613 27 31 Christiansen Vetle Sjaastad NOR 2 2+0+0+0
## 4614 28 21 Krcmar Michal CZE 4 0+1+0+3
## 4615 29 14 Semenov Sergii UKR 7 1+3+1+2
## 4616 30 12 Landertinger Dominik AUT 7 2+0+3+2
## 4617 31 33 Shopin Yury RUS 7 2+3+0+2
## 4618 32 38 Guigonnat Antonin FRA 7 1+3+2+1
## 4619 33 17 Vaclavik Adam CZE 7 0+1+4+2
## 4620 34 46 Currier Russell USA 5 2+0+1+2
## 4621 35 22 Bischl Matthias GER 8 3+0+2+3
## 4622 36 54 Bocharnikov Sergey BLR 6 1+0+3+2
## 4623 37 32 Bjoerndalen Ole Einar NOR 6 2+0+2+2
## 4624 38 60 Gerdzhikov Dimitar BUL 4 0+0+2+2
## 4625 39 56 Kazar Matej SVK 6 1+2+1+2
## 4626 40 30 Bjoentegaard Erlend NOR 9 0+2+3+4
## 4627 41 41 Faur Remus ROU 6 2+2+0+2
## 4628 42 34 Lindstroem Fredrik SWE 7 2+1+3+1
## 4629 43 52 Montello Giuseppe ITA 5 1+0+3+1
## 4630 44 40 Savitskiy Yan KAZ 9 3+3+2+1
## 4631 45 43 Gow Scott CAN 7 1+1+2+3
## 4632 46 45 Dolder Mario SUI 7 2+1+3+1
## 4633 47 58 Arwidson Tobias SWE 3 1+1+1+0
## 4634 48 23 Kilchytskyy Vitaliy UKR 9 3+1+2+3
## 4635 49 49 Graf Florian GER 8 1+1+2+4
## 4636 50 29 Jaeger Martin SUI 10 3+2+3+2
## 4637 51 39 Leitner Felix AUT 9 2+3+2+2
## 4638 52 53 Ermits Kalev EST 8 1+3+2+2
## 4639 53 26 Guzik Grzegorz POL 9 3+3+2+1
## 4640 54 48 Kobonoki Tsukasa JPN 10 0+4+3+3
## 4641 55 55 Kubaliak Michal SVK 10 1+2+4+3
## 4642 56 51 Lee Inbok KOR 10 1+2+3+4
## 4643 DNF 50 Yaliotnau Raman BLR NA 5
## 4644 DNS 37 Crnkovic Kresimir CRO NA
## 4645 DNS 47 Eder Simon AUT NA
## 4646 DNS 59 Bricis Ilmars LAT NA
## 4647 1 31 Eberhard Julian AUT 1 1+0
## 4648 2 22 Slesingr Michal CZE 1 0+1
## 4649 3 26 Windisch Dominik ITA 1 0+1
## 4650 4 70 Hofer Lukas ITA 0 0+0
## 4651 5 40 Lesser Erik GER 2 0+2
## 4652 6 44 Schempp Simon GER 2 1+1
## 4653 7 34 Svendsen Emil Hegle NOR 1 0+1
## 4654 8 23 Fourcade Martin FRA 3 0+3
## 4655 9 35 Weger Benjamin SUI 0 0+0
## 4656 10 43 Iliev Vladimir BUL 2 0+2
## 4657 11 48 Malyshko Dmitry RUS 1 0+1
## 4658 11 65 Landertinger Dominik AUT 2 0+2
## 4659 13 18 Tsvetkov Maxim RUS 2 0+2
## 4660 14 25 Semenov Sergii UKR 2 0+2
## 4661 15 16 Peiffer Arnd GER 2 0+2
## 4662 16 75 Beatrix Jean Guillaume FRA 2 1+1
## 4663 17 52 Vaclavik Adam CZE 2 0+2
## 4664 18 30 Babikov Anton RUS 1 0+1
## 4665 19 20 Moravec Ondrej CZE 2 0+2
## 4666 20 11 L'Abee-Lund Henrik NOR 2 1+1
## 4667 21 14 Krcmar Michal CZE 2 1+1
## 4668 22 92 Bischl Matthias GER 2 0+2
## 4669 23 4 Kilchytskyy Vitaliy UKR 1 1+0
## 4670 24 17 Shipulin Anton RUS 3 1+2
## 4671 25 19 Mesotitsch Daniel AUT 2 1+1
## 4672 26 93 Guzik Grzegorz POL 1 0+1
## 4673 27 37 Fillon Maillet Quentin FRA 3 1+2
## 4674 28 56 Siemakov Volodymyr UKR 2 2+0
## 4675 29 81 Jaeger Martin SUI 2 1+1
## 4676 30 49 Bjoentegaard Erlend NOR 2 0+2
## 4677 31 99 Christiansen Vetle Sjaastad NOR 1 0+1
## 4678 32 45 Bjoerndalen Ole Einar NOR 3 2+1
## 4679 33 95 Shopin Yury RUS 2 0+2
## 4680 34 32 Lindstroem Fredrik SWE 3 1+2
## 4681 35 21 Burke Tim USA 2 0+2
## 4682 36 36 Roesch Michael BEL 2 1+1
## 4683 37 76 Crnkovic Kresimir CRO 2 1+1
## 4684 38 96 Guigonnat Antonin FRA 2 1+1
## 4685 39 100 Leitner Felix AUT 3 2+1
## 4686 40 58 Savitskiy Yan KAZ 3 2+1
## 4687 41 97 Faur Remus ROU 1 0+1
## 4688 42 2 Claude Fabien FRA 2 0+2
## 4689 43 42 Gow Scott CAN 1 0+1
## 4690 44 57 Doll Benedikt GER 5 1+4
## 4691 45 9 Dolder Mario SUI 2 2+0
## 4692 46 82 Currier Russell USA 3 1+2
## 4693 47 24 Eder Simon AUT 4 3+1
## 4694 48 89 Kobonoki Tsukasa JPN 2 0+2
## 4695 49 10 Graf Florian GER 2 1+1
## 4696 50 41 Yaliotnau Raman BLR 3 1+2
## 4697 51 105 Lee Inbok KOR 0 0+0
## 4698 52 102 Montello Giuseppe ITA 2 1+1
## 4699 53 91 Ermits Kalev EST 2 1+1
## 4700 54 86 Bocharnikov Sergey BLR 5 4+1
## 4701 55 84 Kubaliak Michal SVK 1 1+0
## 4702 56 15 Kazar Matej SVK 2 1+1
## 4703 57 13 Pryma Artem UKR 5 2+3
## 4704 58 94 Arwidson Tobias SWE 3 2+1
## 4705 59 77 Bricis Ilmars LAT 2 2+0
## 4706 60 51 Gerdzhikov Dimitar BUL 3 1+2
## 4707 61 63 Wiestner Serafin SUI 3 1+2
## 4708 62 78 Pantov Anton KAZ 2 2+0
## 4709 63 54 Strolia Vytautas LTU 2 0+2
## 4710 64 39 Desthieux Simon FRA 5 3+2
## 4711 65 50 Kaukenas Tomas LTU 3 1+2
## 4712 66 74 Buta George ROU 1 1+0
## 4713 67 62 Lessing Roland EST 4 2+2
## 4714 68 67 Davies Macx CAN 2 0+2
## 4715 69 12 Green Brendan CAN 4 3+1
## 4716 70 6 Bormolini Thomas ITA 3 3+0
## 4717 71 3 Soukup Jaroslav CZE 4 1+3
## 4718 72 28 Puchianu Cornel ROU 3 3+0
## 4719 73 1 Komatz David AUT 3 0+3
## 4720 73 73 Tachizaki Mikito JPN 2 1+1
## 4721 75 68 Otcenas Martin SVK 4 4+0
## 4722 76 79 Stenersen Torstein SWE 4 2+2
## 4723 77 80 Lusa Daumants LAT 1 0+1
## 4724 78 87 Szczurek Lukasz POL 3 2+1
## 4725 79 55 Kim Jongmin KOR 1 1+0
## 4726 80 47 Doherty Sean USA 3 1+2
## 4727 81 69 Dovzan Miha SLO 2 2+0
## 4728 82 106 Invenius Tuukka FIN 1 0+1
## 4729 83 101 Partalov Dimitar BUL 2 1+1
## 4730 84 8 Sinapov Anton BUL 4 3+1
## 4731 85 64 Varabei Maksim BLR 4 2+2
## 4732 86 72 Ponsiluoma Martin SWE 4 2+2
## 4733 87 5 Chepelin Vladimir BLR 5 4+1
## 4734 88 83 Yeremin Roman KAZ 6 3+3
## 4735 89 61 Trsan Rok SLO 4 2+2
## 4736 90 88 Hudec Matthew CAN 1 0+1
## 4737 91 46 Orpana Sami FIN 2 1+1
## 4738 92 38 Gow Christian CAN 3 1+2
## 4739 93 27 Koiv Kauri EST 4 1+3
## 4740 94 85 Braun Maxim KAZ 5 4+1
## 4741 95 7 Eliseev Matvey RUS 6 3+3
## 4742 96 60 Angelis Apostolos GRE 5 4+1
## 4743 97 29 Bauer Klemen SLO 7 5+2
## 4744 98 104 Slotins Roberts LAT 4 2+2
## 4745 99 53 Loukkaanhuhta Mikko FIN 5 3+2
## 4746 100 59 Nedza-Kubiniec Andrzej POL 5 3+2
## 4747 101 103 Suslavicius Rokas LTU 4 2+2
## 4748 102 71 Hodzic Edin SRB 4 3+1
## 4749 DNF 66 Dixon Scott GBR NA
## 4750 DNS 33 Boe Johannes Thingnes NOR NA
## 4751 DNS 90 Oblak Lenart SLO NA
## 4752 DNS 98 Pidruchnyi Dmytro UKR NA
## 4753 1 10 Fourcade Martin FRA 2 0+2+0+0
## 4754 2 15 Boe Johannes Thingnes NOR 2 0+0+0+2
## 4755 3 17 Chepelin Vladimir BLR 1 1+0+0+0
## 4756 4 40 Birkeland Lars Helge NOR 3 1+1+1+0
## 4757 5 25 Bjoerndalen Ole Einar NOR 3 0+2+0+1
## 4758 6 1 Rastorgujevs Andrejs LAT 3 1+0+0+2
## 4759 7 21 Anev Krasimir BUL 2 1+1+0+0
## 4760 8 94 Graf Florian GER 1 0+0+0+1
## 4761 9 8 Lindstroem Fredrik SWE 3 1+0+1+1
## 4762 10 19 Weger Benjamin SUI 2 0+1+0+1
## 4763 11 35 Shipulin Anton RUS 4 0+1+0+3
## 4764 12 16 Eder Simon AUT 4 0+3+0+1
## 4765 13 36 Fourcade Simon FRA 3 2+1+0+0
## 4766 14 78 Puchianu Cornel ROU 3 1+0+1+1
## 4767 15 18 Bailey Lowell USA 4 0+2+0+2
## 4768 16 27 Burke Tim USA 3 0+2+0+1
## 4769 17 23 Moravec Ondrej CZE 3 0+2+1+0
## 4770 18 29 Eberhard Julian AUT 5 0+1+2+2
## 4771 19 33 Hofer Lukas ITA 3 0+2+1+0
## 4772 20 79 Gronman Tuomas FIN 1 0+1+0+0
## 4773 21 52 Koiv Kauri EST 3 0+2+0+1
## 4774 22 2 Tsvetkov Maxim RUS 3 1+1+0+1
## 4775 23 7 Garanichev Evgeniy RUS 5 0+3+1+1
## 4776 24 97 Gjermundshaug Vegard NOR 5 1+2+2+0
## 4777 25 5 Slesingr Michal CZE 5 2+2+0+1
## 4778 26 62 Mesotitsch Daniel AUT 3 0+0+1+2
## 4779 27 81 Hasilla Tomas SVK 3 1+0+1+1
## 4780 28 20 Fillon Maillet Quentin FRA 5 2+2+0+1
## 4781 29 46 Otcenas Martin SVK 3 1+2+0+0
## 4782 30 6 Doll Benedikt GER 6 1+1+0+4
## 4783 31 45 Lesser Erik GER 5 1+1+2+1
## 4784 32 26 Peiffer Arnd GER 5 0+2+1+2
## 4785 33 3 Bauer Klemen SLO 5 2+2+0+1
## 4786 34 41 Iliev Vladimir BUL 6 2+1+2+1
## 4787 35 76 Beatrix Jean Guillaume FRA 4 1+2+0+1
## 4788 36 24 Kazar Matej SVK 4 0+3+1+0
## 4789 37 50 Sinapov Anton BUL 3 0+2+0+1
## 4790 38 63 Bormolini Thomas ITA 4 0+0+2+2
## 4791 39 83 Drinovec Mitja SLO 2 1+0+0+1
## 4792 40 84 Varabei Maksim BLR 3 0+1+1+1
## 4793 41 88 Siemakov Volodymyr UKR 3 0+1+1+1
## 4794 42 48 Krcmar Michal CZE 5 0+3+0+2
## 4795 43 22 Smith Nathan CAN 3 1+0+1+1
## 4796 44 13 Savitskiy Yan KAZ 4 2+1+0+1
## 4797 45 43 Stenersen Torstein SWE 4 0+0+2+2
## 4798 46 9 Schempp Simon GER 7 0+4+1+2
## 4799 47 56 Buta George ROU 3 0+1+1+1
## 4800 48 73 Rees Roman GER 5 0+1+1+3
## 4801 49 28 Desthieux Simon FRA 6 1+0+1+4
## 4802 50 86 Shopin Yury RUS 5 2+1+0+2
## 4803 51 11 Bjoentegaard Erlend NOR 6 0+2+1+3
## 4804 52 64 Dolder Mario SUI 5 1+1+1+2
## 4805 53 60 Kilchytskyy Vitaliy UKR 5 2+0+2+1
## 4806 54 77 Currier Russell USA 6 1+1+2+2
## 4807 55 38 Wiestner Serafin SUI 7 1+2+1+3
## 4808 56 54 Hiidensalo Olli FIN 5 0+3+1+1
## 4809 57 44 Babikov Anton RUS 6 0+1+2+3
## 4810 58 90 Finello Jeremy SUI 6 1+1+2+2
## 4811 59 34 Pryma Artem UKR 7 1+2+1+3
## 4812 60 67 Gow Scott CAN 5 1+1+1+2
## 4813 61 39 Yaliotnau Raman BLR 7 1+2+1+3
## 4814 62 42 Davies Macx CAN 4 0+2+1+1
## 4815 63 82 Bricis Ilmars LAT 5 0+2+0+3
## 4816 64 80 Guzik Grzegorz POL 5 1+1+1+2
## 4817 65 70 L'Abee-Lund Henrik NOR 9 3+2+2+2
## 4818 66 4 Windisch Dominik ITA 8 2+1+1+4
## 4819 67 55 Trsan Rok SLO 5 1+1+1+2
## 4820 68 99 Strolia Vytautas LTU 4 1+0+1+2
## 4821 69 69 Nelin Jesper SWE 8 3+4+0+1
## 4822 70 47 Grossegger Sven AUT 6 1+2+2+1
## 4823 71 51 Bocharnikov Sergey BLR 8 2+1+3+2
## 4824 72 85 Ungureanu Marius ROU 4 1+0+1+2
## 4825 73 87 Tachizaki Mikito JPN 5 1+2+2+0
## 4826 74 68 Braun Maxim KAZ 5 1+1+2+1
## 4827 75 72 Roesch Michael BEL 7 1+2+0+4
## 4828 76 101 Kletcherov Michail BUL 4 1+2+0+1
## 4829 77 103 Claude Fabien FRA 8 3+1+0+4
## 4830 78 57 Crnkovic Kresimir CRO 7 1+3+2+1
## 4831 79 66 Dombrovski Karol LTU 6 1+2+3+0
## 4832 80 74 Malyshko Dmitry RUS 9 3+2+3+1
## 4833 81 106 Penar Rafal POL 4 1+0+1+2
## 4834 82 59 Pantov Anton KAZ 4 1+0+1+2
## 4835 83 91 Femling Peppe SWE 7 3+2+1+1
## 4836 84 65 Zahkna Rene EST 6 0+2+3+1
## 4837 85 30 Kaukenas Tomas LTU 8 0+3+2+3
## 4838 86 49 Kobonoki Tsukasa JPN 7 3+2+1+1
## 4839 87 102 Lee Inbok KOR 5 0+3+0+2
## 4840 88 12 Landertinger Dominik AUT 10 2+3+3+2
## 4841 89 14 Green Brendan CAN 8 0+3+2+3
## 4842 90 75 Janik Mateusz POL 6 1+2+1+2
## 4843 91 31 Zhyrnyi Oleksandr UKR 8 2+1+3+2
## 4844 92 32 Semenov Sergii UKR 11 1+4+2+4
## 4845 93 58 Starodubets Aleksandr KOR 6 2+2+0+2
## 4846 94 105 Lusa Daumants LAT 5 0+2+1+2
## 4847 95 92 Vaclavik Adam CZE 11 2+3+3+3
## 4848 96 53 Dovzan Miha SLO 9 0+3+3+3
## 4849 97 61 Soukup Jaroslav CZE 10 1+5+0+4
## 4850 98 100 Talihaerm Johan EST 9 2+2+1+4
## 4851 99 96 Gow Christian CAN 8 2+4+0+2
## 4852 100 89 Sima Michal SVK 9 2+3+1+3
## 4853 101 98 Podkorytov Vassiliy KAZ 11 5+3+1+2
## 4854 102 93 Montello Giuseppe ITA 12 2+3+4+3
## 4855 103 104 Huhtala Teemu FIN 10 2+2+3+3
## 4856 DNF 71 Dixon Scott GBR NA 0+2+2+0
## 4857 DNS 37 Nordgren Leif USA NA
## 4858 DNS 95 Leitner Felix AUT NA
## 4859 1 7 Babikov Anton RUS 1 0+0+1+0
## 4860 2 11 Tsvetkov Maxim RUS 0 0+0+0+0
## 4861 3 1 Fourcade Martin FRA 4 2+0+0+2
## 4862 4 3 Peiffer Arnd GER 3 2+0+1+0
## 4863 5 15 Lesser Erik GER 2 0+0+1+1
## 4864 6 10 Fourcade Simon FRA 2 0+0+2+0
## 4865 7 38 Krcmar Michal CZE 0 0+0+0+0
## 4866 8 28 Shipulin Anton RUS 3 0+0+3+0
## 4867 9 21 Schempp Simon GER 3 1+1+0+1
## 4868 10 30 Boe Johannes Thingnes NOR 4 0+1+2+1
## 4869 11 23 Beatrix Jean Guillaume FRA 2 0+1+0+1
## 4870 12 12 Bjoerndalen Ole Einar NOR 3 0+0+2+1
## 4871 13 9 Pidruchnyi Dmytro UKR 3 1+1+0+1
## 4872 14 8 Desthieux Simon FRA 3 1+0+0+2
## 4873 15 13 Bailey Lowell USA 2 0+0+0+2
## 4874 16 14 Svendsen Emil Hegle NOR 4 1+1+2+0
## 4875 17 16 Eliseev Matvey RUS 4 0+2+0+2
## 4876 18 35 Moravec Ondrej CZE 1 1+0+0+0
## 4877 19 58 L'Abee-Lund Henrik NOR 1 0+0+1+0
## 4878 20 19 Samuelsson Sebastian SWE 4 1+1+1+1
## 4879 21 33 Landertinger Dominik AUT 2 0+1+0+1
## 4880 22 17 Slesingr Michal CZE 4 2+0+2+0
## 4881 23 24 Eder Simon AUT 4 0+1+1+2
## 4882 24 20 Pryma Artem UKR 2 0+0+0+2
## 4883 25 6 Windisch Dominik ITA 3 0+1+1+1
## 4884 26 31 Malyshko Dmitry RUS 3 2+0+0+1
## 4885 27 5 Eberhard Julian AUT 6 1+1+2+2
## 4886 28 27 Birkeland Lars Helge NOR 4 0+1+1+2
## 4887 29 39 Claude Fabien FRA 3 0+1+1+1
## 4888 30 49 Garanichev Evgeniy RUS 2 1+0+0+1
## 4889 31 18 Rastorgujevs Andrejs LAT 5 1+1+1+2
## 4890 32 43 Nelin Jesper SWE 3 2+0+0+1
## 4891 33 4 Doll Benedikt GER 7 2+0+2+3
## 4892 34 36 Mesotitsch Daniel AUT 3 2+0+1+0
## 4893 35 29 Burke Tim USA 4 0+1+2+1
## 4894 36 57 Rees Roman GER 2 0+0+1+1
## 4895 37 22 Bjoentegaard Erlend NOR 5 0+2+2+1
## 4896 38 2 Lindstroem Fredrik SWE 5 0+0+3+2
## 4897 39 41 Roesch Michael BEL 3 0+1+2+0
## 4898 40 40 Hofer Lukas ITA 3 1+0+1+1
## 4899 41 59 Graf Florian GER 2 0+1+0+1
## 4900 42 55 Vaclavik Adam CZE 4 1+1+0+2
## 4901 43 45 Leitner Felix AUT 3 0+1+1+1
## 4902 44 44 Hasilla Tomas SVK 2 1+1+0+0
## 4903 45 51 Hiidensalo Olli FIN 3 0+0+1+2
## 4904 46 42 Anev Krasimir BUL 4 2+0+0+2
## 4905 47 50 Gow Scott CAN 3 0+0+2+1
## 4906 48 26 Wiestner Serafin SUI 6 1+2+2+1
## 4907 49 34 Kilchytskyy Vitaliy UKR 5 1+3+0+1
## 4908 50 32 Green Brendan CAN 5 2+1+0+2
## 4909 51 52 Davies Macx CAN 4 0+0+2+2
## 4910 52 37 Semenov Sergii UKR 6 2+0+1+3
## 4911 53 60 Dolder Mario SUI 5 1+1+0+3
## 4912 54 47 Yaliotnau Raman BLR 6 1+1+2+2
## 4913 55 48 Trsan Rok SLO 5 0+0+2+3
## 4914 56 25 Weger Benjamin SUI 8 3+3+1+1
## 4915 57 56 Chepelin Vladimir BLR 9 1+2+2+4
## 4916 58 53 Kaukenas Tomas LTU 6 1+2+0+3
## 4917 59 46 Gerdzhikov Dimitar BUL 5 0+1+2+2
## 4918 DNF 54 Fillon Maillet Quentin FRA NA 2+2
## 4919 1 11 Fourcade Martin FRA 0 0+0
## 4920 2 44 Lindstroem Fredrik SWE 0 0+0
## 4921 3 2 Peiffer Arnd GER 0 0+0
## 4922 4 18 Doll Benedikt GER 1 0+1
## 4923 5 23 Eberhard Julian AUT 2 1+1
## 4924 6 43 Windisch Dominik ITA 0 0+0
## 4925 7 45 Babikov Anton RUS 0 0+0
## 4926 8 77 Desthieux Simon FRA 0 0+0
## 4927 9 24 Pidruchnyi Dmytro UKR 0 0+0
## 4928 10 26 Fourcade Simon FRA 1 1+0
## 4929 10 31 Tsvetkov Maxim RUS 0 0+0
## 4930 12 20 Bjoerndalen Ole Einar NOR 0 0+0
## 4931 13 30 Bailey Lowell USA 0 0+0
## 4932 14 1 Svendsen Emil Hegle NOR 1 0+1
## 4933 15 41 Lesser Erik GER 0 0+0
## 4934 16 61 Eliseev Matvey RUS 1 0+1
## 4935 17 9 Slesingr Michal CZE 1 1+0
## 4936 18 40 Rastorgujevs Andrejs LAT 1 0+1
## 4937 19 79 Samuelsson Sebastian SWE 0 0+0
## 4938 20 32 Pryma Artem UKR 0 0+0
## 4939 21 22 Schempp Simon GER 1 1+0
## 4940 22 47 Bjoentegaard Erlend NOR 1 0+1
## 4941 23 35 Beatrix Jean Guillaume FRA 1 0+1
## 4942 24 7 Eder Simon AUT 1 0+1
## 4943 25 38 Weger Benjamin SUI 0 0+0
## 4944 26 67 Wiestner Serafin SUI 1 0+1
## 4945 27 60 Birkeland Lars Helge NOR 1 1+0
## 4946 28 33 Shipulin Anton RUS 2 1+1
## 4947 29 16 Burke Tim USA 1 0+1
## 4948 30 14 Boe Johannes Thingnes NOR 2 1+1
## 4949 31 95 Malyshko Dmitry RUS 2 1+1
## 4950 32 12 Green Brendan CAN 1 1+0
## 4951 33 19 Landertinger Dominik AUT 2 0+2
## 4952 34 70 Kilchytskyy Vitaliy UKR 1 1+0
## 4953 35 27 Moravec Ondrej CZE 1 0+1
## 4954 36 39 Mesotitsch Daniel AUT 1 1+0
## 4955 37 29 Semenov Sergii UKR 1 0+1
## 4956 38 42 Krcmar Michal CZE 1 0+1
## 4957 39 96 Claude Fabien FRA 3 1+2
## 4958 40 21 Hofer Lukas ITA 3 2+1
## 4959 41 69 Roesch Michael BEL 1 0+1
## 4960 42 15 Anev Krasimir BUL 2 0+2
## 4961 43 5 Nelin Jesper SWE 3 0+3
## 4962 44 72 Hasilla Tomas SVK 1 1+0
## 4963 45 50 Leitner Felix AUT 2 0+2
## 4964 46 83 Gerdzhikov Dimitar BUL 0 0+0
## 4965 47 81 Yaliotnau Raman BLR 2 1+1
## 4966 48 48 Trsan Rok SLO 1 1+0
## 4967 49 25 Garanichev Evgeniy RUS 3 2+1
## 4968 50 62 Gow Scott CAN 0 0+0
## 4969 51 55 Hiidensalo Olli FIN 1 0+1
## 4970 52 46 Davies Macx CAN 0 0+0
## 4971 53 6 Kaukenas Tomas LTU 1 1+0
## 4972 54 28 Fillon Maillet Quentin FRA 3 2+1
## 4973 55 74 Vaclavik Adam CZE 2 2+0
## 4974 56 8 Chepelin Vladimir BLR 3 1+2
## 4975 57 85 Rees Roman GER 1 0+1
## 4976 58 100 L'Abee-Lund Henrik NOR 4 2+2
## 4977 59 73 Graf Florian GER 2 1+1
## 4978 60 10 Dolder Mario SUI 3 2+1
## 4979 61 34 Varabei Maksim BLR 3 1+2
## 4980 62 37 Iliev Vladimir BUL 4 1+3
## 4981 63 99 Grossegger Sven AUT 2 0+2
## 4982 64 56 Puchianu Cornel ROU 3 0+3
## 4983 65 66 Zahkna Rene EST 0 0+0
## 4984 66 87 Podkorytov Vassiliy KAZ 1 1+0
## 4985 67 58 Pantov Anton KAZ 0 0+0
## 4986 68 57 Braun Maxim KAZ 2 2+0
## 4987 69 53 Currier Russell USA 3 2+1
## 4988 70 76 Tachizaki Mikito JPN 1 0+1
## 4989 71 63 Bormolini Thomas ITA 2 1+1
## 4990 72 75 Faur Remus ROU 1 0+1
## 4991 73 101 Sima Michal SVK 1 0+1
## 4992 74 78 Gronman Tuomas FIN 0 0+0
## 4993 75 84 Siemakov Volodymyr UKR 3 1+2
## 4994 76 80 Drinovec Mitja SLO 1 1+0
## 4995 77 71 Sinapov Anton BUL 3 0+3
## 4996 78 94 Finello Jeremy SUI 2 1+1
## 4997 79 59 Janik Mateusz POL 2 1+1
## 4998 80 64 Kim Jongmin KOR 0 0+0
## 4999 81 65 Dombrovski Karol LTU 2 0+2
## 5000 82 98 Buta George ROU 2 1+1
## 5001 83 51 Koiv Kauri EST 3 0+3
## 5002 84 105 Montello Giuseppe ITA 2 0+2
## 5003 85 3 Bauer Klemen SLO 4 1+3
## 5004 86 90 Penar Rafal POL 1 0+1
## 5005 87 102 Oblak Lenart SLO 2 0+2
## 5006 88 97 Strolia Vytautas LTU 2 2+0
## 5007 89 89 Slotins Roberts LAT 2 0+2
## 5008 90 86 Gow Christian CAN 2 0+2
## 5009 91 54 Bricis Ilmars LAT 3 1+2
## 5010 92 4 Kazar Matej SVK 5 2+3
## 5011 93 93 Soukup Jaroslav CZE 4 2+2
## 5012 94 103 Stenersen Torstein SWE 4 3+1
## 5013 95 92 Huhtala Teemu FIN 1 0+1
## 5014 96 17 Smith Nathan CAN 3 1+2
## 5015 97 36 Otcenas Martin SVK 6 1+5
## 5016 98 82 Talihaerm Johan EST 4 0+4
## 5017 99 52 Guzik Grzegorz POL 5 4+1
## 5018 100 13 Savitskiy Yan KAZ 8 4+4
## 5019 101 91 Lee Inbok KOR 2 1+1
## 5020 102 88 Kobonoki Tsukasa JPN 6 2+4
## 5021 103 68 Dixon Scott GBR 2 1+1
## 5022 104 49 Crnkovic Kresimir CRO 6 4+2
## 5023 105 104 Liadov Yuryi BLR 5 2+3
## 5024 1 1 Fourcade Martin FRA 0 0+0+0+0
## 5025 2 22 Rastorgujevs Andrejs LAT 2 0+1+1+0
## 5026 3 13 Eder Simon AUT 1 0+0+1+0
## 5027 4 7 Svendsen Emil Hegle NOR 2 0+0+1+1
## 5028 5 6 Peiffer Arnd GER 2 0+0+1+1
## 5029 6 23 Slesingr Michal CZE 1 0+0+0+1
## 5030 7 16 Beatrix Jean Guillaume FRA 1 0+0+0+1
## 5031 8 19 Garanichev Evgeniy RUS 3 1+0+1+1
## 5032 9 17 Krcmar Michal CZE 1 0+0+1+0
## 5033 10 25 Babikov Anton RUS 1 0+0+1+0
## 5034 11 2 Shipulin Anton RUS 3 0+0+1+2
## 5035 12 27 Boe Tarjei NOR 3 1+1+1+0
## 5036 13 11 Doll Benedikt GER 4 1+0+1+2
## 5037 14 10 Lesser Erik GER 3 0+0+1+2
## 5038 15 8 Bailey Lowell USA 3 0+0+2+1
## 5039 16 15 Landertinger Dominik AUT 3 2+0+1+0
## 5040 17 9 Bjoerndalen Ole Einar NOR 1 0+1+0+0
## 5041 18 26 Lindstroem Fredrik SWE 1 0+0+1+0
## 5042 19 14 Windisch Dominik ITA 4 0+1+1+2
## 5043 20 5 Schempp Simon GER 3 0+1+1+1
## 5044 21 21 Semenov Sergii UKR 3 1+1+1+0
## 5045 22 20 Fillon Maillet Quentin FRA 4 0+1+1+2
## 5046 23 30 Gjesbakk Fredrik NOR 2 0+0+1+1
## 5047 24 12 Moravec Ondrej CZE 4 2+0+1+1
## 5048 25 24 Desthieux Simon FRA 3 1+1+0+1
## 5049 26 4 Eberhard Julian AUT 6 3+1+0+2
## 5050 27 29 Anev Krasimir BUL 3 2+0+0+1
## 5051 28 18 Tsvetkov Maxim RUS 2 2+0+0+0
## 5052 29 3 Boe Johannes Thingnes NOR 4 2+0+1+1
## 5053 30 28 Hofer Lukas ITA 8 2+2+2+2
## 5054 1 3 Shipulin Anton RUS 1 0+0+1+0
## 5055 2 2 Fourcade Martin FRA 2 1+0+0+1
## 5056 3 1 Boe Johannes Thingnes NOR 2 1+0+0+1
## 5057 4 15 Lindstroem Fredrik SWE 0 0+0+0+0
## 5058 5 21 Hofer Lukas ITA 2 0+0+1+1
## 5059 6 10 Eberhard Julian AUT 3 1+0+1+1
## 5060 7 12 Eder Simon AUT 3 1+0+1+1
## 5061 8 7 Moravec Ondrej CZE 2 1+0+0+1
## 5062 9 8 Garanichev Evgeniy RUS 3 0+0+2+1
## 5063 10 23 Rastorgujevs Andrejs LAT 3 0+1+1+1
## 5064 11 24 Schempp Simon GER 2 0+1+0+1
## 5065 12 4 Landertinger Dominik AUT 4 0+3+1+0
## 5066 13 28 Krcmar Michal CZE 1 0+0+1+0
## 5067 14 6 Boe Tarjei NOR 5 1+1+1+2
## 5068 15 40 Windisch Dominik ITA 1 0+1+0+0
## 5069 16 20 Svendsen Emil Hegle NOR 3 2+0+0+1
## 5070 17 5 Semenov Sergii UKR 4 1+1+1+1
## 5071 18 11 Doll Benedikt GER 4 1+1+1+1
## 5072 19 30 Volkov Alexey RUS 1 0+0+1+0
## 5073 20 25 Gjesbakk Fredrik NOR 2 0+2+0+0
## 5074 21 39 Pryma Artem UKR 1 1+0+0+0
## 5075 22 18 Anev Krasimir BUL 3 1+1+0+1
## 5076 23 44 Bailey Lowell USA 3 2+0+1+0
## 5077 24 42 Babikov Anton RUS 3 0+0+1+2
## 5078 25 33 L'Abee-Lund Henrik NOR 4 0+3+0+1
## 5079 26 14 Peiffer Arnd GER 5 1+2+0+2
## 5080 27 16 Fillon Maillet Quentin FRA 5 3+1+0+1
## 5081 28 48 Lesser Erik GER 3 0+0+1+2
## 5082 29 58 Iliev Vladimir BUL 2 1+0+1+0
## 5083 30 53 Christiansen Vetle Sjaastad NOR 2 2+0+0+0
## 5084 31 27 Weger Benjamin SUI 4 1+2+0+1
## 5085 32 29 Wiestner Serafin SUI 4 0+1+2+1
## 5086 33 32 Waeger Lorenz AUT 2 0+1+0+1
## 5087 34 13 Slesingr Michal CZE 3 0+2+0+1
## 5088 35 47 Fourcade Simon FRA 4 3+0+0+1
## 5089 36 38 Loginov Alexander RUS 5 1+2+1+1
## 5090 37 55 Lapshin Timofei KOR 2 1+0+0+1
## 5091 38 17 Bauer Klemen SLO 6 2+1+1+2
## 5092 39 54 Samuelsson Sebastian SWE 3 0+1+1+1
## 5093 40 19 Beatrix Jean Guillaume FRA 6 1+1+1+3
## 5094 41 57 Sinapov Anton BUL 3 0+0+1+2
## 5095 42 43 Dolder Mario SUI 5 1+0+2+2
## 5096 43 37 Bormolini Thomas ITA 3 1+1+1+0
## 5097 44 52 Soukup Jaroslav CZE 3 0+1+0+2
## 5098 45 56 Vaclavik Adam CZE 4 2+0+1+1
## 5099 46 35 Doherty Sean USA 6 1+3+1+1
## 5100 47 22 Bocharnikov Sergey BLR 8 1+2+3+2
## 5101 48 36 Rees Roman GER 4 1+2+0+1
## 5102 49 51 Abasheu Dzmitry BLR 5 2+1+1+1
## 5103 50 45 Darozhka Aliaksandr BLR 4 0+2+2+0
## 5104 51 31 Eliseev Matvey RUS 6 1+2+2+1
## 5105 52 34 Dovzan Miha SLO 5 3+1+1+0
## 5106 53 41 Claude Fabien FRA 8 2+3+1+2
## 5107 54 50 Trsan Rok SLO 4 3+1+0+0
## 5108 55 49 Nawrath Philipp GER 7 1+1+3+2
## 5109 56 59 Kazar Matej SVK 7 3+0+2+2
## 5110 DNF 9 Desthieux Simon FRA NA 1+1+3
## 5111 DNS 26 Puchianu Cornel ROU NA
## 5112 DNS 46 Bjoerndalen Ole Einar NOR NA
## 5113 DNS 60 Gerdzhikov Dimitar BUL NA
## 5114 1 15 Boe Johannes Thingnes NOR 0 0+0
## 5115 2 27 Fourcade Martin FRA 1 0+1
## 5116 3 106 Shipulin Anton RUS 0 0+0
## 5117 4 12 Landertinger Dominik AUT 1 0+1
## 5118 5 8 Semenov Sergii UKR 0 0+0
## 5119 6 36 Boe Tarjei NOR 1 0+1
## 5120 7 28 Moravec Ondrej CZE 0 0+0
## 5121 8 4 Garanichev Evgeniy RUS 0 0+0
## 5122 9 48 Desthieux Simon FRA 1 0+1
## 5123 10 100 Eberhard Julian AUT 1 0+1
## 5124 11 51 Doll Benedikt GER 1 1+0
## 5125 12 107 Eder Simon AUT 1 1+0
## 5126 13 19 Slesingr Michal CZE 1 1+0
## 5127 14 1 Peiffer Arnd GER 1 0+1
## 5128 15 14 Lindstroem Fredrik SWE 1 0+1
## 5129 16 32 Fillon Maillet Quentin FRA 1 1+0
## 5130 17 3 Bauer Klemen SLO 1 0+1
## 5131 18 38 Anev Krasimir BUL 0 0+0
## 5132 19 22 Beatrix Jean Guillaume FRA 1 0+1
## 5133 20 9 Svendsen Emil Hegle NOR 1 0+1
## 5134 21 24 Hofer Lukas ITA 2 2+0
## 5135 22 2 Bocharnikov Sergey BLR 1 0+1
## 5136 23 29 Rastorgujevs Andrejs LAT 3 1+2
## 5137 24 25 Schempp Simon GER 1 1+0
## 5138 25 94 Gjesbakk Fredrik NOR 0 0+0
## 5139 26 52 Puchianu Cornel ROU 0 0+0
## 5140 27 18 Weger Benjamin SUI 0 0+0
## 5141 28 50 Krcmar Michal CZE 2 0+2
## 5142 29 43 Wiestner Serafin SUI 2 1+1
## 5143 30 108 Volkov Alexey RUS 0 0+0
## 5144 31 49 Eliseev Matvey RUS 0 0+0
## 5145 32 37 Waeger Lorenz AUT 0 0+0
## 5146 33 41 L'Abee-Lund Henrik NOR 3 2+1
## 5147 34 55 Dovzan Miha SLO 0 0+0
## 5148 35 21 Doherty Sean USA 2 0+2
## 5149 36 42 Rees Roman GER 1 0+1
## 5150 37 86 Bormolini Thomas ITA 1 0+1
## 5151 38 95 Loginov Alexander RUS 2 0+2
## 5152 39 39 Pryma Artem UKR 2 1+1
## 5153 40 5 Windisch Dominik ITA 3 2+1
## 5154 40 89 Claude Fabien FRA 2 2+0
## 5155 42 35 Babikov Anton RUS 2 1+1
## 5156 43 65 Dolder Mario SUI 1 0+1
## 5157 44 20 Bailey Lowell USA 3 0+3
## 5158 45 92 Darozhka Aliaksandr BLR 0 0+0
## 5159 46 16 Bjoerndalen Ole Einar NOR 2 2+0
## 5160 47 74 Fourcade Simon FRA 2 1+1
## 5161 48 17 Lesser Erik GER 2 1+1
## 5162 49 69 Nawrath Philipp GER 2 2+0
## 5163 50 62 Trsan Rok SLO 1 1+0
## 5164 51 47 Abasheu Dzmitry BLR 2 0+2
## 5165 52 85 Soukup Jaroslav CZE 1 0+1
## 5166 53 56 Christiansen Vetle Sjaastad NOR 2 1+1
## 5167 54 45 Samuelsson Sebastian SWE 3 1+2
## 5168 55 7 Lapshin Timofei KOR 2 1+1
## 5169 56 53 Vaclavik Adam CZE 3 2+1
## 5170 57 79 Sinapov Anton BUL 3 1+2
## 5171 58 33 Iliev Vladimir BUL 2 1+1
## 5172 59 72 Kazar Matej SVK 2 1+1
## 5173 60 88 Gerdzhikov Dimitar BUL 1 0+1
## 5174 61 26 Gow Christian CAN 0 0+0
## 5175 61 87 Mesotitsch Daniel AUT 3 0+3
## 5176 63 66 Pantov Anton KAZ 1 0+1
## 5177 64 10 Pidruchnyi Dmytro UKR 2 1+1
## 5178 65 57 Dixon Scott GBR 1 1+0
## 5179 66 76 Tachizaki Mikito JPN 1 1+0
## 5180 67 13 Hasilla Tomas SVK 2 1+1
## 5181 68 83 Varabei Maksim BLR 2 1+1
## 5182 69 64 Femling Peppe SWE 2 1+1
## 5183 70 103 Jaeger Martin SUI 4 2+2
## 5184 71 59 Hiidensalo Olli FIN 4 3+1
## 5185 72 98 Zahkna Rene EST 0 0+0
## 5186 73 84 Kobonoki Tsukasa JPN 2 2+0
## 5187 74 102 Nelin Jesper SWE 2 2+0
## 5188 75 75 Podkorytov Vassiliy KAZ 2 1+1
## 5189 76 78 Guzik Grzegorz POL 1 1+0
## 5190 77 44 Otcenas Martin SVK 3 3+0
## 5191 78 11 Roesch Michael BEL 2 0+2
## 5192 79 34 Faur Remus ROU 2 0+2
## 5193 80 71 Montello Giuseppe ITA 3 2+1
## 5194 81 61 Lessing Roland EST 3 1+2
## 5195 82 6 Gronman Tuomas FIN 2 2+0
## 5196 83 58 Skjelvik Kristoffer NOR 1 1+0
## 5197 84 31 Kaukenas Tomas LTU 4 2+2
## 5198 85 40 Green Brendan CAN 2 1+1
## 5199 86 54 Malinovskii Igor RUS 4 2+2
## 5200 87 30 Koiv Kauri EST 3 0+3
## 5201 88 68 Siemakov Volodymyr UKR 2 2+0
## 5202 89 82 Komatz David AUT 4 4+0
## 5203 90 80 Szczurek Lukasz POL 0 0+0
## 5204 91 81 Strolia Vytautas LTU 2 0+2
## 5205 92 96 Nedza-Kubiniec Andrzej POL 1 0+1
## 5206 93 91 Bricis Ilmars LAT 1 1+0
## 5207 94 105 Braun Maxim KAZ 2 1+1
## 5208 95 73 Gow Scott CAN 1 0+1
## 5209 96 97 Oblak Lenart SLO 1 1+0
## 5210 97 63 Lusa Daumants LAT 1 1+0
## 5211 98 60 Schommer Paul USA 3 2+1
## 5212 99 93 Zhyrnyi Oleksandr UKR 5 3+2
## 5213 100 46 Nordgren Leif USA 3 2+1
## 5214 101 90 Sima Michal SVK 2 2+0
## 5215 102 99 Ranta Jaakko FIN 3 2+1
## 5216 103 104 Angelis Apostolos GRE 4 3+1
## 5217 104 67 Pop Gheorghe ROU 6 4+2
## 5218 105 70 Krsmanovic Dejan SRB 4 4+0
## 5219 106 77 Kim Yonggyu KOR 5 3+2
## 5220 107 101 Dombrovski Karol LTU 4 2+2
## 5221 DNS 23 Tsvetkov Maxim RUS NA
## 5222 1 1 Fourcade Martin FRA 0 0+0+0+0
## 5223 2 4 Svendsen Emil Hegle NOR 0 0+0+0+0
## 5224 3 3 Shipulin Anton RUS 1 0+0+0+1
## 5225 4 2 Boe Johannes Thingnes NOR 2 0+0+0+2
## 5226 5 6 Schempp Simon GER 1 0+0+1+0
## 5227 6 16 Roesch Michael BEL 0 0+0+0+0
## 5228 7 10 Eliseev Matvey RUS 2 0+0+1+1
## 5229 8 13 Tsvetkov Maxim RUS 2 0+1+0+1
## 5230 9 7 Bjoerndalen Ole Einar NOR 4 2+0+2+0
## 5231 10 9 Krcmar Michal CZE 2 0+0+2+0
## 5232 11 8 Lesser Erik GER 2 1+0+0+1
## 5233 12 19 Peiffer Arnd GER 1 1+0+0+0
## 5234 13 32 Birkeland Lars Helge NOR 1 0+1+0+0
## 5235 14 31 Moravec Ondrej CZE 2 1+1+0+0
## 5236 15 20 Desthieux Simon FRA 2 1+0+0+1
## 5237 16 11 Eder Simon AUT 5 1+1+2+1
## 5238 17 24 Weger Benjamin SUI 2 1+1+0+0
## 5239 18 18 Bailey Lowell USA 1 1+0+0+0
## 5240 19 15 Slesingr Michal CZE 2 0+0+0+2
## 5241 20 5 Fillon Maillet Quentin FRA 5 1+1+1+2
## 5242 21 47 Eberhard Julian AUT 3 2+0+0+1
## 5243 22 21 Doll Benedikt GER 3 0+0+1+2
## 5244 23 39 Pryma Artem UKR 2 1+0+1+0
## 5245 24 25 Semenov Sergii UKR 2 0+1+0+1
## 5246 25 26 Anev Krasimir BUL 2 0+1+0+1
## 5247 26 36 Garanichev Evgeniy RUS 2 1+0+1+0
## 5248 27 49 Landertinger Dominik AUT 2 0+0+1+1
## 5249 28 42 Hofer Lukas ITA 4 0+3+0+1
## 5250 29 59 Windisch Dominik ITA 2 1+0+1+0
## 5251 30 46 Pidruchnyi Dmytro UKR 2 1+0+0+1
## 5252 31 33 Gow Christian CAN 1 0+1+0+0
## 5253 32 38 Bjoentegaard Erlend NOR 4 0+0+2+2
## 5254 33 28 Dolder Mario SUI 4 1+0+1+2
## 5255 34 22 Babikov Anton RUS 5 2+1+0+2
## 5256 35 30 Samuelsson Sebastian SWE 3 0+1+1+1
## 5257 36 37 Dorfer Matthias GER 3 0+1+1+1
## 5258 37 35 Hasilla Tomas SVK 1 1+0+0+0
## 5259 38 51 Krupcik Tomas CZE 1 0+0+0+1
## 5260 39 27 Beatrix Jean Guillaume FRA 5 1+1+3+0
## 5261 40 57 Graf Florian GER 2 0+2+0+0
## 5262 41 12 Bauer Klemen SLO 6 1+1+3+1
## 5263 42 53 Burke Tim USA 5 0+0+2+3
## 5264 43 41 Yaliotnau Raman BLR 5 1+3+1+0
## 5265 44 44 Bocharnikov Sergey BLR 4 3+0+1+0
## 5266 45 17 Wiestner Serafin SUI 5 3+1+1+0
## 5267 46 14 Mesotitsch Daniel AUT 5 1+1+1+2
## 5268 47 43 Otcenas Martin SVK 4 1+1+1+1
## 5269 48 23 Gow Scott CAN 5 2+1+0+2
## 5270 49 48 Lessing Roland EST 3 0+1+2+0
## 5271 50 50 Vaclavik Adam CZE 5 1+2+2+0
## 5272 51 56 Finello Jeremy SUI 5 1+2+2+0
## 5273 52 45 Sinapov Anton BUL 4 1+0+2+1
## 5274 53 54 Dombrovski Karol LTU 2 0+0+2+0
## 5275 54 58 Hiidensalo Olli FIN 5 2+0+1+2
## 5276 55 40 Leitner Felix AUT 7 3+1+1+2
## 5277 56 29 Fourcade Simon FRA 3 0+2+0+1
## 5278 57 52 Green Brendan CAN 5 1+1+2+1
## 5279 58 34 Puchianu Cornel ROU 7 1+0+3+3
## 5280 DNF 55 Claude Fabien FRA NA 3+1+2
## 5281 DNS 60 Kilchytskyy Vitaliy UKR NA
## 5282 1 30 Fourcade Martin FRA 0 0+0
## 5283 2 21 Boe Johannes Thingnes NOR 0 0+0
## 5284 3 29 Shipulin Anton RUS 0 0+0
## 5285 4 18 Svendsen Emil Hegle NOR 0 0+0
## 5286 5 88 Fillon Maillet Quentin FRA 0 0+0
## 5287 6 38 Schempp Simon GER 0 0+0
## 5288 7 9 Bjoerndalen Ole Einar NOR 0 0+0
## 5289 8 3 Lesser Erik GER 0 0+0
## 5290 9 35 Krcmar Michal CZE 0 0+0
## 5291 10 41 Eliseev Matvey RUS 1 1+0
## 5292 11 31 Eder Simon AUT 1 0+1
## 5293 12 8 Bauer Klemen SLO 0 0+0
## 5294 13 28 Tsvetkov Maxim RUS 0 0+0
## 5295 14 47 Mesotitsch Daniel AUT 0 0+0
## 5296 15 33 Slesingr Michal CZE 1 0+1
## 5297 16 11 Roesch Michael BEL 1 1+0
## 5298 17 42 Wiestner Serafin SUI 1 0+1
## 5299 18 15 Bailey Lowell USA 0 0+0
## 5300 19 14 Peiffer Arnd GER 1 1+0
## 5301 20 17 Desthieux Simon FRA 1 1+0
## 5302 21 2 Doll Benedikt GER 3 0+3
## 5303 21 49 Babikov Anton RUS 0 0+0
## 5304 23 70 Gow Scott CAN 0 0+0
## 5305 24 4 Weger Benjamin SUI 1 0+1
## 5306 25 45 Semenov Sergii UKR 1 0+1
## 5307 26 27 Anev Krasimir BUL 0 0+0
## 5308 27 39 Beatrix Jean Guillaume FRA 2 1+1
## 5309 28 68 Dolder Mario SUI 1 0+1
## 5310 29 19 Fourcade Simon FRA 1 1+0
## 5311 30 48 Samuelsson Sebastian SWE 1 0+1
## 5312 31 10 Moravec Ondrej CZE 1 1+0
## 5313 32 36 Birkeland Lars Helge NOR 1 1+0
## 5314 33 102 Gow Christian CAN 0 0+0
## 5315 34 7 Puchianu Cornel ROU 1 0+1
## 5316 35 13 Hasilla Tomas SVK 0 0+0
## 5317 35 25 Garanichev Evgeniy RUS 1 0+1
## 5318 37 97 Dorfer Matthias GER 0 0+0
## 5319 38 81 Bjoentegaard Erlend NOR 2 0+2
## 5320 39 16 Pryma Artem UKR 2 1+1
## 5321 39 76 Leitner Felix AUT 2 2+0
## 5322 41 64 Yaliotnau Raman BLR 2 0+2
## 5323 42 40 Hofer Lukas ITA 3 2+1
## 5324 42 46 Otcenas Martin SVK 1 1+0
## 5325 44 94 Bocharnikov Sergey BLR 1 0+1
## 5326 45 60 Sinapov Anton BUL 2 0+2
## 5327 46 6 Pidruchnyi Dmytro UKR 3 1+2
## 5328 47 20 Eberhard Julian AUT 4 3+1
## 5329 48 82 Lessing Roland EST 1 0+1
## 5330 49 26 Landertinger Dominik AUT 2 0+2
## 5331 50 58 Vaclavik Adam CZE 2 2+0
## 5332 51 84 Krupcik Tomas CZE 0 0+0
## 5333 52 23 Green Brendan CAN 2 1+1
## 5334 53 12 Burke Tim USA 3 2+1
## 5335 53 55 Dombrovski Karol LTU 0 0+0
## 5336 55 65 Claude Fabien FRA 2 0+2
## 5337 56 86 Finello Jeremy SUI 1 1+0
## 5338 57 62 Graf Florian GER 2 2+0
## 5339 58 79 Hiidensalo Olli FIN 2 1+1
## 5340 59 5 Windisch Dominik ITA 3 1+2
## 5341 60 63 Kilchytskyy Vitaliy UKR 3 1+2
## 5342 61 44 Iliev Vladimir BUL 4 2+2
## 5343 62 77 Shopin Yury RUS 2 0+2
## 5344 63 53 Kazar Matej SVK 2 1+1
## 5345 64 61 Savitskiy Yan KAZ 1 0+1
## 5346 65 59 Currier Russell USA 2 1+1
## 5347 66 72 Tachizaki Mikito JPN 1 1+0
## 5348 67 37 Varabei Maksim BLR 2 1+1
## 5349 68 104 Grossegger Sven AUT 2 1+1
## 5350 69 103 L'Abee-Lund Henrik NOR 3 1+2
## 5351 70 34 Rastorgujevs Andrejs LAT 4 0+4
## 5352 71 56 Guzik Grzegorz POL 2 1+1
## 5353 72 69 Braun Maxim KAZ 1 0+1
## 5354 73 52 Zahkna Rene EST 0 0+0
## 5355 74 74 Bricis Ilmars LAT 2 0+2
## 5356 75 91 Montello Giuseppe ITA 1 1+0
## 5357 76 24 Nelin Jesper SWE 3 2+1
## 5358 77 71 Faur Remus ROU 1 0+1
## 5359 78 67 Crnkovic Kresimir CRO 3 1+2
## 5360 79 96 Podkorytov Vassiliy KAZ 2 1+1
## 5361 80 54 Davies Macx CAN 2 0+2
## 5362 81 101 Zhyrnyi Oleksandr UKR 3 1+2
## 5363 82 57 Bormolini Thomas ITA 2 2+0
## 5364 82 73 Kaukenas Tomas LTU 2 1+1
## 5365 84 50 Stenersen Torstein SWE 2 1+1
## 5366 85 87 Gerdzhikov Dimitar BUL 1 1+0
## 5367 86 98 Sima Michal SVK 1 0+1
## 5368 87 66 Janik Mateusz POL 1 0+1
## 5369 88 83 Dovzan Miha SLO 2 2+0
## 5370 89 32 Chepelin Vladimir BLR 4 1+3
## 5371 90 78 Trsan Rok SLO 3 2+1
## 5372 91 92 Kobonoki Tsukasa JPN 1 1+0
## 5373 92 75 Dixon Scott GBR 1 1+0
## 5374 93 100 Szczurek Lukasz POL 3 2+1
## 5375 94 85 Strolia Vytautas LTU 3 0+3
## 5376 95 99 Buta George ROU 1 1+0
## 5377 96 22 Gronman Tuomas FIN 2 2+0
## 5378 97 1 Koiv Kauri EST 4 2+2
## 5379 98 80 Kim Jongmin KOR 2 1+1
## 5380 99 51 Femling Peppe SWE 3 2+1
## 5381 100 93 Vitenko Vladislav KAZ 3 1+2
## 5382 101 95 Lee Inbok KOR 3 1+2
## 5383 102 43 Drinovec Mitja SLO 3 1+2
## 5384 103 90 Huhtala Teemu FIN 3 2+1
## 5385 104 89 Slotins Roberts LAT 3 1+2
## 5386 1 3 Fourcade Martin FRA 0 0+0+0+0
## 5387 2 23 Shipulin Anton RUS 0 0+0+0+0
## 5388 3 1 Eberhard Julian AUT 3 0+2+0+1
## 5389 4 8 Eder Simon AUT 2 0+0+0+2
## 5390 5 9 Garanichev Evgeniy RUS 2 0+1+1+0
## 5391 6 11 Desthieux Simon FRA 2 1+1+0+0
## 5392 7 4 Landertinger Dominik AUT 2 0+0+0+2
## 5393 8 20 Doll Benedikt GER 2 0+0+1+1
## 5394 9 2 Bailey Lowell USA 2 1+0+1+0
## 5395 10 12 Hofer Lukas ITA 2 0+0+0+2
## 5396 11 17 Beatrix Jean Guillaume FRA 1 0+0+1+0
## 5397 12 18 Christiansen Vetle Sjaastad NOR 2 0+1+0+1
## 5398 13 5 Lesser Erik GER 3 0+1+1+1
## 5399 14 15 Rastorgujevs Andrejs LAT 3 2+1+0+0
## 5400 15 41 Babikov Anton RUS 0 0+0+0+0
## 5401 16 22 Fourcade Simon FRA 2 0+0+0+2
## 5402 17 38 L'Abee-Lund Henrik NOR 0 0+0+0+0
## 5403 18 30 Bocharnikov Sergey BLR 0 0+0+0+0
## 5404 19 26 Bjoerndalen Ole Einar NOR 3 0+1+0+2
## 5405 20 14 Tsvetkov Maxim RUS 1 0+0+1+0
## 5406 21 31 Peiffer Arnd GER 2 0+0+0+2
## 5407 22 6 Windisch Dominik ITA 4 0+3+1+0
## 5408 23 13 Rees Roman GER 3 0+1+1+1
## 5409 24 24 Slesingr Michal CZE 2 1+0+0+1
## 5410 25 32 Fillon Maillet Quentin FRA 2 0+2+0+0
## 5411 26 7 Wiestner Serafin SUI 4 0+1+2+1
## 5412 27 19 Krupcik Tomas CZE 2 0+0+1+1
## 5413 28 37 Nordgren Leif USA 1 0+0+0+1
## 5414 29 29 Graf Florian GER 3 0+0+1+2
## 5415 30 16 Pidruchnyi Dmytro UKR 4 0+1+1+2
## 5416 31 35 Finello Jeremy SUI 2 1+0+1+0
## 5417 32 56 Gow Christian CAN 0 0+0+0+0
## 5418 33 10 Pryma Artem UKR 4 1+1+1+1
## 5419 34 21 Waeger Lorenz AUT 4 0+1+2+1
## 5420 35 44 Anev Krasimir BUL 2 1+1+0+0
## 5421 36 34 Chepelin Vladimir BLR 5 0+1+2+2
## 5422 37 25 Semenov Sergii UKR 5 0+1+1+3
## 5423 38 48 Bauer Klemen SLO 2 0+1+0+1
## 5424 39 60 Sinapov Anton BUL 2 0+0+1+1
## 5425 40 40 Gjermundshaug Vegard NOR 3 1+0+0+2
## 5426 41 47 Savitskiy Yan KAZ 2 0+0+0+2
## 5427 42 52 Shopin Yury RUS 2 0+2+0+0
## 5428 43 27 Gow Scott CAN 5 0+1+1+3
## 5429 44 28 Green Brendan CAN 3 2+1+0+0
## 5430 45 59 Hoerl Fabian AUT 1 1+0+0+0
## 5431 46 36 Montello Giuseppe ITA 4 0+1+2+1
## 5432 47 46 Claude Fabien FRA 7 1+2+1+3
## 5433 48 45 Weger Benjamin SUI 4 0+2+2+0
## 5434 49 54 Siemakov Volodymyr UKR 3 0+0+1+2
## 5435 50 58 Zhyrnyi Oleksandr UKR 3 0+0+1+2
## 5436 51 49 Krcmar Michal CZE 4 1+0+2+1
## 5437 52 39 Gerdzhikov Dimitar BUL 3 1+1+0+1
## 5438 53 50 Samuelsson Sebastian SWE 5 3+1+1+0
## 5439 54 33 Varabei Maksim BLR 5 2+1+1+1
## 5440 55 57 Hasilla Tomas SVK 3 1+0+1+1
## 5441 56 51 Dolder Mario SUI 5 0+1+1+3
## 5442 57 53 Guzik Grzegorz POL 4 0+1+2+1
## 5443 58 43 Vaclavik Adam CZE 8 2+1+3+2
## 5444 DNS 42 Iliev Vladimir BUL NA
## 5445 DNS 55 Podkorytov Vassiliy KAZ NA
## 5446 1 90 Eberhard Julian AUT 0 0+0
## 5447 2 81 Bailey Lowell USA 0 0+0
## 5448 3 76 Fourcade Martin FRA 2 1+1
## 5449 4 26 Landertinger Dominik AUT 0 0+0
## 5450 5 72 Lesser Erik GER 1 0+1
## 5451 6 24 Windisch Dominik ITA 1 1+0
## 5452 7 70 Wiestner Serafin SUI 1 1+0
## 5453 8 63 Eder Simon AUT 2 0+2
## 5454 9 89 Garanichev Evgeniy RUS 2 0+2
## 5455 10 59 Pryma Artem UKR 0 0+0
## 5456 11 34 Desthieux Simon FRA 1 0+1
## 5457 12 6 Hofer Lukas ITA 2 1+1
## 5458 13 46 Rees Roman GER 1 0+1
## 5459 14 37 Tsvetkov Maxim RUS 0 0+0
## 5460 15 33 Rastorgujevs Andrejs LAT 2 1+1
## 5461 16 41 Pidruchnyi Dmytro UKR 2 1+1
## 5462 17 8 Beatrix Jean Guillaume FRA 1 0+1
## 5463 18 11 Christiansen Vetle Sjaastad NOR 1 0+1
## 5464 19 9 Krupcik Tomas CZE 0 0+0
## 5465 20 27 Doll Benedikt GER 3 2+1
## 5466 21 13 Waeger Lorenz AUT 0 0+0
## 5467 21 56 Fourcade Simon FRA 2 1+1
## 5468 23 39 Shipulin Anton RUS 3 1+2
## 5469 24 73 Slesingr Michal CZE 1 1+0
## 5470 25 40 Semenov Sergii UKR 1 0+1
## 5471 26 62 Bjoerndalen Ole Einar NOR 3 1+2
## 5472 27 22 Gow Scott CAN 2 1+1
## 5473 28 31 Green Brendan CAN 1 0+1
## 5474 29 21 Graf Florian GER 2 1+1
## 5475 30 47 Bocharnikov Sergey BLR 1 1+0
## 5476 31 32 Peiffer Arnd GER 3 0+3
## 5477 32 10 Fillon Maillet Quentin FRA 3 2+1
## 5478 33 79 Varabei Maksim BLR 1 0+1
## 5479 34 36 Chepelin Vladimir BLR 3 1+2
## 5480 35 80 Finello Jeremy SUI 2 0+2
## 5481 36 69 Montello Giuseppe ITA 1 0+1
## 5482 37 29 Nordgren Leif USA 2 1+1
## 5483 38 67 L'Abee-Lund Henrik NOR 3 0+3
## 5484 39 92 Gerdzhikov Dimitar BUL 0 0+0
## 5485 40 23 Gjermundshaug Vegard NOR 2 1+1
## 5486 41 94 Babikov Anton RUS 1 0+1
## 5487 42 16 Iliev Vladimir BUL 4 1+3
## 5488 43 30 Vaclavik Adam CZE 3 2+1
## 5489 43 42 Anev Krasimir BUL 2 1+1
## 5490 45 3 Weger Benjamin SUI 2 2+0
## 5491 46 87 Claude Fabien FRA 3 2+1
## 5492 47 35 Savitskiy Yan KAZ 2 0+2
## 5493 48 2 Bauer Klemen SLO 3 1+2
## 5494 49 49 Krcmar Michal CZE 2 1+1
## 5495 50 14 Samuelsson Sebastian SWE 3 1+2
## 5496 50 20 Dolder Mario SUI 3 0+3
## 5497 52 5 Shopin Yury RUS 2 1+1
## 5498 53 43 Guzik Grzegorz POL 1 1+0
## 5499 54 4 Siemakov Volodymyr UKR 2 0+2
## 5500 55 50 Podkorytov Vassiliy KAZ 1 0+1
## 5501 56 12 Gow Christian CAN 2 2+0
## 5502 57 74 Hasilla Tomas SVK 2 1+1
## 5503 58 86 Zhyrnyi Oleksandr UKR 3 2+1
## 5504 59 97 Hoerl Fabian AUT 1 0+1
## 5505 60 48 Sinapov Anton BUL 4 3+1
## 5506 61 84 Gjesbakk Fredrik NOR 4 1+3
## 5507 62 66 Szczurek Lukasz POL 1 1+0
## 5508 63 19 Faur Remus ROU 2 2+0
## 5509 64 45 Bjoentegaard Erlend NOR 4 2+2
## 5510 65 75 Puchianu Cornel ROU 3 1+2
## 5511 66 58 Bricis Ilmars LAT 2 0+2
## 5512 67 88 Orpana Sami FIN 1 0+1
## 5513 68 18 Otcenas Martin SVK 3 1+2
## 5514 69 95 Soukup Jaroslav CZE 1 1+0
## 5515 70 55 Tachizaki Mikito JPN 2 0+2
## 5516 71 53 Dombrovski Karol LTU 2 1+1
## 5517 72 52 Grossegger Sven AUT 2 2+0
## 5518 73 82 Bormolini Thomas ITA 4 3+1
## 5519 74 44 Dovzan Miha SLO 3 1+2
## 5520 75 65 Pantov Anton KAZ 2 2+0
## 5521 76 78 Lusa Daumants LAT 1 0+1
## 5522 77 98 Strolia Vytautas LTU 3 2+1
## 5523 78 15 Abasheu Dzmitry BLR 2 1+1
## 5524 79 91 Stenersen Torstein SWE 3 3+0
## 5525 80 93 Doherty Sean USA 2 1+1
## 5526 81 7 Roesch Michael BEL 3 1+2
## 5527 82 71 Zahkna Rene EST 3 2+1
## 5528 83 25 Koiv Kauri EST 2 0+2
## 5529 84 38 Femling Peppe SWE 3 2+1
## 5530 85 103 Buta George ROU 2 2+0
## 5531 86 1 Kazar Matej SVK 4 2+2
## 5532 87 102 Kim Jongmin KOR 0 0+0
## 5533 88 54 Smith Nathan CAN 2 0+2
## 5534 89 17 Kaukenas Tomas LTU 3 0+3
## 5535 90 85 Sima Michal SVK 3 2+1
## 5536 91 96 Kobonoki Tsukasa JPN 3 1+2
## 5537 92 28 Gronman Tuomas FIN 3 2+1
## 5538 93 51 Loukkaanhuhta Mikko FIN 5 3+2
## 5539 94 64 Kim Yonggyu KOR 2 0+2
## 5540 95 77 Trsan Rok SLO 4 3+1
## 5541 96 100 Remmelg Martin EST 3 1+2
## 5542 97 99 Vitenko Vladislav KAZ 4 3+1
## 5543 98 101 Davies Macx CAN 4 3+1
## 5544 99 60 Oblak Lenart SLO 3 1+2
## 5545 99 68 Makhambetov Timur RUS 5 4+1
## 5546 101 61 Schommer Paul USA 5 3+2
## 5547 102 83 Penar Rafal POL 4 2+2
## 5548 DNS 57 Nelin Jesper SWE NA
## 5549 1 1 Fourcade Martin FRA 3 0+2+1+0
## 5550 2 3 Svendsen Emil Hegle NOR 0 0+0+0+0
## 5551 3 29 Krcmar Michal CZE 0 0+0+0+0
## 5552 4 24 Shipulin Anton RUS 1 0+0+0+1
## 5553 5 4 Peiffer Arnd GER 1 0+0+0+1
## 5554 6 9 Landertinger Dominik AUT 1 0+0+1+0
## 5555 7 5 Schempp Simon GER 2 0+0+0+2
## 5556 8 21 Bjoentegaard Erlend NOR 1 0+0+1+0
## 5557 9 15 Mesotitsch Daniel AUT 0 0+0+0+0
## 5558 10 22 Rastorgujevs Andrejs LAT 2 1+0+1+0
## 5559 11 43 Windisch Dominik ITA 1 0+0+0+1
## 5560 12 28 Iliev Vladimir BUL 2 2+0+0+0
## 5561 13 2 Eberhard Julian AUT 6 3+0+2+1
## 5562 14 6 Malyshko Dmitry RUS 2 0+0+0+2
## 5563 15 37 Boe Johannes Thingnes NOR 2 1+0+1+0
## 5564 16 46 Fourcade Simon FRA 1 0+1+0+0
## 5565 17 33 Beatrix Jean Guillaume FRA 2 0+0+1+1
## 5566 18 7 Pidruchnyi Dmytro UKR 3 1+0+2+0
## 5567 19 13 Lindstroem Fredrik SWE 2 1+0+1+0
## 5568 20 11 Weger Benjamin SUI 2 1+0+0+1
## 5569 21 54 L'Abee-Lund Henrik NOR 1 0+1+0+0
## 5570 22 20 Doll Benedikt GER 4 1+0+1+2
## 5571 23 27 Lesser Erik GER 4 1+0+1+2
## 5572 24 12 Burke Tim USA 3 0+0+2+1
## 5573 25 19 Garanichev Evgeniy RUS 4 0+0+2+2
## 5574 26 18 Bailey Lowell USA 2 0+0+1+1
## 5575 27 35 Pryma Artem UKR 1 1+0+0+0
## 5576 28 25 Dolder Mario SUI 2 0+0+1+1
## 5577 29 17 Chepelin Vladimir BLR 3 0+2+1+0
## 5578 30 30 Anev Krasimir BUL 2 0+0+1+1
## 5579 31 34 Roesch Michael BEL 2 0+0+0+2
## 5580 32 26 Fillon Maillet Quentin FRA 6 1+2+1+2
## 5581 33 49 Claude Fabien FRA 4 0+1+1+2
## 5582 34 8 Bjoerndalen Ole Einar NOR 5 2+1+1+1
## 5583 35 58 Savitskiy Yan KAZ 2 0+0+2+0
## 5584 36 10 Birkeland Lars Helge NOR 3 1+0+1+1
## 5585 37 52 Moravec Ondrej CZE 4 0+1+2+1
## 5586 38 55 Hofer Lukas ITA 5 0+5+0+0
## 5587 39 31 Tsvetkov Maxim RUS 5 0+2+1+2
## 5588 40 39 Vaclavik Adam CZE 3 1+1+1+0
## 5589 41 42 Gow Scott CAN 3 0+1+1+1
## 5590 42 38 Willeitner Michael GER 2 0+0+0+2
## 5591 43 40 Doherty Sean USA 4 1+0+2+1
## 5592 44 50 Komatz David AUT 2 1+1+0+0
## 5593 45 41 Wiestner Serafin SUI 5 2+1+2+0
## 5594 46 48 Semenov Sergii UKR 4 0+2+2+0
## 5595 47 57 Bocharnikov Sergey BLR 4 1+2+0+1
## 5596 48 16 Bischl Matthias GER 5 2+1+1+1
## 5597 49 36 Samuelsson Sebastian SWE 7 2+1+1+3
## 5598 50 56 Fak Jakov SLO 5 1+0+1+3
## 5599 51 53 Nelin Jesper SWE 8 1+2+4+1
## 5600 52 60 Bormolini Thomas ITA 7 0+3+3+1
## 5601 53 32 Kaukenas Tomas LTU 7 2+3+1+1
## 5602 54 51 Gronman Tuomas FIN 5 0+1+1+3
## 5603 55 44 Bricis Ilmars LAT 6 2+1+1+2
## 5604 DNF 14 Bauer Klemen SLO NA 0+0+3
## 5605 DNS 23 Babikov Anton RUS NA
## 5606 DNS 45 Stenersen Torstein SWE NA
## 5607 DNS 47 Kilchytskyy Vitaliy UKR NA
## 5608 DNS 59 Eliseev Matvey RUS NA
## 5609 1 60 Fourcade Martin FRA 0 0+0
## 5610 2 27 Eberhard Julian AUT 0 0+0
## 5611 3 25 Svendsen Emil Hegle NOR 0 0+0
## 5612 4 81 Peiffer Arnd GER 0 0+0
## 5613 5 66 Schempp Simon GER 1 0+1
## 5614 6 30 Malyshko Dmitry RUS 0 0+0
## 5615 7 23 Pidruchnyi Dmytro UKR 0 0+0
## 5616 8 13 Bjoerndalen Ole Einar NOR 1 0+1
## 5617 9 26 Landertinger Dominik AUT 1 0+1
## 5618 10 10 Birkeland Lars Helge NOR 0 0+0
## 5619 11 22 Weger Benjamin SUI 0 0+0
## 5620 12 21 Burke Tim USA 1 0+1
## 5621 13 72 Lindstroem Fredrik SWE 0 0+0
## 5622 14 38 Bauer Klemen SLO 1 0+1
## 5623 15 50 Mesotitsch Daniel AUT 0 0+0
## 5624 16 47 Bischl Matthias GER 0 0+0
## 5625 17 48 Chepelin Vladimir BLR 1 0+1
## 5626 18 80 Bailey Lowell USA 1 0+1
## 5627 19 90 Garanichev Evgeniy RUS 1 0+1
## 5628 20 29 Doll Benedikt GER 3 0+3
## 5629 21 100 Bjoentegaard Erlend NOR 1 0+1
## 5630 22 33 Rastorgujevs Andrejs LAT 2 1+1
## 5631 23 14 Babikov Anton RUS 1 1+0
## 5632 23 69 Shipulin Anton RUS 3 2+1
## 5633 25 78 Dolder Mario SUI 1 0+1
## 5634 26 75 Fillon Maillet Quentin FRA 1 0+1
## 5635 27 31 Lesser Erik GER 2 1+1
## 5636 28 15 Iliev Vladimir BUL 2 1+1
## 5637 29 71 Krcmar Michal CZE 1 0+1
## 5638 30 51 Anev Krasimir BUL 1 0+1
## 5639 31 70 Tsvetkov Maxim RUS 1 0+1
## 5640 32 57 Kaukenas Tomas LTU 0 0+0
## 5641 33 65 Beatrix Jean Guillaume FRA 2 0+2
## 5642 34 28 Roesch Michael BEL 1 1+0
## 5643 35 45 Pryma Artem UKR 2 1+1
## 5644 36 35 Samuelsson Sebastian SWE 2 1+1
## 5645 37 16 Boe Johannes Thingnes NOR 1 1+0
## 5646 38 93 Willeitner Michael GER 1 1+0
## 5647 39 88 Vaclavik Adam CZE 2 2+0
## 5648 40 79 Doherty Sean USA 1 1+0
## 5649 41 4 Wiestner Serafin SUI 3 1+2
## 5650 42 34 Gow Scott CAN 1 1+0
## 5651 43 52 Windisch Dominik ITA 3 1+2
## 5652 44 42 Bricis Ilmars LAT 0 0+0
## 5653 45 91 Stenersen Torstein SWE 1 0+1
## 5654 46 24 Fourcade Simon FRA 1 0+1
## 5655 47 92 Kilchytskyy Vitaliy UKR 1 0+1
## 5656 48 11 Semenov Sergii UKR 3 1+2
## 5657 49 105 Claude Fabien FRA 2 1+1
## 5658 50 44 Komatz David AUT 1 1+0
## 5659 51 20 Gronman Tuomas FIN 1 1+0
## 5660 52 56 Moravec Ondrej CZE 3 2+1
## 5661 53 9 Nelin Jesper SWE 3 3+0
## 5662 53 64 L'Abee-Lund Henrik NOR 4 1+3
## 5663 55 19 Hofer Lukas ITA 3 1+2
## 5664 56 43 Fak Jakov SLO 2 1+1
## 5665 57 36 Bocharnikov Sergey BLR 3 1+2
## 5666 58 58 Savitskiy Yan KAZ 1 0+1
## 5667 59 53 Eliseev Matvey RUS 3 3+0
## 5668 60 107 Bormolini Thomas ITA 1 0+1
## 5669 61 5 Siemakov Volodymyr UKR 2 2+0
## 5670 62 74 Faur Remus ROU 1 0+1
## 5671 63 96 Grossegger Sven AUT 1 0+1
## 5672 64 76 Green Brendan CAN 2 1+1
## 5673 65 77 Slesingr Michal CZE 4 3+1
## 5674 66 17 Guzik Grzegorz POL 1 0+1
## 5675 67 59 Kazar Matej SVK 3 1+2
## 5676 68 82 Braun Maxim KAZ 1 0+1
## 5677 69 61 Zahkna Rene EST 1 1+0
## 5678 70 18 Soukup Jaroslav CZE 3 2+1
## 5679 71 83 Nordgren Leif USA 2 1+1
## 5680 72 95 Tambornino Eligius SUI 3 1+2
## 5681 73 7 Yaliotnau Raman BLR 4 0+4
## 5682 74 32 Puchianu Cornel ROU 3 1+2
## 5683 75 1 Currier Russell USA 4 2+2
## 5684 76 6 Leitner Felix AUT 2 1+1
## 5685 77 99 Orpana Sami FIN 2 0+2
## 5686 78 98 Dovzan Miha SLO 2 1+1
## 5687 79 41 Montello Giuseppe ITA 3 1+2
## 5688 80 55 Strolia Vytautas LTU 4 3+1
## 5689 81 37 Crnkovic Kresimir CRO 3 1+2
## 5690 82 101 Davies Macx CAN 3 2+1
## 5691 83 85 Abasheu Dzmitry BLR 3 2+1
## 5692 84 40 Hiidensalo Olli FIN 4 1+3
## 5693 85 12 Otcenas Martin SVK 4 2+2
## 5694 86 8 Sinapov Anton BUL 4 3+1
## 5695 87 86 Podkorytov Vassiliy KAZ 3 3+0
## 5696 88 2 Gow Christian CAN 3 2+1
## 5697 89 84 Buta George ROU 2 2+0
## 5698 90 39 Janik Mateusz POL 2 0+2
## 5699 91 3 Hasilla Tomas SVK 4 3+1
## 5700 92 102 Gerdzhikov Dimitar BUL 3 0+3
## 5701 93 46 Ermits Kalev EST 4 4+0
## 5702 94 106 Penar Rafal POL 1 0+1
## 5703 95 103 Dombrovski Karol LTU 2 0+2
## 5704 96 73 Kobonoki Tsukasa JPN 5 2+3
## 5705 97 94 Lusa Daumants LAT 3 1+2
## 5706 98 68 Pantov Anton KAZ 5 3+2
## 5707 99 49 Lee Inbok KOR 2 0+2
## 5708 100 97 Tachizaki Mikito JPN 4 0+4
## 5709 101 62 Trsan Rok SLO 4 0+4
## 5710 102 54 Hodzic Edin SRB 2 0+2
## 5711 103 87 Sima Michal SVK 3 1+2
## 5712 104 104 Kim Jongmin KOR 3 1+2
## 5713 105 67 Dixon Scott GBR 2 1+1
## 5714 106 89 Remmelg Martin EST 5 3+2
## 5715 107 63 Angelis Apostolos GRE 6 3+3
## 5716 1 1 Fourcade Martin FRA 0 0+0+0+0
## 5717 2 2 Boe Johannes Thingnes NOR 2 2+0+0+0
## 5718 3 10 Lesser Erik GER 0 0+0+0+0
## 5719 4 5 Shipulin Anton RUS 0 0+0+0+0
## 5720 5 9 Weger Benjamin SUI 1 0+0+1+0
## 5721 6 12 Peiffer Arnd GER 1 0+0+1+0
## 5722 7 27 Windisch Dominik ITA 2 1+1+0+0
## 5723 8 3 Fak Jakov SLO 1 1+0+0+0
## 5724 9 17 Loginov Alexander RUS 3 1+0+0+2
## 5725 10 28 Bjoentegaard Erlend NOR 3 1+0+2+0
## 5726 11 6 Boe Tarjei NOR 3 0+1+1+1
## 5727 12 16 Eder Simon AUT 3 0+1+0+2
## 5728 13 15 Babikov Anton RUS 2 0+2+0+0
## 5729 14 19 Lindstroem Fredrik SWE 0 0+0+0+0
## 5730 15 7 Hofer Lukas ITA 4 0+1+2+1
## 5731 16 8 Birkeland Lars Helge NOR 2 1+0+0+1
## 5732 17 14 Desthieux Simon FRA 5 1+2+1+1
## 5733 18 20 Doll Benedikt GER 5 1+0+1+3
## 5734 19 30 Garanichev Evgeniy RUS 4 0+2+2+0
## 5735 20 13 Fillon Maillet Quentin FRA 5 0+2+0+3
## 5736 21 21 Tsvetkov Maxim RUS 1 0+0+0+1
## 5737 22 26 Guigonnat Antonin FRA 3 0+0+2+1
## 5738 23 24 Bailey Lowell USA 3 1+0+1+1
## 5739 24 25 Doherty Sean USA 4 1+1+0+2
## 5740 25 4 Schempp Simon GER 6 1+1+0+4
## 5741 26 29 Gow Scott CAN 5 1+1+2+1
## 5742 27 11 Rastorgujevs Andrejs LAT 8 2+1+2+3
## 5743 28 23 Lapshin Timofei KOR 6 2+0+2+2
## 5744 29 18 L'Abee-Lund Henrik NOR 5 1+1+1+2
## 5745 30 22 Eliseev Matvey RUS 9 5+1+1+2
## 5746 1 1 Boe Johannes Thingnes NOR 0 0+0+0+0
## 5747 2 2 Fourcade Martin FRA 2 0+0+1+1
## 5748 3 6 Shipulin Anton RUS 1 0+0+0+1
## 5749 4 18 Loginov Alexander RUS 1 0+1+0+0
## 5750 5 4 Schempp Simon GER 2 0+0+2+0
## 5751 6 5 Desthieux Simon FRA 2 1+0+0+1
## 5752 7 40 Hofer Lukas ITA 1 0+0+0+1
## 5753 8 12 Doll Benedikt GER 2 1+0+0+1
## 5754 9 26 Eder Simon AUT 1 0+0+1+0
## 5755 10 25 Bjoentegaard Erlend NOR 2 0+0+1+1
## 5756 11 22 Peiffer Arnd GER 2 1+1+0+0
## 5757 12 3 Guigonnat Antonin FRA 3 0+1+2+0
## 5758 13 13 Fak Jakov SLO 3 1+0+1+1
## 5759 14 35 Bailey Lowell USA 0 0+0+0+0
## 5760 15 9 Windisch Dominik ITA 4 1+0+2+1
## 5761 16 11 Weger Benjamin SUI 3 0+1+1+1
## 5762 17 21 Birkeland Lars Helge NOR 1 1+0+0+0
## 5763 18 36 Claude Florent BEL 0 0+0+0+0
## 5764 19 24 Rastorgujevs Andrejs LAT 3 1+0+1+1
## 5765 20 48 Boe Tarjei NOR 1 1+0+0+0
## 5766 21 54 Finello Jeremy SUI 0 0+0+0+0
## 5767 22 34 Krcmar Michal CZE 2 0+1+1+0
## 5768 23 15 Babikov Anton RUS 4 0+0+2+2
## 5769 24 19 Garanichev Evgeniy RUS 3 0+1+1+1
## 5770 25 20 Eliseev Matvey RUS 3 1+0+1+1
## 5771 26 10 Burke Tim USA 3 1+0+1+1
## 5772 27 16 Gow Scott CAN 4 1+0+1+2
## 5773 28 27 Iliev Vladimir BUL 3 1+0+0+2
## 5774 29 30 Gow Christian CAN 1 1+0+0+0
## 5775 30 17 Doherty Sean USA 3 0+1+1+1
## 5776 31 8 Lapshin Timofei KOR 3 0+2+0+1
## 5777 32 44 Lesser Erik GER 3 0+1+1+1
## 5778 33 14 Ermits Kalev EST 2 0+1+1+0
## 5779 34 43 Anev Krasimir BUL 2 1+0+1+0
## 5780 35 51 Muiznieks Oskars LAT 1 0+0+1+0
## 5781 36 23 Samuelsson Sebastian SWE 4 1+0+2+1
## 5782 37 46 Beatrix Jean Guillaume FRA 2 0+0+2+0
## 5783 38 42 Bauer Klemen SLO 4 1+1+1+1
## 5784 39 7 Gjesbakk Fredrik NOR 4 1+0+2+1
## 5785 40 29 Otcenas Martin SVK 4 0+2+1+1
## 5786 41 37 Moravec Ondrej CZE 4 3+0+0+1
## 5787 42 33 Wiestner Serafin SUI 4 0+1+1+2
## 5788 43 47 Krupcik Tomas CZE 4 2+0+1+1
## 5789 44 59 Nawrath Philipp GER 4 2+1+0+1
## 5790 45 39 Gronman Tuomas FIN 4 1+0+3+0
## 5791 46 32 Bormolini Thomas ITA 5 0+0+2+3
## 5792 47 58 Lindstroem Fredrik SWE 4 2+0+1+1
## 5793 48 56 Nordgren Leif USA 3 0+0+0+3
## 5794 49 57 Hiidensalo Olli FIN 4 0+0+1+3
## 5795 50 38 Kuehn Johannes GER 7 2+0+3+2
## 5796 51 50 Kazar Matej SVK 4 0+2+1+1
## 5797 52 55 Dovzan Miha SLO 4 1+1+2+0
## 5798 53 53 Sinapov Anton BUL 6 1+0+2+3
## 5799 54 49 Strolia Vytautas LTU 6 2+1+2+1
## 5800 55 28 Eberhard Tobias AUT 6 1+2+1+2
## 5801 56 60 Tkalenko Ruslan UKR 5 3+0+0+2
## 5802 57 52 Komatz David AUT 6 2+3+1+0
## 5803 DNS 31 Seppala Tero FIN NA
## 5804 DNS 41 Slesingr Michal CZE NA
## 5805 DNS 45 Eberhard Julian AUT NA
## 5806 1 24 Boe Johannes Thingnes NOR 0 0+0
## 5807 2 31 Fourcade Martin FRA 0 0+0
## 5808 3 88 Guigonnat Antonin FRA 0 0+0
## 5809 4 11 Schempp Simon GER 0 0+0
## 5810 5 29 Desthieux Simon FRA 0 0+0
## 5811 6 84 Shipulin Anton RUS 1 1+0
## 5812 7 87 Gjesbakk Fredrik NOR 0 0+0
## 5813 8 18 Lapshin Timofei KOR 0 0+0
## 5814 9 10 Windisch Dominik ITA 0 0+0
## 5815 10 40 Burke Tim USA 0 0+0
## 5816 11 12 Weger Benjamin SUI 0 0+0
## 5817 12 92 Doll Benedikt GER 2 0+2
## 5818 13 34 Fak Jakov SLO 1 1+0
## 5819 14 51 Ermits Kalev EST 0 0+0
## 5820 15 45 Babikov Anton RUS 0 0+0
## 5821 16 99 Gow Scott CAN 0 0+0
## 5822 17 7 Doherty Sean USA 0 0+0
## 5823 18 39 Loginov Alexander RUS 2 2+0
## 5824 19 83 Garanichev Evgeniy RUS 1 0+1
## 5825 20 9 Eliseev Matvey RUS 1 0+1
## 5826 21 21 Birkeland Lars Helge NOR 1 0+1
## 5827 22 15 Peiffer Arnd GER 1 0+1
## 5828 23 28 Samuelsson Sebastian SWE 1 0+1
## 5829 24 42 Rastorgujevs Andrejs LAT 2 1+1
## 5830 25 46 Bjoentegaard Erlend NOR 2 1+1
## 5831 26 38 Eder Simon AUT 2 0+2
## 5832 27 59 Iliev Vladimir BUL 1 0+1
## 5833 28 55 Eberhard Tobias AUT 1 0+1
## 5834 29 69 Otcenas Martin SVK 1 1+0
## 5835 30 50 Gow Christian CAN 0 0+0
## 5836 31 27 Seppala Tero FIN 2 1+1
## 5837 32 72 Bormolini Thomas ITA 0 0+0
## 5838 33 90 Wiestner Serafin SUI 1 1+0
## 5839 34 25 Krcmar Michal CZE 1 1+0
## 5840 35 17 Bailey Lowell USA 1 1+0
## 5841 36 60 Claude Florent BEL 0 0+0
## 5842 37 33 Moravec Ondrej CZE 2 2+0
## 5843 38 49 Kuehn Johannes GER 2 1+1
## 5844 39 97 Gronman Tuomas FIN 0 0+0
## 5845 40 47 Hofer Lukas ITA 3 1+2
## 5846 41 4 Slesingr Michal CZE 0 0+0
## 5847 42 26 Bauer Klemen SLO 2 0+2
## 5848 43 66 Anev Krasimir BUL 1 1+0
## 5849 44 22 Lesser Erik GER 3 0+3
## 5850 45 65 Eberhard Julian AUT 4 2+2
## 5851 46 3 Beatrix Jean Guillaume FRA 2 0+2
## 5852 47 81 Krupcik Tomas CZE 1 0+1
## 5853 48 16 Boe Tarjei NOR 2 1+1
## 5854 49 23 Strolia Vytautas LTU 1 0+1
## 5855 50 54 Kazar Matej SVK 2 1+1
## 5856 50 76 Muiznieks Oskars LAT 1 1+0
## 5857 52 95 Komatz David AUT 1 1+0
## 5858 53 102 Sinapov Anton BUL 2 1+1
## 5859 54 77 Finello Jeremy SUI 2 0+2
## 5860 55 5 Dovzan Miha SLO 1 1+0
## 5861 56 75 Nordgren Leif USA 1 1+0
## 5862 57 56 Hiidensalo Olli FIN 2 1+1
## 5863 58 14 Lindstroem Fredrik SWE 2 0+2
## 5864 59 1 Nawrath Philipp GER 1 0+1
## 5865 60 32 Tkalenko Ruslan UKR 1 1+0
## 5866 61 19 Fillon Maillet Quentin FRA 4 2+2
## 5867 62 41 Dolder Mario SUI 3 2+1
## 5868 63 57 Nelin Jesper SWE 3 2+1
## 5869 64 100 Bartko Simon SVK 2 1+1
## 5870 65 71 Fourcade Simon FRA 2 1+1
## 5871 66 63 Szczurek Lukasz POL 1 0+1
## 5872 67 70 Kaukenas Tomas LTU 1 0+1
## 5873 68 82 Sima Michal SVK 2 1+1
## 5874 69 36 Tachizaki Mikito JPN 1 0+1
## 5875 70 96 Lusa Daumants LAT 1 0+1
## 5876 71 52 Abasheu Dzmitry BLR 3 1+2
## 5877 72 44 Drinovec Mitja SLO 2 1+1
## 5878 73 74 Yeremin Roman KAZ 4 2+2
## 5879 74 61 Grossegger Sven AUT 3 1+2
## 5880 75 13 Buta George ROU 2 0+2
## 5881 76 58 Kobonoki Tsukasa JPN 2 1+1
## 5882 77 89 Chenal Thierry ITA 1 0+1
## 5883 78 79 Zhyrnyi Oleksandr UKR 1 1+0
## 5884 79 62 Tyshchenko Artem UKR 1 1+0
## 5885 80 20 Zahkna Rene EST 3 1+2
## 5886 81 103 Faur Remus ROU 2 0+2
## 5887 82 98 Khamitgatin Timur KAZ 1 1+0
## 5888 83 48 Guzik Grzegorz POL 3 2+1
## 5889 84 53 Vaclavik Adam CZE 4 0+4
## 5890 85 106 Schommer Paul USA 3 2+1
## 5891 86 8 Green Brendan CAN 5 3+2
## 5892 87 105 Nedza-Kubiniec Andrzej POL 3 2+1
## 5893 88 73 Dixon Scott GBR 1 0+1
## 5894 89 86 Ivko Maksym UKR 1 1+0
## 5895 90 93 Smolski Anton BLR 4 2+2
## 5896 91 30 Smith Nathan CAN 2 0+2
## 5897 92 2 Leitner Felix AUT 5 0+5
## 5898 93 78 Vitenko Vladislav KAZ 4 2+2
## 5899 94 43 Crnkovic Kresimir CRO 4 2+2
## 5900 95 37 Yaliotnau Raman BLR 4 1+3
## 5901 96 94 Kuts Timur KAZ 3 2+1
## 5902 97 101 Kletcherov Michail BUL 3 3+0
## 5903 98 91 Dotsenko Andriy UKR 4 3+1
## 5904 99 104 Femling Peppe SWE 3 0+3
## 5905 100 64 Puchianu Cornel ROU 6 2+4
## 5906 100 80 Angelis Apostolos GRE 3 1+2
## 5907 102 68 Choi Dujin KOR 1 1+0
## 5908 103 67 Hodzic Edin SRB 2 1+1
## 5909 DNS 6 L'Abee-Lund Henrik NOR NA
## 5910 DNS 35 Tsvetkov Maxim RUS NA
## 5911 DNS 85 Dombrovski Karol LTU NA
## 5912 1 1 Fourcade Martin FRA 2 0+1+0+1
## 5913 2 6 Boe Tarjei NOR 2 1+0+0+1
## 5914 3 27 Bjoentegaard Erlend NOR 2 0+1+0+1
## 5915 4 13 Doll Benedikt GER 2 1+0+0+1
## 5916 5 28 Kuehn Johannes GER 2 1+0+1+0
## 5917 6 2 Boe Johannes Thingnes NOR 5 2+2+0+1
## 5918 7 14 Svendsen Emil Hegle NOR 3 0+0+2+1
## 5919 8 24 Windisch Dominik ITA 4 0+1+1+2
## 5920 9 4 Shipulin Anton RUS 3 0+1+1+1
## 5921 10 8 Desthieux Simon FRA 3 0+2+0+1
## 5922 11 23 L'Abee-Lund Henrik NOR 3 1+1+0+1
## 5923 12 3 Fak Jakov SLO 1 0+0+0+1
## 5924 13 9 Weger Benjamin SUI 3 1+0+1+1
## 5925 14 21 Moravec Ondrej CZE 1 1+0+0+0
## 5926 15 11 Eder Simon AUT 3 3+0+0+0
## 5927 16 22 Krcmar Michal CZE 3 1+0+1+1
## 5928 17 17 Lesser Erik GER 4 2+0+0+2
## 5929 18 20 Loginov Alexander RUS 3 1+1+0+1
## 5930 19 5 Peiffer Arnd GER 4 0+0+3+1
## 5931 20 29 Fourcade Simon FRA 3 0+1+1+1
## 5932 21 12 Fillon Maillet Quentin FRA 5 3+1+0+1
## 5933 22 25 Burke Tim USA 4 0+2+1+1
## 5934 23 19 Guigonnat Antonin FRA 6 1+2+1+2
## 5935 24 18 Babikov Anton RUS 4 1+1+1+1
## 5936 25 7 Hofer Lukas ITA 5 2+1+1+1
## 5937 26 10 Birkeland Lars Helge NOR 5 0+3+1+1
## 5938 27 16 Rastorgujevs Andrejs LAT 9 1+1+3+4
## 5939 28 26 Jacquelin Emilien FRA 7 3+0+1+3
## 5940 29 15 Eberhard Julian AUT 8 2+1+1+4
## 5941 30 30 Chepelin Vladimir BLR 7 2+1+2+2
## 5942 1 1 Boe Johannes Thingnes NOR 0 0+0+0+0
## 5943 2 2 Fourcade Martin FRA 1 1+0+0+0
## 5944 3 4 Shipulin Anton RUS 1 1+0+0+0
## 5945 4 3 Peiffer Arnd GER 1 0+1+0+0
## 5946 5 32 Svendsen Emil Hegle NOR 0 0+0+0+0
## 5947 6 5 Jacquelin Emilien FRA 2 0+1+0+1
## 5948 7 18 Eder Simon AUT 1 0+0+0+1
## 5949 8 11 Desthieux Simon FRA 2 1+0+0+1
## 5950 9 6 Birkeland Lars Helge NOR 3 1+1+0+1
## 5951 10 7 Eberhard Julian AUT 3 0+0+3+0
## 5952 11 36 Bjoentegaard Erlend NOR 2 0+0+1+1
## 5953 12 16 Weger Benjamin SUI 3 0+0+1+2
## 5954 13 26 Fillon Maillet Quentin FRA 2 0+0+0+2
## 5955 14 8 Babikov Anton RUS 2 1+1+0+0
## 5956 15 35 Anev Krasimir BUL 2 0+0+2+0
## 5957 16 13 Doll Benedikt GER 4 0+1+2+1
## 5958 17 17 Windisch Dominik ITA 5 1+1+2+1
## 5959 18 14 Rastorgujevs Andrejs LAT 5 1+2+1+1
## 5960 19 28 Guigonnat Antonin FRA 3 0+2+0+1
## 5961 20 31 Tsvetkov Maxim RUS 3 0+0+2+1
## 5962 21 43 Burke Tim USA 1 0+0+0+1
## 5963 22 49 Landertinger Dominik AUT 2 0+0+1+1
## 5964 23 38 L'Abee-Lund Henrik NOR 2 1+0+1+0
## 5965 24 55 Slesingr Michal CZE 1 0+0+0+1
## 5966 25 24 Fourcade Simon FRA 1 0+0+0+1
## 5967 26 40 Roesch Michael BEL 2 1+0+0+1
## 5968 27 37 Bauer Klemen SLO 3 0+0+2+1
## 5969 28 19 Kuehn Johannes GER 4 1+0+2+1
## 5970 29 22 Boe Tarjei NOR 4 0+0+1+3
## 5971 30 39 Lessing Roland EST 1 0+0+1+0
## 5972 31 30 Guzik Grzegorz POL 1 0+0+1+0
## 5973 32 42 Loginov Alexander RUS 4 0+2+0+2
## 5974 33 48 Eliseev Matvey RUS 3 1+0+1+1
## 5975 34 58 Vaclavik Adam CZE 1 0+1+0+0
## 5976 35 41 Bailey Lowell USA 1 0+0+0+1
## 5977 36 27 Hofer Lukas ITA 6 3+1+2+0
## 5978 37 15 Lesser Erik GER 5 0+1+2+2
## 5979 38 44 Pidruchnyi Dmytro UKR 4 0+0+3+1
## 5980 39 53 Garanichev Evgeniy RUS 3 0+2+0+1
## 5981 40 29 Rees Roman GER 4 2+1+0+1
## 5982 41 12 Siemakov Volodymyr UKR 3 0+1+1+1
## 5983 42 57 Grossegger Sven AUT 1 0+0+0+1
## 5984 43 10 Moravec Ondrej CZE 4 2+2+0+0
## 5985 44 50 Nordgren Leif USA 3 0+1+2+0
## 5986 45 9 Chepelin Vladimir BLR 6 2+1+2+1
## 5987 46 46 Seppala Tero FIN 6 1+0+4+1
## 5988 47 47 Montello Giuseppe ITA 4 1+0+2+1
## 5989 48 21 Otcenas Martin SVK 5 2+0+2+1
## 5990 49 45 Hasilla Tomas SVK 4 1+0+0+3
## 5991 50 34 Yaliotnau Raman BLR 7 1+0+3+3
## 5992 51 56 Puchianu Cornel ROU 4 0+0+3+1
## 5993 52 52 Vitenko Vladislav KAZ 6 2+1+1+2
## 5994 LAP 25 Gronman Tuomas FIN NA 3+0+2+1
## 5995 LAP 51 Nedza-Kubiniec Andrzej POL NA 2+1+2+1
## 5996 LAP 54 Eberhard Tobias AUT NA 2+2+3
## 5997 LAP 59 Faur Remus ROU NA 0+2+1+0
## 5998 DNF 23 Lapshin Timofei KOR NA 2+1
## 5999 DNS 20 Schempp Simon GER NA
## 6000 DNS 33 Fak Jakov SLO NA
## 6001 DNS 60 Strolia Vytautas LTU NA
## 6002 1 42 Boe Johannes Thingnes NOR 1 1+0
## 6003 2 48 Fourcade Martin FRA 0 0+0
## 6004 3 47 Peiffer Arnd GER 0 0+0
## 6005 4 46 Shipulin Anton RUS 1 0+1
## 6006 5 94 Jacquelin Emilien FRA 0 0+0
## 6007 6 37 Birkeland Lars Helge NOR 0 0+0
## 6008 7 38 Eberhard Julian AUT 2 0+2
## 6009 8 51 Babikov Anton RUS 0 0+0
## 6010 9 77 Chepelin Vladimir BLR 1 0+1
## 6011 10 31 Moravec Ondrej CZE 0 0+0
## 6012 11 23 Desthieux Simon FRA 3 1+2
## 6013 12 78 Siemakov Volodymyr UKR 0 0+0
## 6014 13 62 Doll Benedikt GER 4 3+1
## 6015 14 2 Rastorgujevs Andrejs LAT 2 0+2
## 6016 15 41 Lesser Erik GER 3 2+1
## 6017 16 39 Weger Benjamin SUI 2 1+1
## 6018 17 27 Windisch Dominik ITA 4 4+0
## 6019 18 32 Eder Simon AUT 2 0+2
## 6020 19 71 Kuehn Johannes GER 3 1+2
## 6021 20 44 Schempp Simon GER 3 2+1
## 6022 21 34 Otcenas Martin SVK 1 1+0
## 6023 22 43 Boe Tarjei NOR 3 1+2
## 6024 23 22 Lapshin Timofei KOR 2 1+1
## 6025 24 73 Fourcade Simon FRA 1 0+1
## 6026 25 63 Gronman Tuomas FIN 1 1+0
## 6027 26 20 Fillon Maillet Quentin FRA 4 2+2
## 6028 27 29 Hofer Lukas ITA 3 2+1
## 6029 28 7 Guigonnat Antonin FRA 3 2+1
## 6030 29 8 Rees Roman GER 2 0+2
## 6031 30 88 Guzik Grzegorz POL 2 2+0
## 6032 31 50 Tsvetkov Maxim RUS 2 0+2
## 6033 32 10 Svendsen Emil Hegle NOR 3 1+2
## 6034 33 21 Fak Jakov SLO 2 1+1
## 6035 34 15 Yaliotnau Raman BLR 2 1+1
## 6036 35 64 Anev Krasimir BUL 2 1+1
## 6037 36 93 Bjoentegaard Erlend NOR 3 0+3
## 6038 37 26 Bauer Klemen SLO 3 2+1
## 6039 38 85 L'Abee-Lund Henrik NOR 2 1+1
## 6040 39 49 Lessing Roland EST 2 1+1
## 6041 40 33 Roesch Michael BEL 2 0+2
## 6042 41 30 Bailey Lowell USA 1 0+1
## 6043 42 19 Loginov Alexander RUS 3 1+2
## 6044 43 40 Burke Tim USA 3 1+2
## 6045 44 36 Pidruchnyi Dmytro UKR 3 1+2
## 6046 45 76 Hasilla Tomas SVK 2 1+1
## 6047 46 1 Seppala Tero FIN 2 1+1
## 6048 47 89 Montello Giuseppe ITA 1 0+1
## 6049 48 98 Eliseev Matvey RUS 3 3+0
## 6050 49 4 Landertinger Dominik AUT 2 0+2
## 6051 50 65 Nordgren Leif USA 2 1+1
## 6052 51 54 Nedza-Kubiniec Andrzej POL 2 0+2
## 6053 52 99 Vitenko Vladislav KAZ 2 1+1
## 6054 53 9 Garanichev Evgeniy RUS 3 1+2
## 6055 54 17 Eberhard Tobias AUT 2 0+2
## 6056 55 13 Slesingr Michal CZE 2 0+2
## 6057 56 95 Puchianu Cornel ROU 2 1+1
## 6058 57 91 Grossegger Sven AUT 2 1+1
## 6059 58 57 Vaclavik Adam CZE 4 0+4
## 6060 58 66 Faur Remus ROU 1 0+1
## 6061 60 59 Strolia Vytautas LTU 4 1+3
## 6062 61 45 Dolder Mario SUI 4 1+3
## 6063 62 35 Krcmar Michal CZE 4 2+2
## 6064 63 96 Currier Russell USA 2 1+1
## 6065 64 25 Hiidensalo Olli FIN 3 1+2
## 6066 65 82 Chenal Thierry ITA 0 0+0
## 6067 66 55 Davies Macx CAN 3 1+2
## 6068 67 16 Kazar Matej SVK 2 2+0
## 6069 68 101 Abasheu Dzmitry BLR 3 2+1
## 6070 69 86 Podkorytov Vassiliy KAZ 2 1+1
## 6071 70 110 Jaeger Martin SUI 3 1+2
## 6072 71 56 Kobonoki Tsukasa JPN 2 1+1
## 6073 72 108 Kubaliak Michal SVK 1 0+1
## 6074 73 69 Muiznieks Oskars LAT 3 2+1
## 6075 74 75 Stenersen Torstein SWE 2 1+1
## 6076 75 5 Doherty Sean USA 4 3+1
## 6077 76 18 Ermits Kalev EST 2 2+0
## 6078 77 84 Yeremin Roman KAZ 5 3+2
## 6079 78 11 Bormolini Thomas ITA 3 1+2
## 6080 79 67 Dombrovski Karol LTU 2 0+2
## 6081 80 109 Gerdzhikov Dimitar BUL 3 3+0
## 6082 81 100 Kristejn Lukas CZE 2 2+0
## 6083 82 83 Campbell Carsen CAN 2 2+0
## 6084 83 14 Pryma Artem UKR 4 0+4
## 6085 84 58 Drinovec Mitja SLO 4 1+3
## 6086 85 53 Tyshchenko Artem UKR 2 1+1
## 6087 86 80 Komatz David AUT 3 2+1
## 6088 86 87 Koiv Kauri EST 3 1+2
## 6089 88 107 Tkalenko Ruslan UKR 4 0+4
## 6090 89 104 Hudec Matthew CAN 1 0+1
## 6091 90 70 Szczurek Lukasz POL 4 3+1
## 6092 91 68 Hallstroem Simon SWE 4 2+2
## 6093 92 24 Iliev Vladimir BUL 6 3+3
## 6094 93 106 Soederhielm Tiio SWE 4 2+2
## 6095 94 3 Dovzan Miha SLO 2 1+1
## 6096 95 28 Varabei Maksim BLR 5 3+2
## 6097 96 61 Dixon Scott GBR 1 0+1
## 6098 97 6 Sinapov Anton BUL 5 2+3
## 6099 98 97 Ozaki Kosuke JPN 3 0+3
## 6100 99 103 Arwidson Tobias SWE 3 0+3
## 6101 100 92 Braun Maxim KAZ 4 1+3
## 6102 101 102 Bricis Ilmars LAT 4 0+4
## 6103 102 12 Wiestner Serafin SUI 6 2+4
## 6104 103 90 Banys Linas LTU 4 3+1
## 6105 104 60 Kim Yonggyu KOR 3 2+1
## 6106 105 81 Angelis Apostolos GRE 4 3+1
## 6107 106 52 Pop Gheorghe ROU 5 2+3
## 6108 107 105 Millar Aidan CAN 5 3+2
## 6109 108 74 Crnkovic Kresimir CRO 6 3+3
## 6110 109 72 Hodzic Edin SRB 5 3+2
## 6111 DNS 79 Finello Jeremy SUI NA
## 6112 1 1 Boe Johannes Thingnes NOR 3 2+0+1+0
## 6113 2 3 Fak Jakov SLO 1 0+0+1+0
## 6114 3 2 Fourcade Martin FRA 5 1+0+1+3
## 6115 4 4 Schempp Simon GER 4 3+1+0+0
## 6116 5 14 Boe Tarjei NOR 2 1+0+1+0
## 6117 6 20 Tsvetkov Maxim RUS 1 1+0+0+0
## 6118 7 15 Hofer Lukas ITA 3 1+0+1+1
## 6119 8 5 L'Abee-Lund Henrik NOR 4 0+0+3+1
## 6120 9 9 Shipulin Anton RUS 2 1+0+1+0
## 6121 10 13 Birkeland Lars Helge NOR 3 2+0+0+1
## 6122 11 11 Eberhard Julian AUT 4 3+0+0+1
## 6123 12 38 Fillon Maillet Quentin FRA 3 1+0+0+2
## 6124 13 6 Peiffer Arnd GER 4 0+0+4+0
## 6125 14 21 Desthieux Simon FRA 4 1+1+1+1
## 6126 15 8 Lesser Erik GER 6 1+1+3+1
## 6127 16 44 Lindstroem Fredrik SWE 1 1+0+0+0
## 6128 17 23 Doherty Sean USA 2 1+0+1+0
## 6129 18 12 Pidruchnyi Dmytro UKR 4 1+1+1+1
## 6130 19 17 Eliseev Matvey RUS 3 1+1+0+1
## 6131 20 30 Babikov Anton RUS 2 1+0+0+1
## 6132 21 32 Nelin Jesper SWE 4 1+2+1+0
## 6133 22 7 Weger Benjamin SUI 6 0+2+3+1
## 6134 23 18 Rastorgujevs Andrejs LAT 6 2+0+2+2
## 6135 24 39 Beatrix Jean Guillaume FRA 1 0+0+1+0
## 6136 25 26 Krcmar Michal CZE 3 0+0+2+1
## 6137 26 57 Garanichev Evgeniy RUS 3 0+0+2+1
## 6138 27 47 Doll Benedikt GER 4 1+1+2+0
## 6139 28 35 Eder Simon AUT 4 1+1+2+0
## 6140 29 10 Nawrath Philipp GER 4 2+1+1+0
## 6141 30 41 Bormolini Thomas ITA 4 1+0+0+3
## 6142 31 19 Smith Nathan CAN 3 1+1+0+1
## 6143 32 27 Roesch Michael BEL 4 1+0+3+0
## 6144 33 52 Green Brendan CAN 3 1+0+1+1
## 6145 34 42 Bjoentegaard Erlend NOR 4 0+1+3+0
## 6146 35 37 Tkalenko Ruslan UKR 3 0+1+0+2
## 6147 36 53 Bailey Lowell USA 3 0+2+1+0
## 6148 37 22 Bauer Klemen SLO 5 1+1+3+0
## 6149 38 50 Strolia Vytautas LTU 2 0+0+1+1
## 6150 39 49 Finello Jeremy SUI 3 1+1+1+0
## 6151 40 46 Slesingr Michal CZE 3 0+2+0+1
## 6152 41 24 Kuehn Johannes GER 7 2+1+2+2
## 6153 42 25 Seppala Tero FIN 7 1+1+3+2
## 6154 43 34 Moravec Ondrej CZE 5 0+1+3+1
## 6155 44 29 Loginov Alexander RUS 6 0+2+1+3
## 6156 45 40 Dovzan Miha SLO 2 1+0+0+1
## 6157 46 28 Bjoerndalen Ole Einar NOR 5 2+1+2+0
## 6158 47 59 Vaclavik Adam CZE 7 2+1+3+1
## 6159 48 43 Gow Scott CAN 7 1+1+3+2
## 6160 49 54 Gow Christian CAN 5 2+0+1+2
## 6161 50 31 Lessing Roland EST 6 2+1+2+1
## 6162 51 60 Kazar Matej SVK 5 0+0+4+1
## 6163 52 51 Muiznieks Oskars LAT 6 1+1+2+2
## 6164 53 55 Semenov Sergii UKR 3 0+0+2+1
## 6165 54 45 Chenal Thierry ITA 7 3+1+1+2
## 6166 55 33 Tachizaki Mikito JPN 6 1+0+2+3
## 6167 56 56 Mesotitsch Daniel AUT 5 0+3+1+1
## 6168 57 48 Faur Remus ROU 4 1+2+0+1
## 6169 DNS 16 Lapshin Timofei KOR NA
## 6170 DNS 36 Siemakov Volodymyr UKR NA
## 6171 DNS 58 Jacquelin Emilien FRA NA
## 6172 1 36 Boe Johannes Thingnes NOR 0 0+0
## 6173 2 38 Fourcade Martin FRA 0 0+0
## 6174 3 33 Fak Jakov SLO 0 0+0
## 6175 4 35 Schempp Simon GER 1 0+1
## 6176 5 10 L'Abee-Lund Henrik NOR 0 0+0
## 6177 6 41 Peiffer Arnd GER 0 0+0
## 6178 7 61 Weger Benjamin SUI 1 1+0
## 6179 8 32 Lesser Erik GER 1 1+0
## 6180 9 37 Shipulin Anton RUS 1 1+0
## 6181 9 105 Nawrath Philipp GER 0 0+0
## 6182 11 66 Eberhard Julian AUT 1 1+0
## 6183 12 39 Pidruchnyi Dmytro UKR 1 0+1
## 6184 13 22 Birkeland Lars Helge NOR 1 0+1
## 6185 14 40 Boe Tarjei NOR 1 0+1
## 6186 15 84 Hofer Lukas ITA 2 1+1
## 6187 16 89 Lapshin Timofei KOR 1 0+1
## 6188 17 7 Eliseev Matvey RUS 1 0+1
## 6189 18 63 Rastorgujevs Andrejs LAT 2 1+1
## 6190 19 12 Smith Nathan CAN 0 0+0
## 6191 20 93 Tsvetkov Maxim RUS 1 0+1
## 6192 21 86 Desthieux Simon FRA 2 2+0
## 6193 22 25 Bauer Klemen SLO 1 1+0
## 6194 22 79 Doherty Sean USA 0 0+0
## 6195 24 68 Kuehn Johannes GER 3 2+1
## 6196 24 72 Seppala Tero FIN 1 0+1
## 6197 26 81 Krcmar Michal CZE 0 0+0
## 6198 27 56 Roesch Michael BEL 1 0+1
## 6199 28 91 Bjoerndalen Ole Einar NOR 1 0+1
## 6200 29 53 Loginov Alexander RUS 2 1+1
## 6201 30 57 Babikov Anton RUS 0 0+0
## 6202 31 109 Lessing Roland EST 0 0+0
## 6203 32 59 Nelin Jesper SWE 2 0+2
## 6204 33 64 Tachizaki Mikito JPN 1 0+1
## 6205 34 31 Moravec Ondrej CZE 2 1+1
## 6206 35 34 Eder Simon AUT 2 1+1
## 6207 36 78 Siemakov Volodymyr UKR 1 1+0
## 6208 37 2 Tkalenko Ruslan UKR 0 0+0
## 6209 38 28 Fillon Maillet Quentin FRA 3 1+2
## 6210 39 19 Beatrix Jean Guillaume FRA 2 0+2
## 6211 40 3 Dovzan Miha SLO 1 0+1
## 6212 41 58 Bormolini Thomas ITA 3 1+2
## 6213 41 108 Bjoentegaard Erlend NOR 2 1+1
## 6214 43 87 Gow Scott CAN 3 2+1
## 6215 44 27 Lindstroem Fredrik SWE 3 0+3
## 6216 45 96 Chenal Thierry ITA 1 0+1
## 6217 46 21 Slesingr Michal CZE 3 1+2
## 6218 47 13 Doll Benedikt GER 5 4+1
## 6219 48 9 Faur Remus ROU 1 0+1
## 6220 49 80 Finello Jeremy SUI 1 0+1
## 6221 50 88 Strolia Vytautas LTU 2 0+2
## 6222 51 52 Muiznieks Oskars LAT 2 0+2
## 6223 51 107 Green Brendan CAN 1 0+1
## 6224 53 49 Bailey Lowell USA 2 2+0
## 6225 54 60 Gow Christian CAN 0 0+0
## 6226 55 29 Semenov Sergii UKR 3 1+2
## 6227 56 94 Mesotitsch Daniel AUT 1 0+1
## 6228 57 100 Garanichev Evgeniy RUS 3 2+1
## 6229 58 99 Jacquelin Emilien FRA 2 1+1
## 6230 59 98 Vaclavik Adam CZE 2 0+2
## 6231 60 75 Kazar Matej SVK 3 2+1
## 6232 61 102 Kryuko Viktar BLR 1 0+1
## 6233 62 26 Otcenas Martin SVK 3 1+2
## 6234 63 15 Leitner Felix AUT 3 2+1
## 6235 64 45 Kaukenas Tomas LTU 2 2+0
## 6236 64 48 Podkorytov Vassiliy KAZ 1 0+1
## 6237 66 1 Yaliotnau Raman BLR 4 2+2
## 6238 67 4 Kletcherov Michail BUL 0 0+0
## 6239 68 54 Iliev Vladimir BUL 3 3+0
## 6240 69 103 Zhyrnyi Oleksandr UKR 2 1+1
## 6241 70 20 Krupcik Tomas CZE 1 0+1
## 6242 70 67 Drinovec Mitja SLO 2 2+0
## 6243 72 50 Fourcade Simon FRA 4 3+1
## 6244 73 5 Dombrovski Karol LTU 1 0+1
## 6245 73 30 Burke Tim USA 3 1+2
## 6246 75 90 Puchianu Cornel ROU 3 1+2
## 6247 76 44 Guzik Grzegorz POL 3 1+2
## 6248 77 74 Samuelsson Sebastian SWE 3 1+2
## 6249 78 43 Varabei Maksim BLR 2 1+1
## 6250 79 62 Eberhard Tobias AUT 4 3+1
## 6251 80 77 Windisch Dominik ITA 7 3+4
## 6252 81 24 Hiidensalo Olli FIN 2 0+2
## 6253 82 104 Hasilla Tomas SVK 3 3+0
## 6254 83 47 Dolder Mario SUI 5 4+1
## 6255 84 11 Wiestner Serafin SUI 3 2+1
## 6256 85 83 Waeger Lorenz AUT 2 2+0
## 6257 86 70 Sinapov Anton BUL 3 0+3
## 6258 87 6 Nedza-Kubiniec Andrzej POL 1 0+1
## 6259 88 8 Sima Michal SVK 2 2+0
## 6260 89 42 Zahkna Rene EST 2 0+2
## 6261 90 51 Buta George ROU 2 1+1
## 6262 91 76 Yeremin Roman KAZ 6 3+3
## 6263 92 85 Darozhka Aliaksandr BLR 4 0+4
## 6264 93 73 Szczurek Lukasz POL 3 0+3
## 6265 94 69 Crnkovic Kresimir CRO 4 2+2
## 6266 95 82 Ermits Kalev EST 3 2+1
## 6267 96 71 Lusa Daumants LAT 1 0+1
## 6268 97 92 Kobonoki Tsukasa JPN 4 0+4
## 6269 98 16 Nordgren Leif USA 3 0+3
## 6270 99 14 Loukkaanhuhta Mikko FIN 3 2+1
## 6271 100 101 Jaeger Martin SUI 3 0+3
## 6272 101 18 Pantov Anton KAZ 1 1+0
## 6273 102 17 Stenersen Torstein SWE 2 0+2
## 6274 103 97 Schommer Paul USA 3 1+2
## 6275 104 95 Braun Maxim KAZ 2 2+0
## 6276 105 23 Dixon Scott GBR 2 1+1
## 6277 106 46 Kim Yonggyu KOR 6 4+2
## 6278 107 65 Hodzic Edin SRB 3 1+2
## 6279 108 55 Angelis Apostolos GRE 6 3+3
## 6280 DNS 106 Gerdzhikov Dimitar BUL NA
## 6281 1 16 Eberhard Julian AUT 2 0+0+1+1
## 6282 2 1 Fourcade Martin FRA 2 2+0+0+0
## 6283 3 3 Shipulin Anton RUS 1 0+1+0+0
## 6284 4 13 Doll Benedikt GER 2 0+0+1+1
## 6285 5 15 Lesser Erik GER 1 0+1+0+0
## 6286 6 5 Peiffer Arnd GER 2 0+0+0+2
## 6287 7 19 Windisch Dominik ITA 2 1+0+1+0
## 6288 8 22 Krcmar Michal CZE 2 2+0+0+0
## 6289 9 20 Moravec Ondrej CZE 1 0+0+1+0
## 6290 10 12 Fillon Maillet Quentin FRA 2 0+1+1+0
## 6291 11 21 Guigonnat Antonin FRA 2 0+1+0+1
## 6292 12 4 Fak Jakov SLO 2 0+0+1+1
## 6293 13 8 Hofer Lukas ITA 2 1+1+0+0
## 6294 14 29 Bailey Lowell USA 2 0+0+1+1
## 6295 15 23 Lindstroem Fredrik SWE 1 0+0+1+0
## 6296 16 9 Schempp Simon GER 4 0+1+2+1
## 6297 17 27 Anev Krasimir BUL 0 0+0+0+0
## 6298 18 18 L'Abee-Lund Henrik NOR 4 2+1+0+1
## 6299 19 2 Boe Johannes Thingnes NOR 5 0+1+2+2
## 6300 20 6 Boe Tarjei NOR 2 1+0+0+1
## 6301 21 7 Desthieux Simon FRA 4 0+2+2+0
## 6302 22 14 Rastorgujevs Andrejs LAT 5 2+0+1+2
## 6303 23 17 Babikov Anton RUS 4 0+2+1+1
## 6304 24 28 Lapshin Timofei KOR 5 2+0+3+0
## 6305 25 10 Birkeland Lars Helge NOR 3 2+0+0+1
## 6306 26 11 Weger Benjamin SUI 3 2+1+0+0
## 6307 27 25 Bjoentegaard Erlend NOR 5 2+1+1+1
## 6308 28 26 Bjoerndalen Ole Einar NOR 6 0+1+3+2
## 6309 29 24 Kuehn Johannes GER 10 2+0+4+4
## 6310 30 30 Nordgren Leif USA 6 1+2+2+1
## 6311 1 19 Shipulin Anton RUS 0 0+0
## 6312 2 12 Rastorgujevs Andrejs LAT 0 0+0
## 6313 3 6 Fillon Maillet Quentin FRA 0 0+0
## 6314 4 30 Boe Johannes Thingnes NOR 2 0+2
## 6315 5 21 Peiffer Arnd GER 1 0+1
## 6316 6 34 Desthieux Simon FRA 1 1+0
## 6317 7 47 Lesser Erik GER 1 0+1
## 6318 8 23 Schempp Simon GER 2 1+1
## 6319 9 11 Hofer Lukas ITA 1 0+1
## 6320 10 20 Windisch Dominik ITA 1 0+1
## 6321 11 72 L'Abee-Lund Henrik NOR 1 0+1
## 6322 12 91 Bjoerndalen Ole Einar NOR 0 0+0
## 6323 13 51 Anev Krasimir BUL 0 0+0
## 6324 14 32 Birkeland Lars Helge NOR 0 0+0
## 6325 15 24 Lapshin Timofei KOR 1 0+1
## 6326 16 22 Bailey Lowell USA 1 0+1
## 6327 17 55 Nordgren Leif USA 1 0+1
## 6328 18 8 Fak Jakov SLO 1 1+0
## 6329 19 5 Bauer Klemen SLO 2 0+2
## 6330 20 29 Moravec Ondrej CZE 1 0+1
## 6331 21 46 Samuelsson Sebastian SWE 2 1+1
## 6332 22 56 Nelin Jesper SWE 1 1+0
## 6333 23 4 Doll Benedikt GER 2 0+2
## 6334 24 42 Bjoentegaard Erlend NOR 1 1+0
## 6335 25 17 Iliev Vladimir BUL 2 1+1
## 6336 26 98 Malyshko Dmitry RUS 1 1+0
## 6337 27 100 Rees Roman GER 0 0+0
## 6338 28 15 Eberhard Julian AUT 5 3+2
## 6339 29 40 Bormolini Thomas ITA 1 0+1
## 6340 30 2 Tsvetkov Maxim RUS 1 0+1
## 6341 31 13 Bocharnikov Sergey BLR 1 1+0
## 6342 32 81 Mesotitsch Daniel AUT 0 0+0
## 6343 33 10 Boe Tarjei NOR 3 2+1
## 6344 34 70 Green Brendan CAN 0 0+0
## 6345 35 54 Doherty Sean USA 3 1+2
## 6346 36 37 Dolder Mario SUI 2 0+2
## 6347 37 87 Ponsiluoma Martin SWE 0 0+0
## 6348 38 9 Burke Tim USA 3 1+2
## 6349 39 52 Otcenas Martin SVK 1 0+1
## 6350 40 62 Puchianu Cornel ROU 1 0+1
## 6351 41 44 Guigonnat Antonin FRA 3 2+1
## 6352 42 45 Dovzan Miha SLO 1 0+1
## 6353 43 69 Fourcade Simon FRA 0 0+0
## 6354 44 58 Vaclavik Adam CZE 3 1+2
## 6355 45 35 Claude Florent BEL 2 1+1
## 6356 46 18 Garanichev Evgeniy RUS 3 1+2
## 6357 47 80 Vitenko Vladislav KAZ 2 1+1
## 6358 48 60 Zahkna Rene EST 1 1+0
## 6359 49 93 Gerdzhikov Dimitar BUL 2 1+1
## 6360 50 49 Eberhard Tobias AUT 2 1+1
## 6361 51 48 Babikov Anton RUS 1 0+1
## 6362 52 53 Siemakov Volodymyr UKR 1 0+1
## 6363 53 16 Kazar Matej SVK 2 2+0
## 6364 54 79 Yeremin Roman KAZ 4 3+1
## 6365 55 61 Buta George ROU 0 0+0
## 6366 56 36 Pryma Artem UKR 2 1+1
## 6367 57 38 Seppala Tero FIN 3 1+2
## 6368 58 33 Hiidensalo Olli FIN 1 0+1
## 6369 59 99 Dombrovski Karol LTU 0 0+0
## 6370 60 71 Strolia Vytautas LTU 2 1+1
## 6371 61 3 Pidruchnyi Dmytro UKR 4 1+3
## 6372 62 14 Lindstroem Fredrik SWE 3 1+2
## 6373 63 66 Bartko Simon SVK 2 0+2
## 6374 64 74 Yaliotnau Raman BLR 3 1+2
## 6375 65 92 Smolski Anton BLR 2 2+0
## 6376 66 85 Soukup Jaroslav CZE 1 1+0
## 6377 67 26 Ermits Kalev EST 4 2+2
## 6378 68 97 Howe Alex USA 2 1+1
## 6379 69 78 Kuehn Johannes GER 4 3+1
## 6380 70 75 Kobonoki Tsukasa JPN 2 0+2
## 6381 71 88 Koiv Kauri EST 2 1+1
## 6382 72 77 Gronman Tuomas FIN 1 0+1
## 6383 73 67 Tkalenko Ruslan UKR 3 1+2
## 6384 74 64 Drinovec Mitja SLO 3 1+2
## 6385 75 39 Finello Jeremy SUI 3 0+3
## 6386 76 7 Weger Benjamin SUI 4 1+3
## 6387 77 86 Plessnitzer Kevin AUT 3 1+2
## 6388 78 96 Tyshchenko Artem UKR 2 1+1
## 6389 79 41 Gow Christian CAN 2 1+1
## 6390 80 103 Jacquelin Emilien FRA 4 2+2
## 6391 81 63 Nedza-Kubiniec Andrzej POL 3 2+1
## 6392 82 59 Angelis Apostolos GRE 2 1+1
## 6393 83 90 Hasilla Tomas SVK 3 2+1
## 6394 84 65 Patrijuks Aleksandrs LAT 2 1+1
## 6395 85 76 Burkhalter Joscha SUI 3 2+1
## 6396 86 25 Gow Scott CAN 3 1+2
## 6397 87 83 Eliseev Matvey RUS 3 0+3
## 6398 88 1 Krcmar Michal CZE 4 0+4
## 6399 89 27 Guzik Grzegorz POL 4 3+1
## 6400 90 95 Podkorytov Vassiliy KAZ 0 0+0
## 6401 91 89 Faur Remus ROU 2 2+0
## 6402 92 82 Sinapov Anton BUL 4 1+3
## 6403 93 50 Chepelin Vladimir BLR 6 2+4
## 6404 94 94 Ozaki Kosuke JPN 4 2+2
## 6405 95 84 Braun Maxim KAZ 0 0+0
## 6406 96 68 Kaukenas Tomas LTU 3 0+3
## 6407 97 104 Szwajnos Marcin POL 4 1+3
## 6408 98 57 Dixon Scott GBR 1 1+0
## 6409 99 101 Slotins Roberts LAT 5 2+3
## 6410 100 73 Kim Yonggyu KOR 3 2+1
## 6411 DNS 28 Fourcade Martin FRA NA
## 6412 DNS 31 Eder Simon AUT NA
## 6413 DNS 43 Slesingr Michal CZE NA
## 6414 DNS 102 Davies Macx CAN NA
## 6415 1 1 Fourcade Martin FRA 1 1+0+0+0
## 6416 2 3 Boe Johannes Thingnes NOR 3 1+1+1+0
## 6417 3 5 Boe Tarjei NOR 0 0+0+0+0
## 6418 4 2 Svendsen Emil Hegle NOR 1 0+0+0+1
## 6419 5 10 Pidruchnyi Dmytro UKR 1 0+1+0+0
## 6420 6 6 Hofer Lukas ITA 2 1+0+0+1
## 6421 7 8 Weger Benjamin SUI 2 0+2+0+0
## 6422 8 9 Krcmar Michal CZE 1 0+1+0+0
## 6423 9 17 Doll Benedikt GER 1 0+0+0+1
## 6424 10 12 Peiffer Arnd GER 2 0+0+0+2
## 6425 11 7 Fak Jakov SLO 1 0+1+0+0
## 6426 12 28 Shipulin Anton RUS 1 0+0+0+1
## 6427 13 11 Moravec Ondrej CZE 3 1+1+1+0
## 6428 14 4 Burke Tim USA 3 0+2+0+1
## 6429 15 24 Lindstroem Fredrik SWE 0 0+0+0+0
## 6430 16 13 Desthieux Simon FRA 3 0+0+1+2
## 6431 17 19 Bocharnikov Sergey BLR 1 0+0+1+0
## 6432 18 23 Loginov Alexander RUS 3 0+1+1+1
## 6433 19 30 Rees Roman GER 1 0+0+1+0
## 6434 20 15 Birkeland Lars Helge NOR 2 1+0+1+0
## 6435 21 36 Gow Christian CAN 1 0+0+0+1
## 6436 22 14 Lapshin Timofei KOR 1 0+0+1+0
## 6437 23 37 Samuelsson Sebastian SWE 2 0+1+0+1
## 6438 24 38 L'Abee-Lund Henrik NOR 3 0+1+1+1
## 6439 25 16 Pryma Artem UKR 4 3+1+0+0
## 6440 26 21 Eliseev Matvey RUS 3 1+2+0+0
## 6441 27 46 Guigonnat Antonin FRA 3 0+1+2+0
## 6442 28 55 Volkov Alexey RUS 0 0+0+0+0
## 6443 29 18 Eberhard Julian AUT 6 0+2+2+2
## 6444 30 27 Finello Jeremy SUI 2 0+1+1+0
## 6445 31 26 Claude Florent BEL 2 0+0+1+1
## 6446 32 33 Seppala Tero FIN 3 1+0+0+2
## 6447 33 51 Landertinger Dominik AUT 2 0+0+2+0
## 6448 34 20 Kuehn Johannes GER 6 2+1+2+1
## 6449 35 42 Ermits Kalev EST 3 0+2+1+0
## 6450 36 52 Bjoerndalen Ole Einar NOR 3 1+2+0+0
## 6451 37 50 Wiestner Serafin SUI 3 0+0+1+2
## 6452 38 31 Eberhard Tobias AUT 3 0+1+1+1
## 6453 39 39 Bauer Klemen SLO 5 1+0+2+2
## 6454 40 40 Fillon Maillet Quentin FRA 5 5+0+0+0
## 6455 41 41 Bormolini Thomas ITA 4 1+0+1+2
## 6456 42 48 Kaukenas Tomas LTU 4 1+0+1+2
## 6457 43 54 Jacquelin Emilien FRA 4 1+2+1+0
## 6458 44 35 Sinapov Anton BUL 4 1+0+1+2
## 6459 45 44 Tsvetkov Maxim RUS 1 1+0+0+0
## 6460 46 45 Gronman Tuomas FIN 2 0+0+2+0
## 6461 47 59 Iliev Vladimir BUL 4 0+1+2+1
## 6462 48 22 Windisch Dominik ITA 8 2+0+3+3
## 6463 49 49 Abasheu Dzmitry BLR 1 0+0+0+1
## 6464 50 32 Gow Scott CAN 6 2+1+1+2
## 6465 51 47 Lessing Roland EST 3 0+1+1+1
## 6466 52 25 Soukup Jaroslav CZE 5 1+1+0+3
## 6467 53 56 Yaliotnau Raman BLR 5 0+2+2+1
## 6468 54 57 Green Brendan CAN 3 0+2+0+1
## 6469 55 29 Babikov Anton RUS 7 1+3+2+1
## 6470 56 58 Krupcik Tomas CZE 6 0+1+3+2
## 6471 57 60 Tambornino Eligius SUI 8 2+2+2+2
## 6472 DNS 34 Schempp Simon GER NA
## 6473 DNS 43 Siemakov Volodymyr UKR NA
## 6474 DNS 53 Tyshchenko Artem UKR NA
## 6475 1 18 Fourcade Martin FRA 0 0+0
## 6476 2 58 Svendsen Emil Hegle NOR 0 0+0
## 6477 3 10 Boe Johannes Thingnes NOR 2 2+0
## 6478 4 22 Burke Tim USA 0 0+0
## 6479 5 33 Boe Tarjei NOR 1 0+1
## 6480 6 11 Hofer Lukas ITA 1 1+0
## 6481 7 31 Fak Jakov SLO 0 0+0
## 6482 8 13 Weger Benjamin SUI 1 1+0
## 6483 9 6 Krcmar Michal CZE 1 0+1
## 6484 10 8 Pidruchnyi Dmytro UKR 1 1+0
## 6485 11 16 Moravec Ondrej CZE 1 1+0
## 6486 12 28 Peiffer Arnd GER 2 1+1
## 6487 13 15 Desthieux Simon FRA 1 1+0
## 6488 14 34 Lapshin Timofei KOR 1 0+1
## 6489 15 17 Birkeland Lars Helge NOR 1 1+0
## 6490 16 21 Pryma Artem UKR 2 1+1
## 6491 17 14 Doll Benedikt GER 3 1+2
## 6492 18 20 Eberhard Julian AUT 3 2+1
## 6493 18 96 Bocharnikov Sergey BLR 1 1+0
## 6494 20 44 Kuehn Johannes GER 2 0+2
## 6495 21 63 Eliseev Matvey RUS 0 0+0
## 6496 22 1 Windisch Dominik ITA 2 0+2
## 6497 23 27 Loginov Alexander RUS 3 1+2
## 6498 24 38 Lindstroem Fredrik SWE 2 1+1
## 6499 25 88 Soukup Jaroslav CZE 1 0+1
## 6500 26 36 Claude Florent BEL 1 0+1
## 6501 27 26 Finello Jeremy SUI 0 0+0
## 6502 28 32 Shipulin Anton RUS 2 0+2
## 6503 29 35 Babikov Anton RUS 1 0+1
## 6504 30 82 Rees Roman GER 2 1+1
## 6505 31 5 Eberhard Tobias AUT 2 1+1
## 6506 32 12 Gow Scott CAN 1 0+1
## 6507 33 2 Seppala Tero FIN 2 1+1
## 6508 34 7 Schempp Simon GER 3 2+1
## 6509 34 62 Sinapov Anton BUL 1 1+0
## 6510 36 48 Gow Christian CAN 1 0+1
## 6511 37 67 Samuelsson Sebastian SWE 2 2+0
## 6512 38 49 L'Abee-Lund Henrik NOR 4 2+2
## 6513 39 29 Bauer Klemen SLO 3 1+2
## 6514 40 9 Fillon Maillet Quentin FRA 3 1+2
## 6515 41 39 Bormolini Thomas ITA 2 0+2
## 6516 42 30 Ermits Kalev EST 2 1+1
## 6517 43 45 Siemakov Volodymyr UKR 2 0+2
## 6518 44 51 Tsvetkov Maxim RUS 1 0+1
## 6519 45 52 Gronman Tuomas FIN 0 0+0
## 6520 46 41 Guigonnat Antonin FRA 3 0+3
## 6521 47 50 Lessing Roland EST 1 1+0
## 6522 48 55 Kaukenas Tomas LTU 1 0+1
## 6523 49 56 Abasheu Dzmitry BLR 1 1+0
## 6524 50 46 Wiestner Serafin SUI 2 1+1
## 6525 51 70 Landertinger Dominik AUT 2 1+1
## 6526 52 94 Bjoerndalen Ole Einar NOR 2 2+0
## 6527 53 86 Tyshchenko Artem UKR 1 0+1
## 6528 54 103 Jacquelin Emilien FRA 1 1+0
## 6529 55 101 Volkov Alexey RUS 1 1+0
## 6530 56 37 Yaliotnau Raman BLR 3 1+2
## 6531 57 75 Green Brendan CAN 3 1+2
## 6532 58 47 Krupcik Tomas CZE 3 1+2
## 6533 59 25 Iliev Vladimir BUL 5 3+2
## 6534 60 72 Tambornino Eligius SUI 2 0+2
## 6535 61 24 Strolia Vytautas LTU 3 1+2
## 6536 62 68 Drinovec Mitja SLO 2 1+1
## 6537 63 84 Chepelin Vladimir BLR 3 2+1
## 6538 64 65 Kobonoki Tsukasa JPN 1 0+1
## 6539 65 92 Puchianu Cornel ROU 2 0+2
## 6540 66 69 Guzik Grzegorz POL 2 1+1
## 6541 67 3 Tachizaki Mikito JPN 3 1+2
## 6542 68 54 Beatrix Jean Guillaume FRA 3 0+3
## 6543 69 74 Khamitgatin Timur KAZ 1 1+0
## 6544 70 19 Nelin Jesper SWE 5 2+3
## 6545 71 76 Chenal Thierry ITA 2 0+2
## 6546 72 78 Faur Remus ROU 2 1+1
## 6547 73 81 Szczurek Lukasz POL 3 2+1
## 6548 74 4 Muiznieks Oskars LAT 3 3+0
## 6549 75 53 Vaclavik Adam CZE 5 1+4
## 6550 76 97 Femling Peppe SWE 3 1+2
## 6551 77 100 Bartko Simon SVK 2 2+0
## 6552 78 73 Komatz David AUT 3 2+1
## 6553 79 40 Leitner Felix AUT 4 1+3
## 6554 80 77 Zahkna Rene EST 1 0+1
## 6555 81 79 Tkalenko Ruslan UKR 3 0+3
## 6556 82 59 Gerdzhikov Dimitar BUL 3 1+2
## 6557 83 23 Buta George ROU 4 3+1
## 6558 84 42 Doherty Sean USA 4 3+1
## 6559 85 43 Dovzan Miha SLO 4 1+3
## 6560 86 57 Hasilla Tomas SVK 4 1+3
## 6561 87 83 Hiidensalo Olli FIN 4 2+2
## 6562 87 85 Dixon Scott GBR 0 0+0
## 6563 89 105 Podkorytov Vassiliy KAZ 2 0+2
## 6564 90 102 Vitenko Vladislav KAZ 2 2+0
## 6565 91 98 Kletcherov Michail BUL 2 0+2
## 6566 92 89 Mesotitsch Daniel AUT 3 1+2
## 6567 93 95 Dombrovski Karol LTU 3 1+2
## 6568 94 91 Campbell Carsen CAN 2 2+0
## 6569 95 93 Montello Giuseppe ITA 4 3+1
## 6570 96 104 Patrijuks Aleksandrs LAT 1 0+1
## 6571 97 71 Sima Michal SVK 5 3+2
## 6572 98 64 Lusa Daumants LAT 2 1+1
## 6573 99 87 Janik Mateusz POL 5 3+2
## 6574 100 99 Kubaliak Michal SVK 3 2+1
## 6575 101 61 Angelis Apostolos GRE 8 4+4
## 6576 102 60 Kim Jongmin KOR 6 4+2
## 6577 103 80 Braun Maxim KAZ 5 3+2
## 6578 DNF 66 Hodzic Edin SRB NA 1
## 6579 DNS 90 Jaeger Martin SUI NA
## 6580 1 40 Boe Johannes Thingnes NOR 0 0+0+0+0
## 6581 2 43 Fillon Maillet Quentin FRA 0 0+0+0+0
## 6582 3 36 Fourcade Martin FRA 2 0+0+0+2
## 6583 4 22 Eberhard Julian AUT 1 0+0+0+1
## 6584 5 31 Babikov Anton RUS 0 0+0+0+0
## 6585 6 13 Hofer Lukas ITA 2 1+1+0+0
## 6586 7 24 Weger Benjamin SUI 0 0+0+0+0
## 6587 8 37 Rastorgujevs Andrejs LAT 2 0+1+1+0
## 6588 9 101 Loginov Alexander RUS 1 0+1+0+0
## 6589 10 11 Bauer Klemen SLO 1 0+0+0+1
## 6590 11 33 Svendsen Emil Hegle NOR 2 1+0+0+1
## 6591 12 58 Fak Jakov SLO 0 0+0+0+0
## 6592 13 4 Desthieux Simon FRA 2 0+1+0+1
## 6593 14 7 Birkeland Lars Helge NOR 2 0+1+0+1
## 6594 15 27 Shipulin Anton RUS 1 0+1+0+0
## 6595 16 30 Schempp Simon GER 2 1+0+0+1
## 6596 17 72 Lesser Erik GER 3 0+1+0+2
## 6597 18 80 Bjoerndalen Ole Einar NOR 1 1+0+0+0
## 6598 19 6 Eder Simon AUT 2 0+0+0+2
## 6599 20 47 Boe Tarjei NOR 3 0+2+0+1
## 6600 21 18 Tsvetkov Maxim RUS 1 0+0+1+0
## 6601 22 98 L'Abee-Lund Henrik NOR 3 1+2+0+0
## 6602 23 20 Pryma Artem UKR 2 0+1+0+1
## 6603 24 8 Semenov Sergii UKR 2 1+1+0+0
## 6604 25 29 Lindstroem Fredrik SWE 3 1+0+1+1
## 6605 26 34 Slesingr Michal CZE 3 1+2+0+0
## 6606 27 78 Fourcade Simon FRA 2 0+1+0+1
## 6607 28 81 Leitner Felix AUT 2 0+1+1+0
## 6608 29 45 Peiffer Arnd GER 3 0+2+1+0
## 6609 30 5 Moravec Ondrej CZE 1 0+0+1+0
## 6610 31 38 Beatrix Jean Guillaume FRA 4 0+1+1+2
## 6611 32 44 Burke Tim USA 3 1+2+0+0
## 6612 33 59 Volkov Alexey RUS 1 0+1+0+0
## 6613 34 2 Doll Benedikt GER 4 1+1+0+2
## 6614 35 100 Jacquelin Emilien FRA 1 1+0+0+0
## 6615 36 69 Stenersen Torstein SWE 2 0+1+1+0
## 6616 37 93 Smith Nathan CAN 2 0+2+0+0
## 6617 38 3 Doherty Sean USA 2 0+1+0+1
## 6618 39 54 Buta George ROU 2 2+0+0+0
## 6619 40 41 Windisch Dominik ITA 5 2+1+1+1
## 6620 41 91 Nawrath Philipp GER 3 1+1+0+1
## 6621 42 88 Jaeger Martin SUI 1 0+0+1+0
## 6622 43 17 Garanichev Evgeniy RUS 4 1+1+1+1
## 6623 44 65 Nelin Jesper SWE 5 0+1+3+1
## 6624 45 16 Gow Christian CAN 1 0+0+0+1
## 6625 46 53 Dovzan Miha SLO 2 0+2+0+0
## 6626 47 64 Kuehn Johannes GER 5 2+1+0+2
## 6627 48 102 Muiznieks Oskars LAT 2 0+1+1+0
## 6628 49 67 Finello Jeremy SUI 4 1+0+1+2
## 6629 50 74 Tachizaki Mikito JPN 3 1+1+1+0
## 6630 51 99 Hiidensalo Olli FIN 2 0+0+0+2
## 6631 52 10 Iliev Vladimir BUL 6 2+2+1+1
## 6632 53 26 Gow Scott CAN 4 1+2+0+1
## 6633 54 19 Kaukenas Tomas LTU 4 0+2+1+1
## 6634 54 28 Anev Krasimir BUL 5 3+0+1+1
## 6635 56 107 Gerdzhikov Dimitar BUL 3 0+1+1+1
## 6636 57 108 Kobonoki Tsukasa JPN 3 1+0+1+1
## 6637 58 1 Otcenas Martin SVK 4 1+0+1+2
## 6638 59 42 Waeger Lorenz AUT 2 1+1+0+0
## 6639 60 85 Serban Denis ROU 1 0+0+0+1
## 6640 61 87 Femling Peppe SWE 4 0+2+2+0
## 6641 62 55 Bormolini Thomas ITA 5 2+1+0+2
## 6642 63 83 Nordgren Leif USA 3 1+0+0+2
## 6643 64 66 Pantov Anton KAZ 0 0+0+0+0
## 6644 65 90 Lessing Roland EST 3 0+0+1+2
## 6645 66 15 Krcmar Michal CZE 5 2+0+1+2
## 6646 67 25 Bailey Lowell USA 4 1+1+0+2
## 6647 68 79 Green Brendan CAN 5 1+2+0+2
## 6648 69 70 Hasilla Tomas SVK 5 1+3+1+0
## 6649 69 92 Schommer Paul USA 4 1+2+0+1
## 6650 71 52 Krupcik Tomas CZE 3 0+2+0+1
## 6651 72 73 Dombrovski Karol LTU 3 1+1+1+0
## 6652 73 9 Dolder Mario SUI 6 3+0+0+3
## 6653 74 21 Bocharnikov Sergey BLR 6 2+0+2+2
## 6654 75 68 Zahkna Rene EST 3 2+1+0+0
## 6655 76 104 Yaliotnau Raman BLR 7 2+3+1+1
## 6656 77 97 Oblak Lenart SLO 3 2+0+0+1
## 6657 78 23 Siemakov Volodymyr UKR 5 1+1+3+0
## 6658 79 76 Lusa Daumants LAT 1 0+0+1+0
## 6659 80 94 Podkorytov Vassiliy KAZ 2 1+0+1+0
## 6660 81 46 Kazar Matej SVK 5 1+2+1+1
## 6661 82 71 Tkalenko Ruslan UKR 5 0+1+0+4
## 6662 83 82 Angelis Apostolos GRE 4 2+1+0+1
## 6663 84 12 Gronman Tuomas FIN 2 1+0+0+1
## 6664 85 35 Roesch Michael BEL 5 1+2+2+0
## 6665 86 105 Soukup Jaroslav CZE 4 1+2+0+1
## 6666 87 96 Strolia Vytautas LTU 5 1+3+0+1
## 6667 88 95 Brunner Peter AUT 4 2+1+0+1
## 6668 89 57 Seppala Tero FIN 6 2+1+1+2
## 6669 90 75 Guzik Grzegorz POL 6 4+1+1+0
## 6670 91 84 Sima Michal SVK 5 2+1+1+1
## 6671 92 63 Crnkovic Kresimir CRO 6 1+2+2+1
## 6672 93 50 Szczurek Lukasz POL 6 1+3+0+2
## 6673 94 106 Nedza-Kubiniec Andrzej POL 6 2+1+2+1
## 6674 95 39 Wiestner Serafin SUI 4 0+2+0+2
## 6675 96 103 Vitenko Vladislav KAZ 6 3+0+1+2
## 6676 97 86 Zhyrnyi Oleksandr UKR 6 2+1+2+1
## 6677 98 32 Chepelin Vladimir BLR 8 2+2+2+2
## 6678 98 49 Puchianu Cornel ROU 8 0+2+2+4
## 6679 100 48 Koiv Kauri EST 5 1+1+1+2
## 6680 101 56 Dixon Scott GBR 3 0+1+1+1
## 6681 102 51 Varabei Maksim BLR 6 1+1+1+3
## 6682 103 14 Mesotitsch Daniel AUT 7 0+4+1+2
## 6683 104 61 Kim Jongmin KOR 5 2+0+2+1
## 6684 105 60 Sinapov Anton BUL 8 2+2+2+2
## 6685 106 77 Braun Maxim KAZ 5 1+1+0+3
## 6686 107 62 Hodzic Edin SRB 6 1+2+2+1
## 6687 108 89 Kim Yonggyu KOR 10 3+3+3+1
## 6688 1 2 Fourcade Martin FRA 1 1+0+0+0
## 6689 2 10 Fak Jakov SLO 2 1+0+0+1
## 6690 3 12 Fillon Maillet Quentin FRA 2 1+0+0+1
## 6691 4 4 Svendsen Emil Hegle NOR 3 0+1+2+0
## 6692 5 7 Lindstroem Fredrik SWE 3 0+1+2+0
## 6693 6 29 Birkeland Lars Helge NOR 1 1+0+0+0
## 6694 7 21 Eberhard Julian AUT 3 0+0+3+0
## 6695 8 25 Shipulin Anton RUS 2 0+0+1+1
## 6696 9 15 Fourcade Simon FRA 1 0+0+0+1
## 6697 10 3 Lesser Erik GER 6 4+0+1+1
## 6698 11 23 Hofer Lukas ITA 4 1+1+0+2
## 6699 12 41 L'Abee-Lund Henrik NOR 3 0+1+1+1
## 6700 13 11 Boe Johannes Thingnes NOR 6 0+1+2+3
## 6701 14 14 Eder Simon AUT 2 0+1+1+0
## 6702 15 28 Peiffer Arnd GER 3 0+0+3+0
## 6703 16 5 Schempp Simon GER 5 2+1+1+1
## 6704 17 22 Bailey Lowell USA 2 0+1+0+1
## 6705 18 31 Bjoerndalen Ole Einar NOR 2 0+0+1+1
## 6706 19 1 Boe Tarjei NOR 6 1+0+3+2
## 6707 20 8 Rastorgujevs Andrejs LAT 6 0+2+2+2
## 6708 21 26 Gow Christian CAN 1 0+0+1+0
## 6709 22 44 Moravec Ondrej CZE 1 0+0+0+1
## 6710 23 35 Tsvetkov Maxim RUS 2 1+1+0+0
## 6711 24 50 Pryma Artem UKR 1 0+0+1+0
## 6712 25 9 Kuehn Johannes GER 6 3+0+1+2
## 6713 26 30 Doll Benedikt GER 5 0+1+1+3
## 6714 27 6 Dolder Mario SUI 6 0+1+2+3
## 6715 28 37 Jacquelin Emilien FRA 3 0+0+1+2
## 6716 29 55 Garanichev Evgeniy RUS 2 0+1+1+0
## 6717 30 36 Samuelsson Sebastian SWE 4 3+0+0+1
## 6718 31 18 Weger Benjamin SUI 5 0+1+0+4
## 6719 32 45 Krupcik Tomas CZE 2 0+0+0+2
## 6720 33 32 Eliseev Matvey RUS 4 2+0+1+1
## 6721 34 17 Babikov Anton RUS 5 3+1+1+0
## 6722 35 27 Loginov Alexander RUS 6 2+0+1+3
## 6723 36 20 Nelin Jesper SWE 7 1+0+4+2
## 6724 37 38 Slesingr Michal CZE 4 0+0+1+3
## 6725 38 39 Desthieux Simon FRA 6 1+2+3+0
## 6726 39 43 Krcmar Michal CZE 3 0+1+0+2
## 6727 40 40 Bormolini Thomas ITA 5 2+2+0+1
## 6728 41 42 Bauer Klemen SLO 4 1+0+1+2
## 6729 42 24 Smith Nathan CAN 3 1+0+0+2
## 6730 43 34 Zahkna Rene EST 3 1+1+0+1
## 6731 44 46 Wiestner Serafin SUI 4 1+0+0+3
## 6732 45 53 Puchianu Cornel ROU 3 2+0+0+1
## 6733 46 60 Varabei Maksim BLR 4 0+1+1+2
## 6734 47 49 Ermits Kalev EST 5 0+1+0+4
## 6735 48 52 Burke Tim USA 4 2+0+1+1
## 6736 49 51 Kazar Matej SVK 5 1+1+1+2
## 6737 50 16 Gow Scott CAN 6 1+2+1+2
## 6738 51 56 Green Brendan CAN 5 0+2+2+1
## 6739 52 47 Nawrath Philipp GER 5 1+1+2+1
## 6740 53 33 Yaliotnau Raman BLR 9 2+2+2+3
## 6741 54 19 Beatrix Jean Guillaume FRA 8 2+1+2+3
## 6742 55 58 Leitner Felix AUT 7 2+1+3+1
## 6743 56 48 Roesch Michael BEL 7 0+1+4+2
## 6744 57 54 Drinovec Mitja SLO 8 2+1+1+4
## 6745 58 57 Strolia Vytautas LTU 8 2+1+3+2
## 6746 DNF 13 Lapshin Timofei KOR NA 2+1+2+2
## 6747 DNS 59 Gerdzhikov Dimitar BUL NA
## 6748 1 94 Boe Tarjei NOR 1 0+1
## 6749 2 13 Fourcade Martin FRA 1 1+0
## 6750 3 22 Lesser Erik GER 1 0+1
## 6751 4 19 Svendsen Emil Hegle NOR 1 0+1
## 6752 5 45 Schempp Simon GER 1 0+1
## 6753 6 29 Dolder Mario SUI 0 0+0
## 6754 7 43 Lindstroem Fredrik SWE 0 0+0
## 6755 8 44 Rastorgujevs Andrejs LAT 1 0+1
## 6756 9 70 Kuehn Johannes GER 1 0+1
## 6757 10 57 Fak Jakov SLO 1 1+0
## 6758 11 28 Boe Johannes Thingnes NOR 3 3+0
## 6759 12 12 Fillon Maillet Quentin FRA 1 0+1
## 6760 13 34 Lapshin Timofei KOR 0 0+0
## 6761 14 49 Eder Simon AUT 1 0+1
## 6762 15 81 Fourcade Simon FRA 1 0+1
## 6763 16 24 Gow Scott CAN 0 0+0
## 6764 17 20 Babikov Anton RUS 1 0+1
## 6765 18 46 Weger Benjamin SUI 1 1+0
## 6766 19 18 Beatrix Jean Guillaume FRA 1 0+1
## 6767 20 80 Nelin Jesper SWE 1 1+0
## 6768 21 32 Eberhard Julian AUT 3 2+1
## 6769 22 35 Bailey Lowell USA 0 0+0
## 6770 23 39 Hofer Lukas ITA 2 0+2
## 6771 24 103 Smith Nathan CAN 0 0+0
## 6772 25 26 Shipulin Anton RUS 1 1+0
## 6773 26 1 Gow Christian CAN 0 0+0
## 6774 27 69 Loginov Alexander RUS 1 0+1
## 6775 28 50 Peiffer Arnd GER 2 0+2
## 6776 29 77 Birkeland Lars Helge NOR 2 1+1
## 6777 30 64 Doll Benedikt GER 3 2+1
## 6778 31 36 Bjoerndalen Ole Einar NOR 1 0+1
## 6779 32 88 Eliseev Matvey RUS 1 0+1
## 6780 33 54 Yaliotnau Raman BLR 2 0+2
## 6781 34 87 Zahkna Rene EST 0 0+0
## 6782 35 23 Tsvetkov Maxim RUS 1 1+0
## 6783 36 14 Samuelsson Sebastian SWE 2 2+0
## 6784 37 107 Jacquelin Emilien FRA 1 0+1
## 6785 38 30 Slesingr Michal CZE 1 0+1
## 6786 39 25 Desthieux Simon FRA 3 0+3
## 6787 40 63 Bormolini Thomas ITA 1 0+1
## 6788 41 7 L'Abee-Lund Henrik NOR 3 2+1
## 6789 42 38 Bauer Klemen SLO 3 1+2
## 6790 43 31 Krcmar Michal CZE 2 1+1
## 6791 44 75 Moravec Ondrej CZE 2 0+2
## 6792 45 11 Krupcik Tomas CZE 1 1+0
## 6793 46 8 Wiestner Serafin SUI 2 1+1
## 6794 47 93 Nawrath Philipp GER 2 0+2
## 6795 48 33 Roesch Michael BEL 2 0+2
## 6796 49 72 Ermits Kalev EST 2 2+0
## 6797 50 42 Pryma Artem UKR 2 1+1
## 6798 51 15 Kazar Matej SVK 2 1+1
## 6799 52 21 Burke Tim USA 3 3+0
## 6800 53 16 Puchianu Cornel ROU 2 0+2
## 6801 54 59 Drinovec Mitja SLO 0 0+0
## 6802 55 9 Garanichev Evgeniy RUS 3 0+3
## 6803 55 71 Green Brendan CAN 2 1+1
## 6804 57 91 Strolia Vytautas LTU 2 2+0
## 6805 58 85 Leitner Felix AUT 2 0+2
## 6806 59 67 Gerdzhikov Dimitar BUL 1 0+1
## 6807 60 102 Varabei Maksim BLR 2 1+1
## 6808 61 68 Siemakov Volodymyr UKR 1 0+1
## 6809 62 41 Windisch Dominik ITA 4 3+1
## 6810 63 76 Hiidensalo Olli FIN 2 0+2
## 6811 64 78 Otcenas Martin SVK 2 0+2
## 6812 65 40 Faur Remus ROU 1 0+1
## 6813 66 4 Nordgren Leif USA 2 1+1
## 6814 67 17 Semenov Sergii UKR 3 3+0
## 6815 68 101 Soukup Jaroslav CZE 2 0+2
## 6816 69 37 Mesotitsch Daniel AUT 2 0+2
## 6817 70 48 Bocharnikov Sergey BLR 3 1+2
## 6818 71 96 Sinapov Anton BUL 3 1+2
## 6819 72 5 Waeger Lorenz AUT 2 0+2
## 6820 73 97 Finello Jeremy SUI 2 1+1
## 6821 74 105 Brunner Peter AUT 1 0+1
## 6822 75 10 Pidruchnyi Dmytro UKR 4 0+4
## 6823 76 53 Tachizaki Mikito JPN 2 1+1
## 6824 77 95 Dovzan Miha SLO 3 1+2
## 6825 78 92 Janik Mateusz POL 1 1+0
## 6826 79 62 Yeremin Roman KAZ 4 1+3
## 6827 80 3 Koiv Kauri EST 1 0+1
## 6828 81 65 Seppala Tero FIN 4 1+3
## 6829 82 58 Doherty Sean USA 3 2+1
## 6830 83 104 Kobonoki Tsukasa JPN 3 1+2
## 6831 84 2 Chepelin Vladimir BLR 4 1+3
## 6832 85 79 Crnkovic Kresimir CRO 3 1+2
## 6833 86 73 Szczurek Lukasz POL 2 1+1
## 6834 87 82 Muiznieks Oskars LAT 3 1+2
## 6835 88 108 Sima Michal SVK 3 1+2
## 6836 89 27 Kaukenas Tomas LTU 3 0+3
## 6837 90 56 Guzik Grzegorz POL 3 1+2
## 6838 91 60 Jaeger Martin SUI 4 1+3
## 6839 92 52 Kim Jongmin KOR 1 0+1
## 6840 93 86 Tkalenko Ruslan UKR 4 2+2
## 6841 94 90 Schommer Paul USA 4 1+3
## 6842 95 55 Dombrovski Karol LTU 3 0+3
## 6843 96 99 Vitenko Vladislav KAZ 3 3+0
## 6844 97 51 Iliev Vladimir BUL 6 2+4
## 6845 98 47 Hasilla Tomas SVK 5 1+4
## 6846 99 106 Ponsiluoma Martin SWE 3 3+0
## 6847 100 74 Buta George ROU 4 2+2
## 6848 101 98 Podkorytov Vassiliy KAZ 2 0+2
## 6849 102 83 Dixon Scott GBR 3 2+1
## 6850 103 61 Pantov Anton KAZ 3 2+1
## 6851 104 100 Loukkaanhuhta Mikko FIN 4 1+3
## 6852 105 89 Patrijuks Aleksandrs LAT 5 3+2
## 6853 106 66 Angelis Apostolos GRE 5 4+1
## 6854 107 84 Hodzic Edin SRB 4 2+2
## 6855 DNS 6 Anev Krasimir BUL NA
## 6856 1 3 Fourcade Martin FRA 2 1+0+1+0
## 6857 2 5 Hofer Lukas ITA 1 1+0+0+0
## 6858 3 2 Boe Johannes Thingnes NOR 4 1+2+0+1
## 6859 4 28 Tsvetkov Maxim RUS 0 0+0+0+0
## 6860 5 1 L'Abee-Lund Henrik NOR 3 0+1+0+2
## 6861 6 19 Eder Simon AUT 1 0+1+0+0
## 6862 7 18 Shipulin Anton RUS 1 0+0+0+1
## 6863 8 9 Doll Benedikt GER 2 0+1+1+0
## 6864 9 12 Weger Benjamin SUI 2 0+1+0+1
## 6865 10 6 Peiffer Arnd GER 3 0+1+1+1
## 6866 11 30 Desthieux Simon FRA 1 0+1+0+0
## 6867 12 26 Boe Tarjei NOR 1 0+1+0+0
## 6868 13 35 Samuelsson Sebastian SWE 1 0+0+1+0
## 6869 14 7 Garanichev Evgeniy RUS 3 0+1+1+1
## 6870 15 15 Rastorgujevs Andrejs LAT 3 1+0+2+0
## 6871 16 13 Rees Roman GER 1 0+0+0+1
## 6872 17 14 Doherty Sean USA 2 0+0+1+1
## 6873 18 10 Birkeland Lars Helge NOR 1 0+0+0+1
## 6874 19 32 Fak Jakov SLO 2 1+0+1+0
## 6875 20 11 Lindstroem Fredrik SWE 2 0+0+1+1
## 6876 21 34 Guigonnat Antonin FRA 1 0+0+1+0
## 6877 22 31 Windisch Dominik ITA 3 0+1+1+1
## 6878 23 20 Landertinger Dominik AUT 2 1+1+0+0
## 6879 24 4 Eberhard Julian AUT 7 4+2+1+0
## 6880 25 36 Lesser Erik GER 2 0+0+2+0
## 6881 26 33 Pryma Artem UKR 1 1+0+0+0
## 6882 27 8 Fillon Maillet Quentin FRA 4 4+0+0+0
## 6883 28 42 Bailey Lowell USA 2 0+0+2+0
## 6884 29 29 Moravec Ondrej CZE 2 1+0+0+1
## 6885 30 39 Finello Jeremy SUI 1 1+0+0+0
## 6886 31 17 Bauer Klemen SLO 4 0+1+2+1
## 6887 32 24 Dolder Mario SUI 3 1+1+0+1
## 6888 33 25 Anev Krasimir BUL 2 1+0+1+0
## 6889 34 23 Bjoentegaard Erlend NOR 4 0+2+1+1
## 6890 35 53 Schempp Simon GER 1 0+0+0+1
## 6891 36 16 Malyshko Dmitry RUS 5 3+1+0+1
## 6892 37 40 Hiidensalo Olli FIN 2 0+1+1+0
## 6893 38 21 Pidruchnyi Dmytro UKR 4 1+0+3+0
## 6894 39 52 Babikov Anton RUS 1 0+0+0+1
## 6895 40 43 Nordgren Leif USA 4 0+3+1+0
## 6896 41 58 Iliev Vladimir BUL 2 1+0+1+0
## 6897 42 38 Bocharnikov Sergey BLR 4 2+0+1+1
## 6898 43 37 Krcmar Michal CZE 3 0+2+1+0
## 6899 44 41 Dovzan Miha SLO 3 0+1+2+0
## 6900 45 27 Nelin Jesper SWE 6 0+1+2+3
## 6901 46 55 Femling Peppe SWE 3 0+1+2+0
## 6902 47 57 Burke Tim USA 4 1+0+1+2
## 6903 48 51 Leitner Felix AUT 4 1+0+2+1
## 6904 49 48 Gronman Tuomas FIN 2 0+0+0+2
## 6905 50 59 Bormolini Thomas ITA 2 0+0+1+1
## 6906 51 49 Gow Scott CAN 5 1+0+3+1
## 6907 52 44 Yaliotnau Raman BLR 5 4+1+0+0
## 6908 53 54 Smolski Anton BLR 3 1+0+0+2
## 6909 54 56 Gow Christian CAN 2 0+0+1+1
## 6910 55 46 Seppala Tero FIN 7 2+0+2+3
## 6911 56 47 Strolia Vytautas LTU 4 1+0+0+3
## 6912 57 45 Zahkna Rene EST 5 1+1+0+3
## 6913 58 60 Mesotitsch Daniel AUT 5 1+1+3+0
## 6914 59 50 Roesch Michael BEL 5 2+1+1+1
## 6915 DNS 22 Yeremin Roman KAZ NA
## 6916 1 34 L'Abee-Lund Henrik NOR 0 0+0
## 6917 2 54 Boe Johannes Thingnes NOR 1 0+1
## 6918 3 17 Fourcade Martin FRA 0 0+0
## 6919 4 28 Eberhard Julian AUT 1 0+1
## 6920 5 8 Hofer Lukas ITA 1 1+0
## 6921 6 23 Peiffer Arnd GER 1 1+0
## 6922 7 7 Garanichev Evgeniy RUS 0 0+0
## 6923 8 19 Fillon Maillet Quentin FRA 0 0+0
## 6924 9 18 Doll Benedikt GER 1 0+1
## 6925 10 6 Birkeland Lars Helge NOR 0 0+0
## 6926 11 81 Lindstroem Fredrik SWE 0 0+0
## 6927 12 10 Weger Benjamin SUI 0 0+0
## 6928 13 68 Rees Roman GER 0 0+0
## 6929 14 53 Doherty Sean USA 0 0+0
## 6930 15 51 Rastorgujevs Andrejs LAT 1 1+0
## 6931 16 73 Malyshko Dmitry RUS 1 1+0
## 6932 17 24 Bauer Klemen SLO 1 0+1
## 6933 18 15 Shipulin Anton RUS 0 0+0
## 6934 19 20 Eder Simon AUT 1 0+1
## 6935 20 13 Landertinger Dominik AUT 0 0+0
## 6936 21 5 Pidruchnyi Dmytro UKR 1 0+1
## 6937 22 57 Yeremin Roman KAZ 2 1+1
## 6938 23 1 Bjoentegaard Erlend NOR 0 0+0
## 6939 24 12 Dolder Mario SUI 1 0+1
## 6940 25 22 Anev Krasimir BUL 0 0+0
## 6941 26 49 Boe Tarjei NOR 2 1+1
## 6942 27 46 Nelin Jesper SWE 2 1+1
## 6943 27 55 Tsvetkov Maxim RUS 1 1+0
## 6944 29 43 Moravec Ondrej CZE 0 0+0
## 6945 30 31 Desthieux Simon FRA 3 1+2
## 6946 31 27 Windisch Dominik ITA 2 0+2
## 6947 32 32 Fak Jakov SLO 2 1+1
## 6948 33 30 Pryma Artem UKR 1 0+1
## 6949 34 39 Guigonnat Antonin FRA 1 1+0
## 6950 35 11 Samuelsson Sebastian SWE 1 0+1
## 6951 36 35 Lesser Erik GER 2 1+1
## 6952 37 41 Krcmar Michal CZE 1 0+1
## 6953 38 29 Bocharnikov Sergey BLR 2 1+1
## 6954 39 40 Finello Jeremy SUI 0 0+0
## 6955 40 65 Hiidensalo Olli FIN 1 0+1
## 6956 41 36 Dovzan Miha SLO 1 1+0
## 6957 42 25 Bailey Lowell USA 2 0+2
## 6958 43 66 Nordgren Leif USA 1 0+1
## 6959 44 48 Yaliotnau Raman BLR 2 1+1
## 6960 45 71 Zahkna Rene EST 0 0+0
## 6961 46 38 Seppala Tero FIN 2 1+1
## 6962 47 62 Strolia Vytautas LTU 0 0+0
## 6963 48 14 Gronman Tuomas FIN 1 0+1
## 6964 49 50 Gow Scott CAN 1 0+1
## 6965 50 21 Roesch Michael BEL 2 2+0
## 6966 51 77 Leitner Felix AUT 2 2+0
## 6967 52 42 Babikov Anton RUS 2 1+1
## 6968 53 4 Schempp Simon GER 4 2+2
## 6969 53 59 Smolski Anton BLR 2 1+1
## 6970 55 104 Femling Peppe SWE 2 0+2
## 6971 56 2 Gow Christian CAN 0 0+0
## 6972 57 33 Burke Tim USA 4 2+2
## 6973 57 47 Iliev Vladimir BUL 3 2+1
## 6974 59 56 Bormolini Thomas ITA 1 1+0
## 6975 60 95 Mesotitsch Daniel AUT 1 0+1
## 6976 61 58 Buta George ROU 0 0+0
## 6977 62 64 Kazar Matej SVK 2 1+1
## 6978 63 44 Kuehn Johannes GER 5 0+5
## 6979 63 70 Jacquelin Emilien FRA 3 1+2
## 6980 65 9 Soukup Jaroslav CZE 1 1+0
## 6981 66 83 Bjoerndalen Ole Einar NOR 4 1+3
## 6982 67 61 Sinapov Anton BUL 2 0+2
## 6983 67 80 Oblak Lenart SLO 0 0+0
## 6984 69 16 Lapshin Timofei KOR 3 0+3
## 6985 70 102 Eliseev Matvey RUS 2 2+0
## 6986 71 82 Green Brendan CAN 2 1+1
## 6987 72 52 Siemakov Volodymyr UKR 3 2+1
## 6988 73 45 Otcenas Martin SVK 1 0+1
## 6989 74 37 Eberhard Tobias AUT 3 2+1
## 6990 75 87 Varabei Maksim BLR 2 0+2
## 6991 76 3 Ermits Kalev EST 2 2+0
## 6992 77 76 Tkalenko Ruslan UKR 2 2+0
## 6993 78 97 Hasilla Tomas SVK 2 0+2
## 6994 79 67 Patrijuks Aleksandrs LAT 1 0+1
## 6995 80 96 Stvrtecky Jakub CZE 3 1+2
## 6996 81 72 Vitenko Vladislav KAZ 3 2+1
## 6997 82 92 Stalder Sebastian SUI 0 0+0
## 6998 83 78 Tachizaki Mikito JPN 1 0+1
## 6999 84 79 Burkhalter Joscha SUI 3 2+1
## 7000 85 75 Puchianu Cornel ROU 3 0+3
## 7001 86 26 Guzik Grzegorz POL 4 2+2
## 7002 87 88 Pop Gheorghe ROU 1 1+0
## 7003 88 60 Nedza-Kubiniec Andrzej POL 3 2+1
## 7004 89 99 Howe Alex USA 4 3+1
## 7005 90 86 Vaclavik Adam CZE 7 4+3
## 7006 91 101 Koiv Kauri EST 4 2+2
## 7007 92 105 Kobonoki Tsukasa JPN 4 1+3
## 7008 93 85 Dombrovski Karol LTU 2 1+1
## 7009 94 63 Kim Yonggyu KOR 2 2+0
## 7010 95 93 Tyshchenko Artem UKR 2 0+2
## 7011 96 103 Davies Macx CAN 4 2+2
## 7012 97 84 Angelis Apostolos GRE 4 1+3
## 7013 98 89 Podkorytov Vassiliy KAZ 3 1+2
## 7014 99 90 Slotins Roberts LAT 4 4+0
## 7015 100 98 Braun Maxim KAZ 3 1+2
## 7016 101 74 Dixon Scott GBR 4 2+2
## 7017 102 91 Szwajnos Marcin POL 5 2+3
## 7018 103 100 Suslavicius Rokas LTU 5 1+4
## 7019 DNF 69 Hodzic Edin SRB NA 2
## 7020 DNS 94 Gerdzhikov Dimitar BUL NA
## 7021 1 9 Boe Johannes Thingnes NOR 2 1+0+0+1
## 7022 2 57 Fak Jakov SLO 0 0+0+0+0
## 7023 3 38 Landertinger Dominik AUT 0 0+0+0+0
## 7024 4 51 Samuelsson Sebastian SWE 1 0+0+1+0
## 7025 5 23 Fourcade Martin FRA 2 0+0+0+2
## 7026 6 28 Weger Benjamin SUI 1 1+0+0+0
## 7027 7 65 Krcmar Michal CZE 1 0+1+0+0
## 7028 8 1 Lindstroem Fredrik SWE 1 0+0+0+1
## 7029 9 16 Lesser Erik GER 1 0+1+0+0
## 7030 10 11 Svendsen Emil Hegle NOR 2 0+2+0+0
## 7031 11 19 Eder Simon AUT 2 1+0+1+0
## 7032 12 7 Moravec Ondrej CZE 1 0+0+0+1
## 7033 13 27 Boe Tarjei NOR 2 0+0+0+2
## 7034 14 24 Gow Scott CAN 1 0+0+0+1
## 7035 15 41 Bauer Klemen SLO 2 0+2+0+0
## 7036 16 35 Babikov Anton OAR 1 0+0+1+0
## 7037 17 25 Eberhard Julian AUT 3 1+1+0+1
## 7038 18 64 Bocharnikov Sergey BLR 1 0+0+0+1
## 7039 19 5 Iliev Vladimir BUL 3 0+1+1+1
## 7040 20 6 Lapshin Timofei KOR 1 0+1+0+0
## 7041 21 18 Peiffer Arnd GER 3 0+0+3+0
## 7042 22 76 Green Brendan CAN 1 0+0+0+1
## 7043 23 4 Guigonnat Antonin FRA 2 0+2+0+0
## 7044 24 61 Nelin Jesper SWE 3 0+0+0+3
## 7045 25 42 Anev Krasimir BUL 1 0+0+0+1
## 7046 26 30 Gow Christian CAN 2 1+0+0+1
## 7047 27 13 Desthieux Simon FRA 4 0+2+1+1
## 7048 28 26 Eliseev Matvey OAR 3 0+2+0+1
## 7049 29 79 Tyshchenko Artem UKR 0 0+0+0+0
## 7050 30 14 Chepelin Vladimir BLR 3 1+0+1+1
## 7051 31 60 Siemakov Volodymyr UKR 1 0+1+0+0
## 7052 32 8 Ermits Kalev EST 2 1+0+1+0
## 7053 33 29 Guzik Grzegorz POL 2 0+0+1+1
## 7054 34 53 Kazar Matej SVK 2 0+1+1+0
## 7055 35 17 Dovzan Miha SLO 2 1+0+0+1
## 7056 36 21 Schempp Simon GER 4 2+2+0+0
## 7057 37 59 Buta George ROU 1 0+0+1+0
## 7058 38 77 Ponsiluoma Martin SWE 2 2+0+0+0
## 7059 39 81 Varabei Maksim BLR 3 0+2+0+1
## 7060 40 85 Montello Giuseppe ITA 3 1+1+0+1
## 7061 41 52 Burke Tim USA 4 1+1+0+2
## 7062 42 50 Muiznieks Oskars LAT 3 0+2+0+1
## 7063 43 80 Gerdzhikov Dimitar BUL 3 2+0+1+0
## 7064 44 68 Doherty Sean USA 3 2+0+1+0
## 7065 45 56 Slesingr Michal CZE 4 0+3+0+1
## 7066 46 10 Pryma Artem UKR 4 1+2+0+1
## 7067 47 39 Finello Jeremy SUI 3 0+1+0+2
## 7068 48 20 Gronman Tuomas FIN 3 0+2+0+1
## 7069 49 2 Dolder Mario SUI 3 0+1+0+2
## 7070 50 55 Windisch Dominik ITA 5 2+0+3+0
## 7071 51 3 Bailey Lowell USA 4 2+1+0+1
## 7072 52 33 Yaliotnau Raman BLR 5 1+2+1+1
## 7073 53 45 Semenov Sergii UKR 3 1+0+1+1
## 7074 54 22 Claude Florent BEL 2 0+0+0+2
## 7075 55 48 Puchianu Cornel ROU 4 0+2+0+2
## 7076 56 71 Bormolini Thomas ITA 4 0+1+2+1
## 7077 57 70 Eberhard Tobias AUT 4 1+1+0+2
## 7078 58 49 Kuehn Johannes GER 6 1+1+1+3
## 7079 59 15 Rastorgujevs Andrejs LAT 6 1+1+3+1
## 7080 60 47 Birkeland Lars Helge NOR 4 2+1+1+0
## 7081 61 44 Braun Maxim KAZ 2 0+1+0+1
## 7082 62 62 Podkorytov Vassiliy KAZ 2 1+0+1+0
## 7083 63 32 Hofer Lukas ITA 5 1+2+1+1
## 7084 64 40 Tachizaki Mikito JPN 3 0+1+2+0
## 7085 65 67 Zahkna Rene EST 4 1+1+1+1
## 7086 66 84 Nordgren Leif USA 5 1+1+3+0
## 7087 67 82 Vaclavik Adam CZE 6 0+4+1+1
## 7088 68 74 Koiv Kauri EST 3 0+0+0+3
## 7089 69 83 Pop Gheorghe ROU 3 2+0+1+0
## 7090 70 37 Lessing Roland EST 4 0+1+2+1
## 7091 71 63 Sinapov Anton BUL 5 0+2+0+3
## 7092 72 86 Khamitgatin Timur KAZ 2 0+2+0+0
## 7093 73 66 Hiidensalo Olli FIN 5 0+1+3+1
## 7094 74 46 Faur Remus ROU 4 0+0+0+4
## 7095 75 78 Roesch Michael BEL 5 0+3+0+2
## 7096 76 36 Seppala Tero FIN 6 0+2+2+2
## 7097 77 54 Jacquelin Emilien FRA 7 2+2+2+1
## 7098 78 31 Kaukenas Tomas LTU 6 0+2+1+3
## 7099 79 43 Nedza-Kubiniec Andrzej POL 5 2+1+1+1
## 7100 80 73 Drinovec Mitja SLO 5 2+1+2+0
## 7101 81 72 Smith Nathan CAN 5 0+1+4+0
## 7102 82 58 Strolia Vytautas LTU 6 0+2+1+3
## 7103 83 34 Vitenko Vladislav KAZ 7 2+2+1+2
## 7104 84 12 Otcenas Martin SVK 5 1+2+0+2
## 7105 85 75 Sima Michal SVK 6 1+1+2+2
## 7106 86 69 Hasilla Tomas SVK 9 3+1+3+2
## 7107 1 2 Fourcade Martin FRA 2 1+0+0+1
## 7108 2 14 Schempp Simon GER 1 0+0+0+1
## 7109 3 15 Svendsen Emil Hegle NOR 2 1+0+1+0
## 7110 4 19 Lesser Erik GER 2 0+0+0+2
## 7111 5 8 Doll Benedikt GER 1 0+0+1+0
## 7112 6 18 Eberhard Julian AUT 3 1+0+1+1
## 7113 7 20 Bjoentegaard Erlend NOR 2 0+0+2+0
## 7114 8 10 Boe Tarjei NOR 3 1+0+2+0
## 7115 9 25 Nelin Jesper SWE 2 0+2+0+0
## 7116 10 6 Fak Jakov SLO 1 0+0+1+0
## 7117 11 29 Moravec Ondrej CZE 1 0+0+0+1
## 7118 12 9 Landertinger Dominik AUT 1 0+0+1+0
## 7119 13 1 Peiffer Arnd GER 4 1+0+1+2
## 7120 14 16 Eder Simon AUT 3 1+0+0+2
## 7121 15 26 Lindstroem Fredrik SWE 3 0+0+2+1
## 7122 16 3 Boe Johannes Thingnes NOR 3 0+3+0+0
## 7123 17 7 Windisch Dominik ITA 4 0+1+2+1
## 7124 18 12 Hofer Lukas ITA 4 1+1+0+2
## 7125 19 23 Guigonnat Antonin FRA 5 1+0+2+2
## 7126 20 22 Bauer Klemen SLO 4 1+0+2+1
## 7127 21 30 Seppala Tero FIN 3 1+2+0+0
## 7128 22 11 Desthieux Simon FRA 5 1+2+2+0
## 7129 23 5 Samuelsson Sebastian SWE 4 0+1+2+1
## 7130 24 28 Wiestner Serafin SUI 3 2+1+0+0
## 7131 25 21 Lapshin Timofei KOR 1 0+1+0+0
## 7132 26 4 Krcmar Michal CZE 5 1+1+1+2
## 7133 27 13 Weger Benjamin SUI 5 2+2+1+0
## 7134 28 27 Rastorgujevs Andrejs LAT 3 0+1+0+2
## 7135 29 17 Fillon Maillet Quentin FRA 7 3+2+2+0
## 7136 30 24 Kaukenas Tomas LTU 5 2+0+2+1
## 7137 1 8 Fourcade Martin FRA 1 1+0+0+0
## 7138 2 14 Samuelsson Sebastian SWE 1 0+0+1+0
## 7139 3 6 Doll Benedikt GER 1 0+1+0+0
## 7140 4 13 Boe Tarjei NOR 3 0+0+1+2
## 7141 5 7 Schempp Simon GER 3 0+0+1+2
## 7142 6 15 Weger Benjamin SUI 2 1+0+0+1
## Total.Time Behind Isolated.Pursuit year location ID
## 1 31:27.9 31:27.9 2014-2015 Anterselva 1
## 2 31:28.0 +0.1 30:52.0 2014-2015 Anterselva 1
## 3 31:29.0 +1.1 31:15.0 2014-2015 Anterselva 1
## 4 31:29.8 +1.9 30:46.8 2014-2015 Anterselva 1
## 5 31:59.8 +31.9 30:39.8 2014-2015 Anterselva 1
## 6 32:13.5 +45.6 31:05.5 2014-2015 Anterselva 1
## 7 32:19.3 +51.4 31:59.3 2014-2015 Anterselva 1
## 8 32:24.5 +56.6 31:17.5 2014-2015 Anterselva 1
## 9 32:26.9 +59.0 31:35.9 2014-2015 Anterselva 1
## 10 32:27.9 +1:00.0 31:39.9 2014-2015 Anterselva 1
## 11 32:29.3 +1:01.4 31:43.3 2014-2015 Anterselva 1
## 12 32:30.3 +1:02.4 31:06.3 2014-2015 Anterselva 1
## 13 32:41.6 +1:13.7 32:07.6 2014-2015 Anterselva 1
## 14 32:44.5 +1:16.6 31:43.5 2014-2015 Anterselva 1
## 15 32:52.7 +1:24.8 32:03.7 2014-2015 Anterselva 1
## 16 33:09.7 +1:41.8 32:05.7 2014-2015 Anterselva 1
## 17 33:14.7 +1:46.8 31:51.7 2014-2015 Anterselva 1
## 18 33:25.8 +1:57.9 33:01.8 2014-2015 Anterselva 1
## 19 33:26.1 +1:58.2 31:44.1 2014-2015 Anterselva 1
## 20 33:29.6 +2:01.7 32:17.6 2014-2015 Anterselva 1
## 21 33:36.2 +2:08.3 32:12.2 2014-2015 Anterselva 1
## 22 33:55.3 +2:27.4 32:30.3 2014-2015 Anterselva 1
## 23 33:56.9 +2:29.0 32:34.9 2014-2015 Anterselva 1
## 24 33:57.8 +2:29.9 32:39.8 2014-2015 Anterselva 1
## 25 34:00.0 +2:32.1 32:00.0 2014-2015 Anterselva 1
## 26 34:00.5 +2:32.6 32:42.5 2014-2015 Anterselva 1
## 27 34:08.7 +2:40.8 32:03.7 2014-2015 Anterselva 1
## 28 34:12.2 +2:44.3 33:51.2 2014-2015 Anterselva 1
## 29 34:16.7 +2:48.8 32:16.7 2014-2015 Anterselva 1
## 30 34:17.2 +2:49.3 32:38.2 2014-2015 Anterselva 1
## 31 34:17.4 +2:49.5 32:46.4 2014-2015 Anterselva 1
## 32 34:21.5 +2:53.6 33:26.5 2014-2015 Anterselva 1
## 33 34:23.6 +2:55.7 32:24.6 2014-2015 Anterselva 1
## 34 34:35.3 +3:07.4 33:15.3 2014-2015 Anterselva 1
## 35 34:35.8 +3:07.9 33:19.8 2014-2015 Anterselva 1
## 36 34:39.9 +3:12.0 32:54.9 2014-2015 Anterselva 1
## 37 34:49.9 +3:22.0 33:07.9 2014-2015 Anterselva 1
## 38 35:04.6 +3:36.7 33:32.6 2014-2015 Anterselva 1
## 39 35:07.4 +3:39.5 33:04.4 2014-2015 Anterselva 1
## 40 35:09.8 +3:41.9 33:07.8 2014-2015 Anterselva 1
## 41 35:14.4 +3:46.5 33:24.4 2014-2015 Anterselva 1
## 42 35:25.5 +3:57.6 33:26.5 2014-2015 Anterselva 1
## 43 35:31.6 +4:03.7 34:36.6 2014-2015 Anterselva 1
## 44 35:41.4 +4:13.5 33:39.4 2014-2015 Anterselva 1
## 45 35:46.0 +4:18.1 34:24.0 2014-2015 Anterselva 1
## 46 35:51.3 +4:23.4 33:47.3 2014-2015 Anterselva 1
## 47 35:59.9 +4:32.0 33:45.9 2014-2015 Anterselva 1
## 48 36:00.7 +4:32.8 34:04.7 2014-2015 Anterselva 1
## 49 36:18.5 +4:50.6 34:31.5 2014-2015 Anterselva 1
## 50 36:27.1 +4:59.2 34:48.1 2014-2015 Anterselva 1
## 51 36:41.9 +5:14.0 34:27.9 2014-2015 Anterselva 1
## 52 37:36.3 +6:08.4 35:34.3 2014-2015 Anterselva 1
## 53 37:56.6 +6:28.7 35:39.6 2014-2015 Anterselva 1
## 54 2014-2015 Anterselva 1
## 55 2014-2015 Anterselva 1
## 56 2014-2015 Anterselva 1
## 57 2014-2015 Anterselva 1
## 58 2014-2015 Anterselva 1
## 59 2014-2015 Anterselva 1
## 60 2014-2015 Anterselva 1
## 61 23:18.8 <NA> 2014-2015 Anterselva 2
## 62 23:32.8 +14.0 <NA> 2014-2015 Anterselva 2
## 63 23:38.9 +20.1 <NA> 2014-2015 Anterselva 2
## 64 23:39.7 +20.9 <NA> 2014-2015 Anterselva 2
## 65 23:43.2 +24.4 <NA> 2014-2015 Anterselva 2
## 66 23:52.0 +33.2 <NA> 2014-2015 Anterselva 2
## 67 23:53.0 +34.2 <NA> 2014-2015 Anterselva 2
## 68 23:54.7 +35.9 <NA> 2014-2015 Anterselva 2
## 69 24:02.0 +43.2 <NA> 2014-2015 Anterselva 2
## 70 24:04.4 +45.6 <NA> 2014-2015 Anterselva 2
## 71 24:06.9 +48.1 <NA> 2014-2015 Anterselva 2
## 72 24:07.4 +48.6 <NA> 2014-2015 Anterselva 2
## 73 24:10.0 +51.2 <NA> 2014-2015 Anterselva 2
## 74 24:13.3 +54.5 <NA> 2014-2015 Anterselva 2
## 75 24:13.6 +54.8 <NA> 2014-2015 Anterselva 2
## 76 24:19.3 +1:00.5 <NA> 2014-2015 Anterselva 2
## 77 24:23.0 +1:04.2 <NA> 2014-2015 Anterselva 2
## 78 24:25.5 +1:06.7 <NA> 2014-2015 Anterselva 2
## 79 24:27.0 +1:08.2 <NA> 2014-2015 Anterselva 2
## 80 24:30.4 +1:11.6 <NA> 2014-2015 Anterselva 2
## 81 24:34.4 +1:15.6 <NA> 2014-2015 Anterselva 2
## 82 24:36.8 +1:18.0 <NA> 2014-2015 Anterselva 2
## 83 24:37.0 +1:18.2 <NA> 2014-2015 Anterselva 2
## 84 24:38.4 +1:19.6 <NA> 2014-2015 Anterselva 2
## 85 24:38.6 +1:19.8 <NA> 2014-2015 Anterselva 2
## 86 24:40.4 +1:21.6 <NA> 2014-2015 Anterselva 2
## 87 24:41.2 +1:22.4 <NA> 2014-2015 Anterselva 2
## 88 24:42.0 +1:23.2 <NA> 2014-2015 Anterselva 2
## 89 24:43.0 +1:24.2 <NA> 2014-2015 Anterselva 2
## 90 24:43.2 +1:24.4 <NA> 2014-2015 Anterselva 2
## 91 24:43.7 +1:24.9 <NA> 2014-2015 Anterselva 2
## 92 24:50.0 +1:31.2 <NA> 2014-2015 Anterselva 2
## 93 24:50.9 +1:32.1 <NA> 2014-2015 Anterselva 2
## 94 24:57.5 +1:38.7 <NA> 2014-2015 Anterselva 2
## 95 24:57.5 +1:38.7 <NA> 2014-2015 Anterselva 2
## 96 24:57.9 +1:39.1 <NA> 2014-2015 Anterselva 2
## 97 25:00.6 +1:41.8 <NA> 2014-2015 Anterselva 2
## 98 25:00.8 +1:42.0 <NA> 2014-2015 Anterselva 2
## 99 25:03.8 +1:45.0 <NA> 2014-2015 Anterselva 2
## 100 25:05.4 +1:46.6 <NA> 2014-2015 Anterselva 2
## 101 25:08.9 +1:50.1 <NA> 2014-2015 Anterselva 2
## 102 25:15.2 +1:56.4 <NA> 2014-2015 Anterselva 2
## 103 25:17.5 +1:58.7 <NA> 2014-2015 Anterselva 2
## 104 25:17.6 +1:58.8 <NA> 2014-2015 Anterselva 2
## 105 25:18.4 +1:59.6 <NA> 2014-2015 Anterselva 2
## 106 25:18.7 +1:59.9 <NA> 2014-2015 Anterselva 2
## 107 25:20.8 +2:02.0 <NA> 2014-2015 Anterselva 2
## 108 25:20.9 +2:02.1 <NA> 2014-2015 Anterselva 2
## 109 25:21.0 +2:02.2 <NA> 2014-2015 Anterselva 2
## 110 25:21.4 +2:02.6 <NA> 2014-2015 Anterselva 2
## 111 25:22.1 +2:03.3 <NA> 2014-2015 Anterselva 2
## 112 25:22.7 +2:03.9 <NA> 2014-2015 Anterselva 2
## 113 25:23.2 +2:04.4 <NA> 2014-2015 Anterselva 2
## 114 25:23.9 +2:05.1 <NA> 2014-2015 Anterselva 2
## 115 25:26.7 +2:07.9 <NA> 2014-2015 Anterselva 2
## 116 25:31.1 +2:12.3 <NA> 2014-2015 Anterselva 2
## 117 25:32.5 +2:13.7 <NA> 2014-2015 Anterselva 2
## 118 25:32.9 +2:14.1 <NA> 2014-2015 Anterselva 2
## 119 25:35.7 +2:16.9 <NA> 2014-2015 Anterselva 2
## 120 25:36.1 +2:17.3 <NA> 2014-2015 Anterselva 2
## 121 25:36.3 +2:17.5 <NA> 2014-2015 Anterselva 2
## 122 25:36.5 +2:17.7 <NA> 2014-2015 Anterselva 2
## 123 25:37.8 +2:19.0 <NA> 2014-2015 Anterselva 2
## 124 25:38.8 +2:20.0 <NA> 2014-2015 Anterselva 2
## 125 25:42.2 +2:23.4 <NA> 2014-2015 Anterselva 2
## 126 25:43.6 +2:24.8 <NA> 2014-2015 Anterselva 2
## 127 25:45.3 +2:26.5 <NA> 2014-2015 Anterselva 2
## 128 25:46.9 +2:28.1 <NA> 2014-2015 Anterselva 2
## 129 25:48.7 +2:29.9 <NA> 2014-2015 Anterselva 2
## 130 25:50.2 +2:31.4 <NA> 2014-2015 Anterselva 2
## 131 25:50.5 +2:31.7 <NA> 2014-2015 Anterselva 2
## 132 25:55.3 +2:36.5 <NA> 2014-2015 Anterselva 2
## 133 25:56.6 +2:37.8 <NA> 2014-2015 Anterselva 2
## 134 25:57.3 +2:38.5 <NA> 2014-2015 Anterselva 2
## 135 25:59.4 +2:40.6 <NA> 2014-2015 Anterselva 2
## 136 26:01.3 +2:42.5 <NA> 2014-2015 Anterselva 2
## 137 26:01.4 +2:42.6 <NA> 2014-2015 Anterselva 2
## 138 26:02.1 +2:43.3 <NA> 2014-2015 Anterselva 2
## 139 26:05.9 +2:47.1 <NA> 2014-2015 Anterselva 2
## 140 26:08.3 +2:49.5 <NA> 2014-2015 Anterselva 2
## 141 26:08.4 +2:49.6 <NA> 2014-2015 Anterselva 2
## 142 26:10.8 +2:52.0 <NA> 2014-2015 Anterselva 2
## 143 26:15.1 +2:56.3 <NA> 2014-2015 Anterselva 2
## 144 26:16.1 +2:57.3 <NA> 2014-2015 Anterselva 2
## 145 26:16.4 +2:57.6 <NA> 2014-2015 Anterselva 2
## 146 26:16.7 +2:57.9 <NA> 2014-2015 Anterselva 2
## 147 26:22.6 +3:03.8 <NA> 2014-2015 Anterselva 2
## 148 26:29.9 +3:11.1 <NA> 2014-2015 Anterselva 2
## 149 26:32.5 +3:13.7 <NA> 2014-2015 Anterselva 2
## 150 26:33.7 +3:14.9 <NA> 2014-2015 Anterselva 2
## 151 26:35.6 +3:16.8 <NA> 2014-2015 Anterselva 2
## 152 26:43.1 +3:24.3 <NA> 2014-2015 Anterselva 2
## 153 26:49.3 +3:30.5 <NA> 2014-2015 Anterselva 2
## 154 26:58.7 +3:39.9 <NA> 2014-2015 Anterselva 2
## 155 27:02.5 +3:43.7 <NA> 2014-2015 Anterselva 2
## 156 27:05.8 +3:47.0 <NA> 2014-2015 Anterselva 2
## 157 27:20.2 +4:01.4 <NA> 2014-2015 Anterselva 2
## 158 27:44.9 +4:26.1 <NA> 2014-2015 Anterselva 2
## 159 28:02.9 +4:44.1 <NA> 2014-2015 Anterselva 2
## 160 28:12.4 +4:53.6 <NA> 2014-2015 Anterselva 2
## 161 28:34.5 +5:15.7 <NA> 2014-2015 Anterselva 2
## 162 29:21.5 +6:02.7 <NA> 2014-2015 Anterselva 2
## 163 <NA> 2014-2015 Anterselva 2
## 164 32:53.7 32:25.7 2014-2015 Hochfilzen 3
## 165 32:57.8 +4.1 32:43.8 2014-2015 Hochfilzen 3
## 166 33:04.6 +10.9 32:41.6 2014-2015 Hochfilzen 3
## 167 33:09.9 +16.2 33:09.9 2014-2015 Hochfilzen 3
## 168 33:22.2 +28.5 32:43.2 2014-2015 Hochfilzen 3
## 169 33:38.8 +45.1 33:11.8 2014-2015 Hochfilzen 3
## 170 33:42.5 +48.8 33:24.5 2014-2015 Hochfilzen 3
## 171 33:49.9 +56.2 33:26.9 2014-2015 Hochfilzen 3
## 172 33:50.2 +56.5 33:16.2 2014-2015 Hochfilzen 3
## 173 33:56.3 +1:02.6 33:27.3 2014-2015 Hochfilzen 3
## 174 34:00.9 +1:07.2 33:02.9 2014-2015 Hochfilzen 3
## 175 34:03.2 +1:09.5 33:10.2 2014-2015 Hochfilzen 3
## 176 34:07.2 +1:13.5 33:11.2 2014-2015 Hochfilzen 3
## 177 34:31.4 +1:37.7 34:00.4 2014-2015 Hochfilzen 3
## 178 34:39.9 +1:46.2 32:41.9 2014-2015 Hochfilzen 3
## 179 34:49.3 +1:55.6 33:34.3 2014-2015 Hochfilzen 3
## 180 34:49.4 +1:55.7 33:34.4 2014-2015 Hochfilzen 3
## 181 34:57.6 +2:03.9 33:23.6 2014-2015 Hochfilzen 3
## 182 34:57.6 +2:03.9 34:09.6 2014-2015 Hochfilzen 3
## 183 34:59.4 +2:05.7 34:20.4 2014-2015 Hochfilzen 3
## 184 35:20.8 +2:27.1 34:08.8 2014-2015 Hochfilzen 3
## 185 35:23.7 +2:30.0 33:16.7 2014-2015 Hochfilzen 3
## 186 35:28.2 +2:34.5 34:30.2 2014-2015 Hochfilzen 3
## 187 35:29.1 +2:35.4 34:26.1 2014-2015 Hochfilzen 3
## 188 35:29.3 +2:35.6 34:49.3 2014-2015 Hochfilzen 3
## 189 35:32.4 +2:38.7 33:56.4 2014-2015 Hochfilzen 3
## 190 35:33.3 +2:39.6 33:53.3 2014-2015 Hochfilzen 3
## 191 35:34.5 +2:40.8 34:27.5 2014-2015 Hochfilzen 3
## 192 35:35.1 +2:41.4 34:10.1 2014-2015 Hochfilzen 3
## 193 35:37.2 +2:43.5 33:46.2 2014-2015 Hochfilzen 3
## 194 35:42.0 +2:48.3 33:56.0 2014-2015 Hochfilzen 3
## 195 35:46.9 +2:53.2 34:48.9 2014-2015 Hochfilzen 3
## 196 35:53.5 +2:59.8 34:32.5 2014-2015 Hochfilzen 3
## 197 35:54.3 +3:00.6 2014-2015 Hochfilzen 3
## 198 35:57.2 +3:03.5 34:20.2 2014-2015 Hochfilzen 3
## 199 36:04.8 +3:11.1 34:10.8 2014-2015 Hochfilzen 3
## 200 36:23.8 +3:30.1 34:04.8 2014-2015 Hochfilzen 3
## 201 36:31.9 +3:38.2 34:43.9 2014-2015 Hochfilzen 3
## 202 36:34.3 +3:40.6 34:39.3 2014-2015 Hochfilzen 3
## 203 36:34.9 +3:41.2 34:58.9 2014-2015 Hochfilzen 3
## 204 36:40.6 +3:46.9 34:18.6 2014-2015 Hochfilzen 3
## 205 36:48.8 +3:55.1 34:22.8 2014-2015 Hochfilzen 3
## 206 37:08.0 +4:14.3 35:28.0 2014-2015 Hochfilzen 3
## 207 37:15.6 +4:21.9 35:01.6 2014-2015 Hochfilzen 3
## 208 37:20.2 +4:26.5 35:38.2 2014-2015 Hochfilzen 3
## 209 37:30.7 +4:37.0 35:05.7 2014-2015 Hochfilzen 3
## 210 37:38.9 +4:45.2 35:25.9 2014-2015 Hochfilzen 3
## 211 37:49.6 +4:55.9 35:26.6 2014-2015 Hochfilzen 3
## 212 38:13.3 +5:19.6 36:16.3 2014-2015 Hochfilzen 3
## 213 38:22.0 +5:28.3 35:57.0 2014-2015 Hochfilzen 3
## 214 38:31.0 +5:37.3 36:08.0 2014-2015 Hochfilzen 3
## 215 38:34.1 +5:40.4 36:46.1 2014-2015 Hochfilzen 3
## 216 38:47.8 +5:54.1 36:44.8 2014-2015 Hochfilzen 3
## 217 38:56.2 +6:02.5 37:24.2 2014-2015 Hochfilzen 3
## 218 39:04.3 +6:10.6 36:44.3 2014-2015 Hochfilzen 3
## 219 40:33.6 +7:39.9 38:19.6 2014-2015 Hochfilzen 3
## 220 40:37.0 +7:43.3 38:17.0 2014-2015 Hochfilzen 3
## 221 2014-2015 Hochfilzen 3
## 222 2014-2015 Hochfilzen 3
## 223 2014-2015 Hochfilzen 3
## 224 24:34.9 <NA> 2014-2015 Hochfilzen 4
## 225 24:49.2 +14.3 <NA> 2014-2015 Hochfilzen 4
## 226 24:52.8 +17.9 <NA> 2014-2015 Hochfilzen 4
## 227 24:57.4 +22.5 <NA> 2014-2015 Hochfilzen 4
## 228 24:57.8 +22.9 <NA> 2014-2015 Hochfilzen 4
## 229 25:01.6 +26.7 <NA> 2014-2015 Hochfilzen 4
## 230 25:02.7 +27.8 <NA> 2014-2015 Hochfilzen 4
## 231 25:04.1 +29.2 <NA> 2014-2015 Hochfilzen 4
## 232 25:05.8 +30.9 <NA> 2014-2015 Hochfilzen 4
## 233 25:08.9 +34.0 <NA> 2014-2015 Hochfilzen 4
## 234 25:13.5 +38.6 <NA> 2014-2015 Hochfilzen 4
## 235 25:14.0 +39.1 <NA> 2014-2015 Hochfilzen 4
## 236 25:14.5 +39.6 <NA> 2014-2015 Hochfilzen 4
## 237 25:23.3 +48.4 <NA> 2014-2015 Hochfilzen 4
## 238 25:28.0 +53.1 <NA> 2014-2015 Hochfilzen 4
## 239 25:30.7 +55.8 <NA> 2014-2015 Hochfilzen 4
## 240 25:32.5 +57.6 <NA> 2014-2015 Hochfilzen 4
## 241 25:32.5 +57.6 <NA> 2014-2015 Hochfilzen 4
## 242 25:32.6 +57.7 <NA> 2014-2015 Hochfilzen 4
## 243 25:38.3 +1:03.4 <NA> 2014-2015 Hochfilzen 4
## 244 25:42.2 +1:07.3 <NA> 2014-2015 Hochfilzen 4
## 245 25:46.6 +1:11.7 <NA> 2014-2015 Hochfilzen 4
## 246 25:47.3 +1:12.4 <NA> 2014-2015 Hochfilzen 4
## 247 25:49.4 +1:14.5 <NA> 2014-2015 Hochfilzen 4
## 248 25:50.0 +1:15.1 <NA> 2014-2015 Hochfilzen 4
## 249 25:55.6 +1:20.7 <NA> 2014-2015 Hochfilzen 4
## 250 25:59.5 +1:24.6 <NA> 2014-2015 Hochfilzen 4
## 251 26:07.2 +1:32.3 <NA> 2014-2015 Hochfilzen 4
## 252 26:09.0 +1:34.1 <NA> 2014-2015 Hochfilzen 4
## 253 26:11.1 +1:36.2 <NA> 2014-2015 Hochfilzen 4
## 254 26:11.2 +1:36.3 <NA> 2014-2015 Hochfilzen 4
## 255 26:11.6 +1:36.7 <NA> 2014-2015 Hochfilzen 4
## 256 26:14.9 +1:40.0 <NA> 2014-2015 Hochfilzen 4
## 257 26:15.0 +1:40.1 <NA> 2014-2015 Hochfilzen 4
## 258 26:16.8 +1:41.9 <NA> 2014-2015 Hochfilzen 4
## 259 26:21.3 +1:46.4 <NA> 2014-2015 Hochfilzen 4
## 260 26:22.4 +1:47.5 <NA> 2014-2015 Hochfilzen 4
## 261 26:22.6 +1:47.7 <NA> 2014-2015 Hochfilzen 4
## 262 26:25.5 +1:50.6 <NA> 2014-2015 Hochfilzen 4
## 263 26:27.7 +1:52.8 <NA> 2014-2015 Hochfilzen 4
## 264 26:29.0 +1:54.1 <NA> 2014-2015 Hochfilzen 4
## 265 26:29.5 +1:54.6 <NA> 2014-2015 Hochfilzen 4
## 266 26:31.8 +1:56.9 <NA> 2014-2015 Hochfilzen 4
## 267 26:31.9 +1:57.0 <NA> 2014-2015 Hochfilzen 4
## 268 26:33.0 +1:58.1 <NA> 2014-2015 Hochfilzen 4
## 269 26:37.4 +2:02.5 <NA> 2014-2015 Hochfilzen 4
## 270 26:42.0 +2:07.1 <NA> 2014-2015 Hochfilzen 4
## 271 26:48.1 +2:13.2 <NA> 2014-2015 Hochfilzen 4
## 272 26:48.8 +2:13.9 <NA> 2014-2015 Hochfilzen 4
## 273 26:49.1 +2:14.2 <NA> 2014-2015 Hochfilzen 4
## 274 26:53.9 +2:19.0 <NA> 2014-2015 Hochfilzen 4
## 275 26:54.9 +2:20.0 <NA> 2014-2015 Hochfilzen 4
## 276 26:55.3 +2:20.4 <NA> 2014-2015 Hochfilzen 4
## 277 26:56.4 +2:21.5 <NA> 2014-2015 Hochfilzen 4
## 278 26:57.4 +2:22.5 <NA> 2014-2015 Hochfilzen 4
## 279 26:57.7 +2:22.8 <NA> 2014-2015 Hochfilzen 4
## 280 26:59.5 +2:24.6 <NA> 2014-2015 Hochfilzen 4
## 281 26:59.6 +2:24.7 <NA> 2014-2015 Hochfilzen 4
## 282 27:00.8 +2:25.9 <NA> 2014-2015 Hochfilzen 4
## 283 27:02.1 +2:27.2 <NA> 2014-2015 Hochfilzen 4
## 284 27:04.0 +2:29.1 <NA> 2014-2015 Hochfilzen 4
## 285 27:04.5 +2:29.6 <NA> 2014-2015 Hochfilzen 4
## 286 27:06.0 +2:31.1 <NA> 2014-2015 Hochfilzen 4
## 287 27:12.8 +2:37.9 <NA> 2014-2015 Hochfilzen 4
## 288 27:13.2 +2:38.3 <NA> 2014-2015 Hochfilzen 4
## 289 27:13.9 +2:39.0 <NA> 2014-2015 Hochfilzen 4
## 290 27:18.0 +2:43.1 <NA> 2014-2015 Hochfilzen 4
## 291 27:18.5 +2:43.6 <NA> 2014-2015 Hochfilzen 4
## 292 27:23.5 +2:48.6 <NA> 2014-2015 Hochfilzen 4
## 293 27:26.0 +2:51.1 <NA> 2014-2015 Hochfilzen 4
## 294 27:26.1 +2:51.2 <NA> 2014-2015 Hochfilzen 4
## 295 27:28.6 +2:53.7 <NA> 2014-2015 Hochfilzen 4
## 296 27:29.9 +2:55.0 <NA> 2014-2015 Hochfilzen 4
## 297 27:30.3 +2:55.4 <NA> 2014-2015 Hochfilzen 4
## 298 27:35.5 +3:00.6 <NA> 2014-2015 Hochfilzen 4
## 299 27:36.4 +3:01.5 <NA> 2014-2015 Hochfilzen 4
## 300 27:36.9 +3:02.0 <NA> 2014-2015 Hochfilzen 4
## 301 27:37.1 +3:02.2 <NA> 2014-2015 Hochfilzen 4
## 302 27:40.0 +3:05.1 <NA> 2014-2015 Hochfilzen 4
## 303 27:41.6 +3:06.7 <NA> 2014-2015 Hochfilzen 4
## 304 27:42.7 +3:07.8 <NA> 2014-2015 Hochfilzen 4
## 305 27:42.8 +3:07.9 <NA> 2014-2015 Hochfilzen 4
## 306 27:46.6 +3:11.7 <NA> 2014-2015 Hochfilzen 4
## 307 27:47.7 +3:12.8 <NA> 2014-2015 Hochfilzen 4
## 308 27:53.4 +3:18.5 <NA> 2014-2015 Hochfilzen 4
## 309 27:56.0 +3:21.1 <NA> 2014-2015 Hochfilzen 4
## 310 27:57.6 +3:22.7 <NA> 2014-2015 Hochfilzen 4
## 311 27:58.1 +3:23.2 <NA> 2014-2015 Hochfilzen 4
## 312 28:03.7 +3:28.8 <NA> 2014-2015 Hochfilzen 4
## 313 28:09.7 +3:34.8 <NA> 2014-2015 Hochfilzen 4
## 314 28:12.6 +3:37.7 <NA> 2014-2015 Hochfilzen 4
## 315 28:13.3 +3:38.4 <NA> 2014-2015 Hochfilzen 4
## 316 28:17.2 +3:42.3 <NA> 2014-2015 Hochfilzen 4
## 317 28:22.3 +3:47.4 <NA> 2014-2015 Hochfilzen 4
## 318 28:27.3 +3:52.4 <NA> 2014-2015 Hochfilzen 4
## 319 28:31.9 +3:57.0 <NA> 2014-2015 Hochfilzen 4
## 320 28:32.2 +3:57.3 <NA> 2014-2015 Hochfilzen 4
## 321 28:46.8 +4:11.9 <NA> 2014-2015 Hochfilzen 4
## 322 28:53.2 +4:18.3 <NA> 2014-2015 Hochfilzen 4
## 323 29:01.8 +4:26.9 <NA> 2014-2015 Hochfilzen 4
## 324 29:21.4 +4:46.5 <NA> 2014-2015 Hochfilzen 4
## 325 29:24.5 +4:49.6 <NA> 2014-2015 Hochfilzen 4
## 326 29:25.2 +4:50.3 <NA> 2014-2015 Hochfilzen 4
## 327 30:07.5 +5:32.6 <NA> 2014-2015 Hochfilzen 4
## 328 30:24.7 +5:49.8 <NA> 2014-2015 Hochfilzen 4
## 329 38:09.8 <NA> 2014-2015 Khanty-Mansiysk 5
## 330 38:20.1 +10.3 <NA> 2014-2015 Khanty-Mansiysk 5
## 331 38:22.3 +12.5 <NA> 2014-2015 Khanty-Mansiysk 5
## 332 38:42.3 +32.5 <NA> 2014-2015 Khanty-Mansiysk 5
## 333 38:45.0 +35.2 <NA> 2014-2015 Khanty-Mansiysk 5
## 334 38:46.0 +36.2 <NA> 2014-2015 Khanty-Mansiysk 5
## 335 38:49.2 +39.4 <NA> 2014-2015 Khanty-Mansiysk 5
## 336 38:51.8 +42.0 <NA> 2014-2015 Khanty-Mansiysk 5
## 337 39:01.6 +51.8 <NA> 2014-2015 Khanty-Mansiysk 5
## 338 39:04.0 +54.2 <NA> 2014-2015 Khanty-Mansiysk 5
## 339 39:04.6 +54.8 <NA> 2014-2015 Khanty-Mansiysk 5
## 340 39:07.4 +57.6 <NA> 2014-2015 Khanty-Mansiysk 5
## 341 39:13.7 +1:03.9 <NA> 2014-2015 Khanty-Mansiysk 5
## 342 39:22.7 +1:12.9 <NA> 2014-2015 Khanty-Mansiysk 5
## 343 39:27.9 +1:18.1 <NA> 2014-2015 Khanty-Mansiysk 5
## 344 39:30.8 +1:21.0 <NA> 2014-2015 Khanty-Mansiysk 5
## 345 39:30.8 +1:21.0 <NA> 2014-2015 Khanty-Mansiysk 5
## 346 39:36.6 +1:26.8 <NA> 2014-2015 Khanty-Mansiysk 5
## 347 39:48.6 +1:38.8 <NA> 2014-2015 Khanty-Mansiysk 5
## 348 39:50.0 +1:40.2 <NA> 2014-2015 Khanty-Mansiysk 5
## 349 39:58.5 +1:48.7 <NA> 2014-2015 Khanty-Mansiysk 5
## 350 40:00.9 +1:51.1 <NA> 2014-2015 Khanty-Mansiysk 5
## 351 40:04.9 +1:55.1 <NA> 2014-2015 Khanty-Mansiysk 5
## 352 40:11.7 +2:01.9 <NA> 2014-2015 Khanty-Mansiysk 5
## 353 40:18.5 +2:08.7 <NA> 2014-2015 Khanty-Mansiysk 5
## 354 40:25.7 +2:15.9 <NA> 2014-2015 Khanty-Mansiysk 5
## 355 40:32.5 +2:22.7 <NA> 2014-2015 Khanty-Mansiysk 5
## 356 40:32.9 +2:23.1 <NA> 2014-2015 Khanty-Mansiysk 5
## 357 41:20.1 +3:10.3 <NA> 2014-2015 Khanty-Mansiysk 5
## 358 41:25.8 +3:16.0 <NA> 2014-2015 Khanty-Mansiysk 5
## 359 32:04.9 31:30.9 2014-2015 Khanty-Mansiysk 6
## 360 32:28.9 +24.0 32:10.9 2014-2015 Khanty-Mansiysk 6
## 361 32:40.6 +35.7 32:27.6 2014-2015 Khanty-Mansiysk 6
## 362 32:45.2 +40.3 32:45.2 2014-2015 Khanty-Mansiysk 6
## 363 32:54.1 +49.2 32:05.1 2014-2015 Khanty-Mansiysk 6
## 364 33:03.0 +58.1 32:29.0 2014-2015 Khanty-Mansiysk 6
## 365 33:15.7 +1:10.8 32:39.7 2014-2015 Khanty-Mansiysk 6
## 366 33:39.8 +1:34.9 33:20.8 2014-2015 Khanty-Mansiysk 6
## 367 33:48.4 +1:43.5 32:55.4 2014-2015 Khanty-Mansiysk 6
## 368 33:50.9 +1:46.0 32:41.9 2014-2015 Khanty-Mansiysk 6
## 369 33:51.8 +1:46.9 33:06.8 2014-2015 Khanty-Mansiysk 6
## 370 33:51.8 +1:46.9 31:58.8 2014-2015 Khanty-Mansiysk 6
## 371 33:53.4 +1:48.5 32:42.4 2014-2015 Khanty-Mansiysk 6
## 372 33:53.7 +1:48.8 31:53.7 2014-2015 Khanty-Mansiysk 6
## 373 33:54.8 +1:49.9 32:38.8 2014-2015 Khanty-Mansiysk 6
## 374 33:56.4 +1:51.5 32:26.4 2014-2015 Khanty-Mansiysk 6
## 375 34:01.6 +1:56.7 32:47.6 2014-2015 Khanty-Mansiysk 6
## 376 34:08.7 +2:03.8 32:53.7 2014-2015 Khanty-Mansiysk 6
## 377 34:09.6 +2:04.7 32:55.6 2014-2015 Khanty-Mansiysk 6
## 378 34:15.0 +2:10.1 33:25.0 2014-2015 Khanty-Mansiysk 6
## 379 34:16.8 +2:11.9 32:40.8 2014-2015 Khanty-Mansiysk 6
## 380 34:18.7 +2:13.8 32:24.7 2014-2015 Khanty-Mansiysk 6
## 381 34:26.3 +2:21.4 33:02.3 2014-2015 Khanty-Mansiysk 6
## 382 34:28.2 +2:23.3 32:32.2 2014-2015 Khanty-Mansiysk 6
## 383 34:29.0 +2:24.1 33:12.0 2014-2015 Khanty-Mansiysk 6
## 384 34:30.0 +2:25.1 33:06.0 2014-2015 Khanty-Mansiysk 6
## 385 34:31.3 +2:26.4 33:45.3 2014-2015 Khanty-Mansiysk 6
## 386 34:36.0 +2:31.1 32:47.0 2014-2015 Khanty-Mansiysk 6
## 387 34:42.2 +2:37.3 33:26.2 2014-2015 Khanty-Mansiysk 6
## 388 34:45.3 +2:40.4 32:59.3 2014-2015 Khanty-Mansiysk 6
## 389 34:48.3 +2:43.4 34:00.3 2014-2015 Khanty-Mansiysk 6
## 390 34:56.1 +2:51.2 33:43.1 2014-2015 Khanty-Mansiysk 6
## 391 35:05.3 +3:00.4 33:38.3 2014-2015 Khanty-Mansiysk 6
## 392 35:06.5 +3:01.6 34:01.5 2014-2015 Khanty-Mansiysk 6
## 393 35:26.4 +3:21.5 33:36.4 2014-2015 Khanty-Mansiysk 6
## 394 35:29.7 +3:24.8 34:02.7 2014-2015 Khanty-Mansiysk 6
## 395 35:34.0 +3:29.1 34:17.0 2014-2015 Khanty-Mansiysk 6
## 396 35:35.5 +3:30.6 33:54.5 2014-2015 Khanty-Mansiysk 6
## 397 35:37.8 +3:32.9 34:10.8 2014-2015 Khanty-Mansiysk 6
## 398 35:38.1 +3:33.2 34:06.1 2014-2015 Khanty-Mansiysk 6
## 399 35:49.4 +3:44.5 34:57.4 2014-2015 Khanty-Mansiysk 6
## 400 35:51.2 +3:46.3 34:18.2 2014-2015 Khanty-Mansiysk 6
## 401 35:58.8 +3:53.9 34:02.8 2014-2015 Khanty-Mansiysk 6
## 402 36:04.0 +3:59.1 34:00.0 2014-2015 Khanty-Mansiysk 6
## 403 36:14.2 +4:09.3 34:55.2 2014-2015 Khanty-Mansiysk 6
## 404 36:19.1 +4:14.2 34:59.1 2014-2015 Khanty-Mansiysk 6
## 405 36:27.7 +4:22.8 34:24.7 2014-2015 Khanty-Mansiysk 6
## 406 36:32.8 +4:27.9 34:37.8 2014-2015 Khanty-Mansiysk 6
## 407 36:33.5 +4:28.6 35:09.5 2014-2015 Khanty-Mansiysk 6
## 408 36:43.3 +4:38.4 34:45.3 2014-2015 Khanty-Mansiysk 6
## 409 36:50.1 +4:45.2 34:50.1 2014-2015 Khanty-Mansiysk 6
## 410 37:02.1 +4:57.2 35:13.1 2014-2015 Khanty-Mansiysk 6
## 411 37:11.6 +5:06.7 35:14.6 2014-2015 Khanty-Mansiysk 6
## 412 37:18.0 +5:13.1 35:26.0 2014-2015 Khanty-Mansiysk 6
## 413 37:27.4 +5:22.5 35:37.4 2014-2015 Khanty-Mansiysk 6
## 414 2014-2015 Khanty-Mansiysk 6
## 415 2014-2015 Khanty-Mansiysk 6
## 416 2014-2015 Khanty-Mansiysk 6
## 417 2014-2015 Khanty-Mansiysk 6
## 418 2014-2015 Khanty-Mansiysk 6
## 419 23:47.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 420 24:00.0 +13.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 421 24:05.3 +18.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 422 24:05.6 +18.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 423 24:21.0 +34.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 424 24:21.4 +34.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 425 24:22.5 +35.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 426 24:31.5 +44.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 427 24:32.8 +45.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 428 24:35.3 +48.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 429 24:35.8 +48.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 430 24:37.1 +50.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 431 24:38.6 +51.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 432 24:39.0 +52.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 433 24:39.9 +52.9 <NA> 2014-2015 Khanty-Mansiysk 7
## 434 24:51.7 +1:04.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 435 24:52.1 +1:05.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 436 24:56.3 +1:09.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 437 24:57.6 +1:10.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 438 24:59.7 +1:12.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 439 25:01.0 +1:14.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 440 25:01.4 +1:14.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 441 25:01.9 +1:14.9 <NA> 2014-2015 Khanty-Mansiysk 7
## 442 25:02.5 +1:15.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 443 25:02.9 +1:15.9 <NA> 2014-2015 Khanty-Mansiysk 7
## 444 25:04.2 +1:17.2 <NA> 2014-2015 Khanty-Mansiysk 7
## 445 25:04.3 +1:17.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 446 25:06.0 +1:19.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 447 25:06.8 +1:19.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 448 25:10.5 +1:23.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 449 25:10.6 +1:23.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 450 25:11.0 +1:24.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 451 25:13.6 +1:26.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 452 25:13.7 +1:26.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 453 25:14.4 +1:27.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 454 25:16.8 +1:29.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 455 25:19.0 +1:32.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 456 25:19.7 +1:32.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 457 25:20.3 +1:33.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 458 25:23.0 +1:36.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 459 25:28.3 +1:41.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 460 25:28.5 +1:41.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 461 25:33.4 +1:46.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 462 25:36.1 +1:49.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 463 25:36.1 +1:49.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 464 25:36.7 +1:49.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 465 25:37.0 +1:50.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 466 25:37.1 +1:50.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 467 25:39.3 +1:52.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 468 25:39.8 +1:52.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 469 25:41.2 +1:54.2 <NA> 2014-2015 Khanty-Mansiysk 7
## 470 25:41.9 +1:54.9 <NA> 2014-2015 Khanty-Mansiysk 7
## 471 25:43.0 +1:56.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 472 25:43.1 +1:56.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 473 25:44.3 +1:57.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 474 25:45.4 +1:58.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 475 25:47.1 +2:00.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 476 25:47.1 +2:00.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 477 25:50.3 +2:03.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 478 25:50.8 +2:03.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 479 25:53.7 +2:06.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 480 25:54.0 +2:07.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 481 25:58.5 +2:11.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 482 26:01.3 +2:14.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 483 26:02.3 +2:15.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 484 26:04.4 +2:17.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 485 26:06.2 +2:19.2 <NA> 2014-2015 Khanty-Mansiysk 7
## 486 26:12.1 +2:25.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 487 26:15.6 +2:28.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 488 26:17.8 +2:30.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 489 26:20.6 +2:33.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 490 26:22.5 +2:35.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 491 26:33.7 +2:46.7 <NA> 2014-2015 Khanty-Mansiysk 7
## 492 26:36.5 +2:49.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 493 26:37.4 +2:50.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 494 26:47.4 +3:00.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 495 26:53.5 +3:06.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 496 26:59.4 +3:12.4 <NA> 2014-2015 Khanty-Mansiysk 7
## 497 27:01.3 +3:14.3 <NA> 2014-2015 Khanty-Mansiysk 7
## 498 27:13.2 +3:26.2 <NA> 2014-2015 Khanty-Mansiysk 7
## 499 27:15.9 +3:28.9 <NA> 2014-2015 Khanty-Mansiysk 7
## 500 27:26.8 +3:39.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 501 27:29.5 +3:42.5 <NA> 2014-2015 Khanty-Mansiysk 7
## 502 27:47.6 +4:00.6 <NA> 2014-2015 Khanty-Mansiysk 7
## 503 27:51.8 +4:04.8 <NA> 2014-2015 Khanty-Mansiysk 7
## 504 28:11.1 +4:24.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 505 28:18.1 +4:31.1 <NA> 2014-2015 Khanty-Mansiysk 7
## 506 29:57.0 +6:10.0 <NA> 2014-2015 Khanty-Mansiysk 7
## 507 <NA> 2014-2015 Khanty-Mansiysk 7
## 508 <NA> 2014-2015 Khanty-Mansiysk 7
## 509 47:29.4 <NA> 2014-2015 Kontiolahti 8
## 510 47:50.3 +20.9 <NA> 2014-2015 Kontiolahti 8
## 511 48:09.9 +40.5 <NA> 2014-2015 Kontiolahti 8
## 512 48:15.1 +45.7 <NA> 2014-2015 Kontiolahti 8
## 513 48:25.4 +56.0 <NA> 2014-2015 Kontiolahti 8
## 514 48:41.5 +1:12.1 <NA> 2014-2015 Kontiolahti 8
## 515 48:43.6 +1:14.2 <NA> 2014-2015 Kontiolahti 8
## 516 48:44.3 +1:14.9 <NA> 2014-2015 Kontiolahti 8
## 517 49:12.3 +1:42.9 <NA> 2014-2015 Kontiolahti 8
## 518 49:14.9 +1:45.5 <NA> 2014-2015 Kontiolahti 8
## 519 49:17.9 +1:48.5 <NA> 2014-2015 Kontiolahti 8
## 520 49:24.7 +1:55.3 <NA> 2014-2015 Kontiolahti 8
## 521 49:27.3 +1:57.9 <NA> 2014-2015 Kontiolahti 8
## 522 49:32.1 +2:02.7 <NA> 2014-2015 Kontiolahti 8
## 523 49:35.3 +2:05.9 <NA> 2014-2015 Kontiolahti 8
## 524 49:36.5 +2:07.1 <NA> 2014-2015 Kontiolahti 8
## 525 49:36.9 +2:07.5 <NA> 2014-2015 Kontiolahti 8
## 526 49:45.0 +2:15.6 <NA> 2014-2015 Kontiolahti 8
## 527 50:07.7 +2:38.3 <NA> 2014-2015 Kontiolahti 8
## 528 50:17.1 +2:47.7 <NA> 2014-2015 Kontiolahti 8
## 529 50:29.0 +2:59.6 <NA> 2014-2015 Kontiolahti 8
## 530 50:35.4 +3:06.0 <NA> 2014-2015 Kontiolahti 8
## 531 50:36.3 +3:06.9 <NA> 2014-2015 Kontiolahti 8
## 532 50:39.4 +3:10.0 <NA> 2014-2015 Kontiolahti 8
## 533 50:43.0 +3:13.6 <NA> 2014-2015 Kontiolahti 8
## 534 50:43.9 +3:14.5 <NA> 2014-2015 Kontiolahti 8
## 535 50:55.6 +3:26.2 <NA> 2014-2015 Kontiolahti 8
## 536 51:00.1 +3:30.7 <NA> 2014-2015 Kontiolahti 8
## 537 51:17.1 +3:47.7 <NA> 2014-2015 Kontiolahti 8
## 538 51:21.4 +3:52.0 <NA> 2014-2015 Kontiolahti 8
## 539 51:22.1 +3:52.7 <NA> 2014-2015 Kontiolahti 8
## 540 51:25.3 +3:55.9 <NA> 2014-2015 Kontiolahti 8
## 541 51:25.5 +3:56.1 <NA> 2014-2015 Kontiolahti 8
## 542 51:26.7 +3:57.3 <NA> 2014-2015 Kontiolahti 8
## 543 51:40.2 +4:10.8 <NA> 2014-2015 Kontiolahti 8
## 544 51:45.4 +4:16.0 <NA> 2014-2015 Kontiolahti 8
## 545 51:47.3 +4:17.9 <NA> 2014-2015 Kontiolahti 8
## 546 51:49.0 +4:19.6 <NA> 2014-2015 Kontiolahti 8
## 547 51:49.5 +4:20.1 <NA> 2014-2015 Kontiolahti 8
## 548 51:55.2 +4:25.8 <NA> 2014-2015 Kontiolahti 8
## 549 51:57.2 +4:27.8 <NA> 2014-2015 Kontiolahti 8
## 550 52:09.4 +4:40.0 <NA> 2014-2015 Kontiolahti 8
## 551 52:11.3 +4:41.9 <NA> 2014-2015 Kontiolahti 8
## 552 52:32.6 +5:03.2 <NA> 2014-2015 Kontiolahti 8
## 553 52:41.7 +5:12.3 <NA> 2014-2015 Kontiolahti 8
## 554 52:42.0 +5:12.6 <NA> 2014-2015 Kontiolahti 8
## 555 52:44.9 +5:15.5 <NA> 2014-2015 Kontiolahti 8
## 556 52:53.1 +5:23.7 <NA> 2014-2015 Kontiolahti 8
## 557 52:53.4 +5:24.0 <NA> 2014-2015 Kontiolahti 8
## 558 52:54.4 +5:25.0 <NA> 2014-2015 Kontiolahti 8
## 559 52:55.4 +5:26.0 <NA> 2014-2015 Kontiolahti 8
## 560 53:10.9 +5:41.5 <NA> 2014-2015 Kontiolahti 8
## 561 53:13.0 +5:43.6 <NA> 2014-2015 Kontiolahti 8
## 562 53:14.0 +5:44.6 <NA> 2014-2015 Kontiolahti 8
## 563 53:19.0 +5:49.6 <NA> 2014-2015 Kontiolahti 8
## 564 53:19.4 +5:50.0 <NA> 2014-2015 Kontiolahti 8
## 565 53:20.9 +5:51.5 <NA> 2014-2015 Kontiolahti 8
## 566 53:22.5 +5:53.1 <NA> 2014-2015 Kontiolahti 8
## 567 53:28.5 +5:59.1 <NA> 2014-2015 Kontiolahti 8
## 568 53:42.0 +6:12.6 <NA> 2014-2015 Kontiolahti 8
## 569 53:45.4 +6:16.0 <NA> 2014-2015 Kontiolahti 8
## 570 53:46.9 +6:17.5 <NA> 2014-2015 Kontiolahti 8
## 571 53:49.0 +6:19.6 <NA> 2014-2015 Kontiolahti 8
## 572 53:55.7 +6:26.3 <NA> 2014-2015 Kontiolahti 8
## 573 53:57.0 +6:27.6 <NA> 2014-2015 Kontiolahti 8
## 574 54:00.6 +6:31.2 <NA> 2014-2015 Kontiolahti 8
## 575 54:01.9 +6:32.5 <NA> 2014-2015 Kontiolahti 8
## 576 54:05.8 +6:36.4 <NA> 2014-2015 Kontiolahti 8
## 577 54:05.9 +6:36.5 <NA> 2014-2015 Kontiolahti 8
## 578 54:06.2 +6:36.8 <NA> 2014-2015 Kontiolahti 8
## 579 54:10.0 +6:40.6 <NA> 2014-2015 Kontiolahti 8
## 580 54:19.5 +6:50.1 <NA> 2014-2015 Kontiolahti 8
## 581 54:23.6 +6:54.2 <NA> 2014-2015 Kontiolahti 8
## 582 54:24.2 +6:54.8 <NA> 2014-2015 Kontiolahti 8
## 583 54:33.0 +7:03.6 <NA> 2014-2015 Kontiolahti 8
## 584 54:40.7 +7:11.3 <NA> 2014-2015 Kontiolahti 8
## 585 54:44.5 +7:15.1 <NA> 2014-2015 Kontiolahti 8
## 586 54:48.4 +7:19.0 <NA> 2014-2015 Kontiolahti 8
## 587 54:52.6 +7:23.2 <NA> 2014-2015 Kontiolahti 8
## 588 54:56.9 +7:27.5 <NA> 2014-2015 Kontiolahti 8
## 589 54:58.9 +7:29.5 <NA> 2014-2015 Kontiolahti 8
## 590 54:58.9 +7:29.5 <NA> 2014-2015 Kontiolahti 8
## 591 55:04.8 +7:35.4 <NA> 2014-2015 Kontiolahti 8
## 592 55:09.1 +7:39.7 <NA> 2014-2015 Kontiolahti 8
## 593 55:17.5 +7:48.1 <NA> 2014-2015 Kontiolahti 8
## 594 55:26.0 +7:56.6 <NA> 2014-2015 Kontiolahti 8
## 595 55:43.4 +8:14.0 <NA> 2014-2015 Kontiolahti 8
## 596 55:45.9 +8:16.5 <NA> 2014-2015 Kontiolahti 8
## 597 55:58.1 +8:28.7 <NA> 2014-2015 Kontiolahti 8
## 598 56:08.3 +8:38.9 <NA> 2014-2015 Kontiolahti 8
## 599 56:11.3 +8:41.9 <NA> 2014-2015 Kontiolahti 8
## 600 56:17.8 +8:48.4 <NA> 2014-2015 Kontiolahti 8
## 601 56:22.9 +8:53.5 <NA> 2014-2015 Kontiolahti 8
## 602 56:28.8 +8:59.4 <NA> 2014-2015 Kontiolahti 8
## 603 56:50.4 +9:21.0 <NA> 2014-2015 Kontiolahti 8
## 604 57:09.5 +9:40.1 <NA> 2014-2015 Kontiolahti 8
## 605 57:14.0 +9:44.6 <NA> 2014-2015 Kontiolahti 8
## 606 57:24.9 +9:55.5 <NA> 2014-2015 Kontiolahti 8
## 607 57:34.1 +10:04.7 <NA> 2014-2015 Kontiolahti 8
## 608 57:58.1 +10:28.7 <NA> 2014-2015 Kontiolahti 8
## 609 58:20.3 +10:50.9 <NA> 2014-2015 Kontiolahti 8
## 610 58:32.1 +11:02.7 <NA> 2014-2015 Kontiolahti 8
## 611 58:58.6 +11:29.2 <NA> 2014-2015 Kontiolahti 8
## 612 59:18.3 +11:48.9 <NA> 2014-2015 Kontiolahti 8
## 613 59:22.4 +11:53.0 <NA> 2014-2015 Kontiolahti 8
## 614 59:30.7 +12:01.3 <NA> 2014-2015 Kontiolahti 8
## 615 59:36.5 +12:07.1 <NA> 2014-2015 Kontiolahti 8
## 616 1:00:18.3 +12:48.9 <NA> 2014-2015 Kontiolahti 8
## 617 1:00:33.8 +13:04.4 <NA> 2014-2015 Kontiolahti 8
## 618 1:01:19.7 +13:50.3 <NA> 2014-2015 Kontiolahti 8
## 619 1:01:22.6 +13:53.2 <NA> 2014-2015 Kontiolahti 8
## 620 1:01:26.2 +13:56.8 <NA> 2014-2015 Kontiolahti 8
## 621 1:01:33.3 +14:03.9 <NA> 2014-2015 Kontiolahti 8
## 622 1:01:43.1 +14:13.7 <NA> 2014-2015 Kontiolahti 8
## 623 1:01:44.1 +14:14.7 <NA> 2014-2015 Kontiolahti 8
## 624 1:01:57.6 +14:28.2 <NA> 2014-2015 Kontiolahti 8
## 625 1:01:57.8 +14:28.4 <NA> 2014-2015 Kontiolahti 8
## 626 1:02:40.3 +15:10.9 <NA> 2014-2015 Kontiolahti 8
## 627 1:02:52.3 +15:22.9 <NA> 2014-2015 Kontiolahti 8
## 628 1:03:27.3 +15:57.9 <NA> 2014-2015 Kontiolahti 8
## 629 1:04:18.2 +16:48.8 <NA> 2014-2015 Kontiolahti 8
## 630 1:04:18.3 +16:48.9 <NA> 2014-2015 Kontiolahti 8
## 631 1:06:28.3 +18:58.9 <NA> 2014-2015 Kontiolahti 8
## 632 1:07:11.2 +19:41.8 <NA> 2014-2015 Kontiolahti 8
## 633 1:07:34.7 +20:05.3 <NA> 2014-2015 Kontiolahti 8
## 634 <NA> 2014-2015 Kontiolahti 8
## 635 <NA> 2014-2015 Kontiolahti 8
## 636 36:24.9 <NA> 2014-2015 Kontiolahti 9
## 637 36:25.9 +1.0 <NA> 2014-2015 Kontiolahti 9
## 638 36:28.6 +3.7 <NA> 2014-2015 Kontiolahti 9
## 639 36:35.1 +10.2 <NA> 2014-2015 Kontiolahti 9
## 640 36:43.3 +18.4 <NA> 2014-2015 Kontiolahti 9
## 641 36:43.6 +18.7 <NA> 2014-2015 Kontiolahti 9
## 642 36:47.7 +22.8 <NA> 2014-2015 Kontiolahti 9
## 643 36:50.5 +25.6 <NA> 2014-2015 Kontiolahti 9
## 644 36:52.8 +27.9 <NA> 2014-2015 Kontiolahti 9
## 645 36:55.8 +30.9 <NA> 2014-2015 Kontiolahti 9
## 646 36:56.6 +31.7 <NA> 2014-2015 Kontiolahti 9
## 647 36:59.6 +34.7 <NA> 2014-2015 Kontiolahti 9
## 648 36:59.9 +35.0 <NA> 2014-2015 Kontiolahti 9
## 649 37:10.5 +45.6 <NA> 2014-2015 Kontiolahti 9
## 650 37:10.5 +45.6 <NA> 2014-2015 Kontiolahti 9
## 651 37:10.6 +45.7 <NA> 2014-2015 Kontiolahti 9
## 652 37:15.5 +50.6 <NA> 2014-2015 Kontiolahti 9
## 653 37:16.5 +51.6 <NA> 2014-2015 Kontiolahti 9
## 654 37:27.8 +1:02.9 <NA> 2014-2015 Kontiolahti 9
## 655 37:29.7 +1:04.8 <NA> 2014-2015 Kontiolahti 9
## 656 37:33.2 +1:08.3 <NA> 2014-2015 Kontiolahti 9
## 657 37:39.9 +1:15.0 <NA> 2014-2015 Kontiolahti 9
## 658 37:44.3 +1:19.4 <NA> 2014-2015 Kontiolahti 9
## 659 37:53.4 +1:28.5 <NA> 2014-2015 Kontiolahti 9
## 660 37:59.0 +1:34.1 <NA> 2014-2015 Kontiolahti 9
## 661 38:09.6 +1:44.7 <NA> 2014-2015 Kontiolahti 9
## 662 38:10.8 +1:45.9 <NA> 2014-2015 Kontiolahti 9
## 663 38:21.9 +1:57.0 <NA> 2014-2015 Kontiolahti 9
## 664 38:40.0 +2:15.1 <NA> 2014-2015 Kontiolahti 9
## 665 39:26.9 +3:02.0 <NA> 2014-2015 Kontiolahti 9
## 666 30:47.9 30:17.9 2014-2015 Kontiolahti 10
## 667 31:04.9 +17.0 30:01.9 2014-2015 Kontiolahti 10
## 668 31:06.6 +18.7 30:41.6 2014-2015 Kontiolahti 10
## 669 31:08.3 +20.4 30:32.3 2014-2015 Kontiolahti 10
## 670 31:31.8 +43.9 30:22.8 2014-2015 Kontiolahti 10
## 671 31:33.8 +45.9 30:53.8 2014-2015 Kontiolahti 10
## 672 31:49.9 +1:02.0 30:59.9 2014-2015 Kontiolahti 10
## 673 31:52.4 +1:04.5 30:57.4 2014-2015 Kontiolahti 10
## 674 31:54.6 +1:06.7 31:10.6 2014-2015 Kontiolahti 10
## 675 31:56.5 +1:08.6 31:26.5 2014-2015 Kontiolahti 10
## 676 32:00.3 +1:12.4 0:35.3 2014-2015 Kontiolahti 10
## 677 32:04.8 +1:16.9 30:06.8 2014-2015 Kontiolahti 10
## 678 32:15.6 +1:27.7 32:03.6 2014-2015 Kontiolahti 10
## 679 32:20.3 +1:32.4 30:49.3 2014-2015 Kontiolahti 10
## 680 32:23.8 +1:35.9 30:36.8 2014-2015 Kontiolahti 10
## 681 32:24.9 +1:37.0 31:10.9 2014-2015 Kontiolahti 10
## 682 32:25.6 +1:37.7 31:25.6 2014-2015 Kontiolahti 10
## 683 32:29.8 +1:41.9 31:39.8 2014-2015 Kontiolahti 10
## 684 32:32.8 +1:44.9 30:51.8 2014-2015 Kontiolahti 10
## 685 32:36.0 +1:48.1 31:36.0 2014-2015 Kontiolahti 10
## 686 32:37.7 +1:49.8 31:16.7 2014-2015 Kontiolahti 10
## 687 32:40.8 +1:52.9 32:04.8 2014-2015 Kontiolahti 10
## 688 32:44.7 +1:56.8 31:30.7 2014-2015 Kontiolahti 10
## 689 32:44.7 +1:56.8 31:31.7 2014-2015 Kontiolahti 10
## 690 33:02.2 +2:14.3 31:14.2 2014-2015 Kontiolahti 10
## 691 33:07.6 +2:19.7 31:19.6 2014-2015 Kontiolahti 10
## 692 33:09.4 +2:21.5 31:37.4 2014-2015 Kontiolahti 10
## 693 33:18.1 +2:30.2 32:31.1 2014-2015 Kontiolahti 10
## 694 33:31.5 +2:43.6 31:53.5 2014-2015 Kontiolahti 10
## 695 33:32.1 +2:44.2 32:13.1 2014-2015 Kontiolahti 10
## 696 33:32.2 +2:44.3 33:32.2 2014-2015 Kontiolahti 10
## 697 33:34.6 +2:46.7 32:04.6 2014-2015 Kontiolahti 10
## 698 33:42.6 +2:54.7 32:47.6 2014-2015 Kontiolahti 10
## 699 33:45.5 +2:57.6 32:12.5 2014-2015 Kontiolahti 10
## 700 33:48.6 +3:00.7 32:32.6 2014-2015 Kontiolahti 10
## 701 33:50.5 +3:02.6 32:48.5 2014-2015 Kontiolahti 10
## 702 33:58.9 +3:11.0 32:07.9 2014-2015 Kontiolahti 10
## 703 33:59.4 +3:11.5 32:10.4 2014-2015 Kontiolahti 10
## 704 34:00.8 +3:12.9 31:59.8 2014-2015 Kontiolahti 10
## 705 34:11.5 +3:23.6 32:43.5 2014-2015 Kontiolahti 10
## 706 34:29.0 +3:41.1 32:42.0 2014-2015 Kontiolahti 10
## 707 34:32.4 +3:44.5 32:56.4 2014-2015 Kontiolahti 10
## 708 34:35.2 +3:47.3 32:29.2 2014-2015 Kontiolahti 10
## 709 34:41.6 +3:53.7 32:37.6 2014-2015 Kontiolahti 10
## 710 34:43.8 +3:55.9 32:14.8 2014-2015 Kontiolahti 10
## 711 34:55.5 +4:07.6 33:14.5 2014-2015 Kontiolahti 10
## 712 35:06.7 +4:18.8 33:30.7 2014-2015 Kontiolahti 10
## 713 35:08.2 +4:20.3 32:30.2 2014-2015 Kontiolahti 10
## 714 35:10.4 +4:22.5 32:52.4 2014-2015 Kontiolahti 10
## 715 35:12.0 +4:24.1 33:42.0 2014-2015 Kontiolahti 10
## 716 35:14.1 +4:26.2 33:17.1 2014-2015 Kontiolahti 10
## 717 35:21.6 +4:33.7 33:15.6 2014-2015 Kontiolahti 10
## 718 35:24.1 +4:36.2 33:04.1 2014-2015 Kontiolahti 10
## 719 35:33.3 +4:45.4 33:10.3 2014-2015 Kontiolahti 10
## 720 35:38.8 +4:50.9 33:57.8 2014-2015 Kontiolahti 10
## 721 36:24.2 +5:36.3 33:36.2 2014-2015 Kontiolahti 10
## 722 37:05.5 +6:17.6 34:18.5 2014-2015 Kontiolahti 10
## 723 37:36.1 +6:48.2 35:28.1 2014-2015 Kontiolahti 10
## 724 38:05.4 +7:17.5 35:20.4 2014-2015 Kontiolahti 10
## 725 38:30.5 +7:42.6 35:45.5 2014-2015 Kontiolahti 10
## 726 24:12.8 <NA> 2014-2015 Kontiolahti 11
## 727 24:24.9 +12.1 <NA> 2014-2015 Kontiolahti 11
## 728 24:38.1 +25.3 <NA> 2014-2015 Kontiolahti 11
## 729 24:42.3 +29.5 <NA> 2014-2015 Kontiolahti 11
## 730 24:43.1 +30.3 <NA> 2014-2015 Kontiolahti 11
## 731 24:48.4 +35.6 <NA> 2014-2015 Kontiolahti 11
## 732 24:48.9 +36.1 <NA> 2014-2015 Kontiolahti 11
## 733 24:53.0 +40.2 <NA> 2014-2015 Kontiolahti 11
## 734 24:56.7 +43.9 <NA> 2014-2015 Kontiolahti 11
## 735 24:59.3 +46.5 <NA> 2014-2015 Kontiolahti 11
## 736 25:02.4 +49.6 <NA> 2014-2015 Kontiolahti 11
## 737 25:02.5 +49.7 <NA> 2014-2015 Kontiolahti 11
## 738 25:07.7 +54.9 <NA> 2014-2015 Kontiolahti 11
## 739 25:08.1 +55.3 <NA> 2014-2015 Kontiolahti 11
## 740 25:12.4 +59.6 <NA> 2014-2015 Kontiolahti 11
## 741 25:12.5 +59.7 <NA> 2014-2015 Kontiolahti 11
## 742 25:14.3 +1:01.5 <NA> 2014-2015 Kontiolahti 11
## 743 25:15.3 +1:02.5 <NA> 2014-2015 Kontiolahti 11
## 744 25:21.7 +1:08.9 <NA> 2014-2015 Kontiolahti 11
## 745 25:26.0 +1:13.2 <NA> 2014-2015 Kontiolahti 11
## 746 25:27.1 +1:14.3 <NA> 2014-2015 Kontiolahti 11
## 747 25:27.1 +1:14.3 <NA> 2014-2015 Kontiolahti 11
## 748 25:28.3 +1:15.5 <NA> 2014-2015 Kontiolahti 11
## 749 25:32.1 +1:19.3 <NA> 2014-2015 Kontiolahti 11
## 750 25:33.9 +1:21.1 <NA> 2014-2015 Kontiolahti 11
## 751 25:38.2 +1:25.4 <NA> 2014-2015 Kontiolahti 11
## 752 25:40.9 +1:28.1 <NA> 2014-2015 Kontiolahti 11
## 753 25:42.3 +1:29.5 <NA> 2014-2015 Kontiolahti 11
## 754 25:43.1 +1:30.3 <NA> 2014-2015 Kontiolahti 11
## 755 25:44.0 +1:31.2 <NA> 2014-2015 Kontiolahti 11
## 756 25:45.2 +1:32.4 <NA> 2014-2015 Kontiolahti 11
## 757 25:45.9 +1:33.1 <NA> 2014-2015 Kontiolahti 11
## 758 25:48.3 +1:35.5 <NA> 2014-2015 Kontiolahti 11
## 759 25:48.4 +1:35.6 <NA> 2014-2015 Kontiolahti 11
## 760 25:50.7 +1:37.9 <NA> 2014-2015 Kontiolahti 11
## 761 25:53.3 +1:40.5 <NA> 2014-2015 Kontiolahti 11
## 762 25:53.3 +1:40.5 <NA> 2014-2015 Kontiolahti 11
## 763 25:54.2 +1:41.4 <NA> 2014-2015 Kontiolahti 11
## 764 25:59.3 +1:46.5 <NA> 2014-2015 Kontiolahti 11
## 765 25:59.3 +1:46.5 <NA> 2014-2015 Kontiolahti 11
## 766 26:00.5 +1:47.7 <NA> 2014-2015 Kontiolahti 11
## 767 26:00.7 +1:47.9 <NA> 2014-2015 Kontiolahti 11
## 768 26:02.0 +1:49.2 <NA> 2014-2015 Kontiolahti 11
## 769 26:03.9 +1:51.1 <NA> 2014-2015 Kontiolahti 11
## 770 26:09.4 +1:56.6 <NA> 2014-2015 Kontiolahti 11
## 771 26:11.0 +1:58.2 <NA> 2014-2015 Kontiolahti 11
## 772 26:13.9 +2:01.1 <NA> 2014-2015 Kontiolahti 11
## 773 26:17.0 +2:04.2 <NA> 2014-2015 Kontiolahti 11
## 774 26:18.8 +2:06.0 <NA> 2014-2015 Kontiolahti 11
## 775 26:19.0 +2:06.2 <NA> 2014-2015 Kontiolahti 11
## 776 26:21.2 +2:08.4 <NA> 2014-2015 Kontiolahti 11
## 777 26:30.4 +2:17.6 <NA> 2014-2015 Kontiolahti 11
## 778 26:33.1 +2:20.3 <NA> 2014-2015 Kontiolahti 11
## 779 26:35.4 +2:22.6 <NA> 2014-2015 Kontiolahti 11
## 780 26:41.7 +2:28.9 <NA> 2014-2015 Kontiolahti 11
## 781 26:50.5 +2:37.7 <NA> 2014-2015 Kontiolahti 11
## 782 26:57.7 +2:44.9 <NA> 2014-2015 Kontiolahti 11
## 783 26:58.0 +2:45.2 <NA> 2014-2015 Kontiolahti 11
## 784 26:59.4 +2:46.6 <NA> 2014-2015 Kontiolahti 11
## 785 27:00.6 +2:47.8 <NA> 2014-2015 Kontiolahti 11
## 786 27:03.5 +2:50.7 <NA> 2014-2015 Kontiolahti 11
## 787 27:05.3 +2:52.5 <NA> 2014-2015 Kontiolahti 11
## 788 27:07.3 +2:54.5 <NA> 2014-2015 Kontiolahti 11
## 789 27:10.1 +2:57.3 <NA> 2014-2015 Kontiolahti 11
## 790 27:13.2 +3:00.4 <NA> 2014-2015 Kontiolahti 11
## 791 27:13.5 +3:00.7 <NA> 2014-2015 Kontiolahti 11
## 792 27:18.9 +3:06.1 <NA> 2014-2015 Kontiolahti 11
## 793 27:19.7 +3:06.9 <NA> 2014-2015 Kontiolahti 11
## 794 27:20.3 +3:07.5 <NA> 2014-2015 Kontiolahti 11
## 795 27:22.1 +3:09.3 <NA> 2014-2015 Kontiolahti 11
## 796 27:23.3 +3:10.5 <NA> 2014-2015 Kontiolahti 11
## 797 27:23.5 +3:10.7 <NA> 2014-2015 Kontiolahti 11
## 798 27:23.8 +3:11.0 <NA> 2014-2015 Kontiolahti 11
## 799 27:28.1 +3:15.3 <NA> 2014-2015 Kontiolahti 11
## 800 27:28.7 +3:15.9 <NA> 2014-2015 Kontiolahti 11
## 801 27:30.1 +3:17.3 <NA> 2014-2015 Kontiolahti 11
## 802 27:32.3 +3:19.5 <NA> 2014-2015 Kontiolahti 11
## 803 27:39.7 +3:26.9 <NA> 2014-2015 Kontiolahti 11
## 804 27:44.1 +3:31.3 <NA> 2014-2015 Kontiolahti 11
## 805 27:45.4 +3:32.6 <NA> 2014-2015 Kontiolahti 11
## 806 27:48.6 +3:35.8 <NA> 2014-2015 Kontiolahti 11
## 807 27:52.3 +3:39.5 <NA> 2014-2015 Kontiolahti 11
## 808 27:54.6 +3:41.8 <NA> 2014-2015 Kontiolahti 11
## 809 27:58.0 +3:45.2 <NA> 2014-2015 Kontiolahti 11
## 810 28:05.7 +3:52.9 <NA> 2014-2015 Kontiolahti 11
## 811 28:07.3 +3:54.5 <NA> 2014-2015 Kontiolahti 11
## 812 28:22.9 +4:10.1 <NA> 2014-2015 Kontiolahti 11
## 813 28:37.5 +4:24.7 <NA> 2014-2015 Kontiolahti 11
## 814 28:39.3 +4:26.5 <NA> 2014-2015 Kontiolahti 11
## 815 28:45.8 +4:33.0 <NA> 2014-2015 Kontiolahti 11
## 816 28:46.6 +4:33.8 <NA> 2014-2015 Kontiolahti 11
## 817 28:47.1 +4:34.3 <NA> 2014-2015 Kontiolahti 11
## 818 28:51.5 +4:38.7 <NA> 2014-2015 Kontiolahti 11
## 819 28:58.1 +4:45.3 <NA> 2014-2015 Kontiolahti 11
## 820 29:02.0 +4:49.2 <NA> 2014-2015 Kontiolahti 11
## 821 29:07.8 +4:55.0 <NA> 2014-2015 Kontiolahti 11
## 822 29:12.8 +5:00.0 <NA> 2014-2015 Kontiolahti 11
## 823 29:15.7 +5:02.9 <NA> 2014-2015 Kontiolahti 11
## 824 29:22.3 +5:09.5 <NA> 2014-2015 Kontiolahti 11
## 825 29:26.7 +5:13.9 <NA> 2014-2015 Kontiolahti 11
## 826 29:47.7 +5:34.9 <NA> 2014-2015 Kontiolahti 11
## 827 29:50.2 +5:37.4 <NA> 2014-2015 Kontiolahti 11
## 828 29:51.8 +5:39.0 <NA> 2014-2015 Kontiolahti 11
## 829 30:08.7 +5:55.9 <NA> 2014-2015 Kontiolahti 11
## 830 30:13.9 +6:01.1 <NA> 2014-2015 Kontiolahti 11
## 831 30:14.0 +6:01.2 <NA> 2014-2015 Kontiolahti 11
## 832 30:22.8 +6:10.0 <NA> 2014-2015 Kontiolahti 11
## 833 30:39.2 +6:26.4 <NA> 2014-2015 Kontiolahti 11
## 834 30:40.7 +6:27.9 <NA> 2014-2015 Kontiolahti 11
## 835 30:41.9 +6:29.1 <NA> 2014-2015 Kontiolahti 11
## 836 30:57.8 +6:45.0 <NA> 2014-2015 Kontiolahti 11
## 837 31:04.4 +6:51.6 <NA> 2014-2015 Kontiolahti 11
## 838 31:06.8 +6:54.0 <NA> 2014-2015 Kontiolahti 11
## 839 31:19.2 +7:06.4 <NA> 2014-2015 Kontiolahti 11
## 840 31:23.7 +7:10.9 <NA> 2014-2015 Kontiolahti 11
## 841 31:25.5 +7:12.7 <NA> 2014-2015 Kontiolahti 11
## 842 31:33.5 +7:20.7 <NA> 2014-2015 Kontiolahti 11
## 843 31:49.8 +7:37.0 <NA> 2014-2015 Kontiolahti 11
## 844 32:14.1 +8:01.3 <NA> 2014-2015 Kontiolahti 11
## 845 32:23.3 +8:10.5 <NA> 2014-2015 Kontiolahti 11
## 846 32:33.7 +8:20.9 <NA> 2014-2015 Kontiolahti 11
## 847 32:42.3 +8:29.5 <NA> 2014-2015 Kontiolahti 11
## 848 33:12.2 +8:59.4 <NA> 2014-2015 Kontiolahti 11
## 849 33:31.2 +9:18.4 <NA> 2014-2015 Kontiolahti 11
## 850 33:41.9 +9:29.1 <NA> 2014-2015 Kontiolahti 11
## 851 33:51.7 +9:38.9 <NA> 2014-2015 Kontiolahti 11
## 852 34:40.9 +10:28.1 <NA> 2014-2015 Kontiolahti 11
## 853 <NA> 2014-2015 Kontiolahti 11
## 854 <NA> 2014-2015 Kontiolahti 11
## 855 37:24.9 37:24.9 2014-2015 Nove_Mesto 12
## 856 37:29.3 +4.4 37:16.3 2014-2015 Nove_Mesto 12
## 857 37:38.2 +13.3 37:12.2 2014-2015 Nove_Mesto 12
## 858 37:45.2 +20.3 37:04.2 2014-2015 Nove_Mesto 12
## 859 37:49.0 +24.1 37:11.0 2014-2015 Nove_Mesto 12
## 860 38:10.5 +45.6 37:02.5 2014-2015 Nove_Mesto 12
## 861 38:11.7 +46.8 37:04.7 2014-2015 Nove_Mesto 12
## 862 38:19.6 +54.7 37:19.6 2014-2015 Nove_Mesto 12
## 863 38:26.8 +1:01.9 37:44.8 2014-2015 Nove_Mesto 12
## 864 38:27.2 +1:02.3 37:24.2 2014-2015 Nove_Mesto 12
## 865 38:42.8 +1:17.9 38:15.8 2014-2015 Nove_Mesto 12
## 866 39:00.6 +1:35.7 38:16.6 2014-2015 Nove_Mesto 12
## 867 39:21.3 +1:56.4 38:05.3 2014-2015 Nove_Mesto 12
## 868 39:38.2 +2:13.3 39:08.2 2014-2015 Nove_Mesto 12
## 869 39:52.5 +2:27.6 38:19.5 2014-2015 Nove_Mesto 12
## 870 39:54.6 +2:29.7 39:28.6 2014-2015 Nove_Mesto 12
## 871 39:55.9 +2:31.0 39:05.9 2014-2015 Nove_Mesto 12
## 872 39:59.4 +2:34.5 38:19.4 2014-2015 Nove_Mesto 12
## 873 40:01.5 +2:36.6 38:51.5 2014-2015 Nove_Mesto 12
## 874 40:02.8 +2:37.9 38:57.8 2014-2015 Nove_Mesto 12
## 875 40:04.1 +2:39.2 38:55.1 2014-2015 Nove_Mesto 12
## 876 40:05.9 +2:41.0 38:04.9 2014-2015 Nove_Mesto 12
## 877 40:13.9 +2:49.0 38:24.9 2014-2015 Nove_Mesto 12
## 878 40:25.6 +3:00.7 38:45.6 2014-2015 Nove_Mesto 12
## 879 40:27.7 +3:02.8 38:35.7 2014-2015 Nove_Mesto 12
## 880 40:29.4 +3:04.5 39:06.4 2014-2015 Nove_Mesto 12
## 881 40:30.3 +3:05.4 39:25.3 2014-2015 Nove_Mesto 12
## 882 40:32.3 +3:07.4 38:49.3 2014-2015 Nove_Mesto 12
## 883 40:36.6 +3:11.7 39:14.6 2014-2015 Nove_Mesto 12
## 884 40:37.9 +3:13.0 39:24.9 2014-2015 Nove_Mesto 12
## 885 40:41.9 +3:17.0 39:24.9 2014-2015 Nove_Mesto 12
## 886 40:49.0 +3:24.1 39:28.0 2014-2015 Nove_Mesto 12
## 887 40:53.8 +3:28.9 39:21.8 2014-2015 Nove_Mesto 12
## 888 40:56.0 +3:31.1 40:01.0 2014-2015 Nove_Mesto 12
## 889 40:56.7 +3:31.8 39:23.7 2014-2015 Nove_Mesto 12
## 890 40:57.9 +3:33.0 38:37.9 2014-2015 Nove_Mesto 12
## 891 41:02.7 +3:37.8 39:21.7 2014-2015 Nove_Mesto 12
## 892 41:08.8 +3:43.9 39:47.8 2014-2015 Nove_Mesto 12
## 893 41:28.6 +4:03.7 39:44.6 2014-2015 Nove_Mesto 12
## 894 41:40.0 +4:15.1 39:50.0 2014-2015 Nove_Mesto 12
## 895 41:44.9 +4:20.0 39:21.9 2014-2015 Nove_Mesto 12
## 896 41:59.7 +4:34.8 40:00.7 2014-2015 Nove_Mesto 12
## 897 42:12.5 +4:47.6 40:07.5 2014-2015 Nove_Mesto 12
## 898 42:13.3 +4:48.4 40:40.3 2014-2015 Nove_Mesto 12
## 899 42:27.0 +5:02.1 40:03.0 2014-2015 Nove_Mesto 12
## 900 42:27.7 +5:02.8 41:10.7 2014-2015 Nove_Mesto 12
## 901 42:31.1 +5:06.2 40:50.1 2014-2015 Nove_Mesto 12
## 902 42:37.2 +5:12.3 40:54.2 2014-2015 Nove_Mesto 12
## 903 42:38.2 +5:13.3 41:14.2 2014-2015 Nove_Mesto 12
## 904 42:51.6 +5:26.7 40:19.6 2014-2015 Nove_Mesto 12
## 905 43:10.7 +5:45.8 41:01.7 2014-2015 Nove_Mesto 12
## 906 43:36.4 +6:11.5 42:10.4 2014-2015 Nove_Mesto 12
## 907 44:06.0 +6:41.1 41:52.0 2014-2015 Nove_Mesto 12
## 908 46:26.4 +9:01.5 44:05.4 2014-2015 Nove_Mesto 12
## 909 2014-2015 Nove_Mesto 12
## 910 2014-2015 Nove_Mesto 12
## 911 2014-2015 Nove_Mesto 12
## 912 2014-2015 Nove_Mesto 12
## 913 2014-2015 Nove_Mesto 12
## 914 2014-2015 Nove_Mesto 12
## 915 24:09.9 <NA> 2014-2015 Nove_Mesto 13
## 916 24:22.7 +12.8 <NA> 2014-2015 Nove_Mesto 13
## 917 24:35.9 +26.0 <NA> 2014-2015 Nove_Mesto 13
## 918 24:36.2 +26.3 <NA> 2014-2015 Nove_Mesto 13
## 919 24:36.6 +26.7 <NA> 2014-2015 Nove_Mesto 13
## 920 24:39.4 +29.5 <NA> 2014-2015 Nove_Mesto 13
## 921 24:47.6 +37.7 <NA> 2014-2015 Nove_Mesto 13
## 922 24:50.8 +40.9 <NA> 2014-2015 Nove_Mesto 13
## 923 24:52.2 +42.3 <NA> 2014-2015 Nove_Mesto 13
## 924 24:53.4 +43.5 <NA> 2014-2015 Nove_Mesto 13
## 925 25:00.2 +50.3 <NA> 2014-2015 Nove_Mesto 13
## 926 25:05.2 +55.3 <NA> 2014-2015 Nove_Mesto 13
## 927 25:09.4 +59.5 <NA> 2014-2015 Nove_Mesto 13
## 928 25:12.8 +1:02.9 <NA> 2014-2015 Nove_Mesto 13
## 929 25:13.3 +1:03.4 <NA> 2014-2015 Nove_Mesto 13
## 930 25:14.7 +1:04.8 <NA> 2014-2015 Nove_Mesto 13
## 931 25:15.2 +1:05.3 <NA> 2014-2015 Nove_Mesto 13
## 932 25:16.4 +1:06.5 <NA> 2014-2015 Nove_Mesto 13
## 933 25:17.6 +1:07.7 <NA> 2014-2015 Nove_Mesto 13
## 934 25:18.6 +1:08.7 <NA> 2014-2015 Nove_Mesto 13
## 935 25:19.6 +1:09.7 <NA> 2014-2015 Nove_Mesto 13
## 936 25:22.7 +1:12.8 <NA> 2014-2015 Nove_Mesto 13
## 937 25:25.9 +1:16.0 <NA> 2014-2015 Nove_Mesto 13
## 938 25:27.3 +1:17.4 <NA> 2014-2015 Nove_Mesto 13
## 939 25:27.3 +1:17.4 <NA> 2014-2015 Nove_Mesto 13
## 940 25:30.5 +1:20.6 <NA> 2014-2015 Nove_Mesto 13
## 941 25:31.3 +1:21.4 <NA> 2014-2015 Nove_Mesto 13
## 942 25:32.1 +1:22.2 <NA> 2014-2015 Nove_Mesto 13
## 943 25:33.3 +1:23.4 <NA> 2014-2015 Nove_Mesto 13
## 944 25:34.2 +1:24.3 <NA> 2014-2015 Nove_Mesto 13
## 945 25:35.7 +1:25.8 <NA> 2014-2015 Nove_Mesto 13
## 946 25:42.3 +1:32.4 <NA> 2014-2015 Nove_Mesto 13
## 947 25:42.6 +1:32.7 <NA> 2014-2015 Nove_Mesto 13
## 948 25:43.0 +1:33.1 <NA> 2014-2015 Nove_Mesto 13
## 949 25:43.2 +1:33.3 <NA> 2014-2015 Nove_Mesto 13
## 950 25:49.9 +1:40.0 <NA> 2014-2015 Nove_Mesto 13
## 951 25:50.2 +1:40.3 <NA> 2014-2015 Nove_Mesto 13
## 952 25:50.6 +1:40.7 <NA> 2014-2015 Nove_Mesto 13
## 953 25:51.1 +1:41.2 <NA> 2014-2015 Nove_Mesto 13
## 954 25:53.0 +1:43.1 <NA> 2014-2015 Nove_Mesto 13
## 955 25:53.3 +1:43.4 <NA> 2014-2015 Nove_Mesto 13
## 956 25:54.2 +1:44.3 <NA> 2014-2015 Nove_Mesto 13
## 957 25:58.4 +1:48.5 <NA> 2014-2015 Nove_Mesto 13
## 958 25:59.8 +1:49.9 <NA> 2014-2015 Nove_Mesto 13
## 959 26:02.3 +1:52.4 <NA> 2014-2015 Nove_Mesto 13
## 960 26:08.9 +1:59.0 <NA> 2014-2015 Nove_Mesto 13
## 961 26:09.6 +1:59.7 <NA> 2014-2015 Nove_Mesto 13
## 962 26:11.0 +2:01.1 <NA> 2014-2015 Nove_Mesto 13
## 963 26:14.5 +2:04.6 <NA> 2014-2015 Nove_Mesto 13
## 964 26:15.1 +2:05.2 <NA> 2014-2015 Nove_Mesto 13
## 965 26:19.2 +2:09.3 <NA> 2014-2015 Nove_Mesto 13
## 966 26:23.9 +2:14.0 <NA> 2014-2015 Nove_Mesto 13
## 967 26:30.2 +2:20.3 <NA> 2014-2015 Nove_Mesto 13
## 968 26:30.8 +2:20.9 <NA> 2014-2015 Nove_Mesto 13
## 969 26:31.9 +2:22.0 <NA> 2014-2015 Nove_Mesto 13
## 970 26:33.0 +2:23.1 <NA> 2014-2015 Nove_Mesto 13
## 971 26:34.2 +2:24.3 <NA> 2014-2015 Nove_Mesto 13
## 972 26:41.5 +2:31.6 <NA> 2014-2015 Nove_Mesto 13
## 973 26:41.7 +2:31.8 <NA> 2014-2015 Nove_Mesto 13
## 974 26:41.8 +2:31.9 <NA> 2014-2015 Nove_Mesto 13
## 975 26:43.6 +2:33.7 <NA> 2014-2015 Nove_Mesto 13
## 976 26:45.5 +2:35.6 <NA> 2014-2015 Nove_Mesto 13
## 977 26:45.6 +2:35.7 <NA> 2014-2015 Nove_Mesto 13
## 978 26:45.8 +2:35.9 <NA> 2014-2015 Nove_Mesto 13
## 979 26:49.6 +2:39.7 <NA> 2014-2015 Nove_Mesto 13
## 980 26:52.4 +2:42.5 <NA> 2014-2015 Nove_Mesto 13
## 981 26:52.6 +2:42.7 <NA> 2014-2015 Nove_Mesto 13
## 982 26:55.5 +2:45.6 <NA> 2014-2015 Nove_Mesto 13
## 983 26:57.6 +2:47.7 <NA> 2014-2015 Nove_Mesto 13
## 984 27:02.3 +2:52.4 <NA> 2014-2015 Nove_Mesto 13
## 985 27:13.8 +3:03.9 <NA> 2014-2015 Nove_Mesto 13
## 986 27:14.3 +3:04.4 <NA> 2014-2015 Nove_Mesto 13
## 987 27:17.5 +3:07.6 <NA> 2014-2015 Nove_Mesto 13
## 988 27:25.0 +3:15.1 <NA> 2014-2015 Nove_Mesto 13
## 989 27:26.1 +3:16.2 <NA> 2014-2015 Nove_Mesto 13
## 990 27:31.6 +3:21.7 <NA> 2014-2015 Nove_Mesto 13
## 991 27:32.7 +3:22.8 <NA> 2014-2015 Nove_Mesto 13
## 992 27:34.0 +3:24.1 <NA> 2014-2015 Nove_Mesto 13
## 993 27:36.5 +3:26.6 <NA> 2014-2015 Nove_Mesto 13
## 994 27:42.9 +3:33.0 <NA> 2014-2015 Nove_Mesto 13
## 995 27:46.1 +3:36.2 <NA> 2014-2015 Nove_Mesto 13
## 996 28:11.2 +4:01.3 <NA> 2014-2015 Nove_Mesto 13
## 997 28:13.5 +4:03.6 <NA> 2014-2015 Nove_Mesto 13
## 998 28:23.3 +4:13.4 <NA> 2014-2015 Nove_Mesto 13
## 999 28:23.9 +4:14.0 <NA> 2014-2015 Nove_Mesto 13
## 1000 28:25.8 +4:15.9 <NA> 2014-2015 Nove_Mesto 13
## 1001 28:59.2 +4:49.3 <NA> 2014-2015 Nove_Mesto 13
## 1002 29:00.8 +4:50.9 <NA> 2014-2015 Nove_Mesto 13
## 1003 29:14.5 +5:04.6 <NA> 2014-2015 Nove_Mesto 13
## 1004 29:15.7 +5:05.8 <NA> 2014-2015 Nove_Mesto 13
## 1005 29:16.5 +5:06.6 <NA> 2014-2015 Nove_Mesto 13
## 1006 30:12.5 +6:02.6 <NA> 2014-2015 Nove_Mesto 13
## 1007 30:16.8 +6:06.9 <NA> 2014-2015 Nove_Mesto 13
## 1008 30:23.7 +6:13.8 <NA> 2014-2015 Nove_Mesto 13
## 1009 <NA> 2014-2015 Nove_Mesto 13
## 1010 <NA> 2014-2015 Nove_Mesto 13
## 1011 44:52.0 <NA> 2014-2015 Oberhof 14
## 1012 45:05.1 +13.1 <NA> 2014-2015 Oberhof 14
## 1013 45:22.7 +30.7 <NA> 2014-2015 Oberhof 14
## 1014 45:23.4 +31.4 <NA> 2014-2015 Oberhof 14
## 1015 45:29.8 +37.8 <NA> 2014-2015 Oberhof 14
## 1016 45:30.9 +38.9 <NA> 2014-2015 Oberhof 14
## 1017 45:35.7 +43.7 <NA> 2014-2015 Oberhof 14
## 1018 45:36.5 +44.5 <NA> 2014-2015 Oberhof 14
## 1019 45:36.6 +44.6 <NA> 2014-2015 Oberhof 14
## 1020 45:43.2 +51.2 <NA> 2014-2015 Oberhof 14
## 1021 45:58.6 +1:06.6 <NA> 2014-2015 Oberhof 14
## 1022 46:00.7 +1:08.7 <NA> 2014-2015 Oberhof 14
## 1023 46:23.9 +1:31.9 <NA> 2014-2015 Oberhof 14
## 1024 46:32.1 +1:40.1 <NA> 2014-2015 Oberhof 14
## 1025 46:32.7 +1:40.7 <NA> 2014-2015 Oberhof 14
## 1026 46:38.6 +1:46.6 <NA> 2014-2015 Oberhof 14
## 1027 46:39.8 +1:47.8 <NA> 2014-2015 Oberhof 14
## 1028 46:40.2 +1:48.2 <NA> 2014-2015 Oberhof 14
## 1029 46:41.4 +1:49.4 <NA> 2014-2015 Oberhof 14
## 1030 46:43.4 +1:51.4 <NA> 2014-2015 Oberhof 14
## 1031 46:43.4 +1:51.4 <NA> 2014-2015 Oberhof 14
## 1032 46:47.1 +1:55.1 <NA> 2014-2015 Oberhof 14
## 1033 47:17.7 +2:25.7 <NA> 2014-2015 Oberhof 14
## 1034 47:19.0 +2:27.0 <NA> 2014-2015 Oberhof 14
## 1035 47:19.3 +2:27.3 <NA> 2014-2015 Oberhof 14
## 1036 47:22.8 +2:30.8 <NA> 2014-2015 Oberhof 14
## 1037 47:26.3 +2:34.3 <NA> 2014-2015 Oberhof 14
## 1038 47:47.8 +2:55.8 <NA> 2014-2015 Oberhof 14
## 1039 49:28.0 +4:36.0 <NA> 2014-2015 Oberhof 14
## 1040 <NA> 2014-2015 Oberhof 14
## 1041 27:02.5 <NA> 2014-2015 Oberhof 15
## 1042 27:06.9 +4.4 <NA> 2014-2015 Oberhof 15
## 1043 27:20.0 +17.5 <NA> 2014-2015 Oberhof 15
## 1044 27:20.7 +18.2 <NA> 2014-2015 Oberhof 15
## 1045 27:21.5 +19.0 <NA> 2014-2015 Oberhof 15
## 1046 27:23.9 +21.4 <NA> 2014-2015 Oberhof 15
## 1047 27:32.8 +30.3 <NA> 2014-2015 Oberhof 15
## 1048 27:35.7 +33.2 <NA> 2014-2015 Oberhof 15
## 1049 27:42.3 +39.8 <NA> 2014-2015 Oberhof 15
## 1050 27:44.9 +42.4 <NA> 2014-2015 Oberhof 15
## 1051 27:45.0 +42.5 <NA> 2014-2015 Oberhof 15
## 1052 27:46.9 +44.4 <NA> 2014-2015 Oberhof 15
## 1053 27:52.0 +49.5 <NA> 2014-2015 Oberhof 15
## 1054 27:56.2 +53.7 <NA> 2014-2015 Oberhof 15
## 1055 27:56.3 +53.8 <NA> 2014-2015 Oberhof 15
## 1056 27:57.9 +55.4 <NA> 2014-2015 Oberhof 15
## 1057 27:57.9 +55.4 <NA> 2014-2015 Oberhof 15
## 1058 27:59.9 +57.4 <NA> 2014-2015 Oberhof 15
## 1059 28:00.8 +58.3 <NA> 2014-2015 Oberhof 15
## 1060 28:02.9 +1:00.4 <NA> 2014-2015 Oberhof 15
## 1061 28:10.6 +1:08.1 <NA> 2014-2015 Oberhof 15
## 1062 28:11.9 +1:09.4 <NA> 2014-2015 Oberhof 15
## 1063 28:14.9 +1:12.4 <NA> 2014-2015 Oberhof 15
## 1064 28:17.7 +1:15.2 <NA> 2014-2015 Oberhof 15
## 1065 28:19.1 +1:16.6 <NA> 2014-2015 Oberhof 15
## 1066 28:20.1 +1:17.6 <NA> 2014-2015 Oberhof 15
## 1067 28:22.5 +1:20.0 <NA> 2014-2015 Oberhof 15
## 1068 28:22.6 +1:20.1 <NA> 2014-2015 Oberhof 15
## 1069 28:22.8 +1:20.3 <NA> 2014-2015 Oberhof 15
## 1070 28:25.5 +1:23.0 <NA> 2014-2015 Oberhof 15
## 1071 28:27.3 +1:24.8 <NA> 2014-2015 Oberhof 15
## 1072 28:30.5 +1:28.0 <NA> 2014-2015 Oberhof 15
## 1073 28:30.7 +1:28.2 <NA> 2014-2015 Oberhof 15
## 1074 28:32.6 +1:30.1 <NA> 2014-2015 Oberhof 15
## 1075 28:39.2 +1:36.7 <NA> 2014-2015 Oberhof 15
## 1076 28:40.8 +1:38.3 <NA> 2014-2015 Oberhof 15
## 1077 28:45.4 +1:42.9 <NA> 2014-2015 Oberhof 15
## 1078 28:48.3 +1:45.8 <NA> 2014-2015 Oberhof 15
## 1079 28:54.0 +1:51.5 <NA> 2014-2015 Oberhof 15
## 1080 28:55.7 +1:53.2 <NA> 2014-2015 Oberhof 15
## 1081 28:57.3 +1:54.8 <NA> 2014-2015 Oberhof 15
## 1082 28:59.0 +1:56.5 <NA> 2014-2015 Oberhof 15
## 1083 29:01.5 +1:59.0 <NA> 2014-2015 Oberhof 15
## 1084 29:01.5 +1:59.0 <NA> 2014-2015 Oberhof 15
## 1085 29:02.7 +2:00.2 <NA> 2014-2015 Oberhof 15
## 1086 29:04.9 +2:02.4 <NA> 2014-2015 Oberhof 15
## 1087 29:09.1 +2:06.6 <NA> 2014-2015 Oberhof 15
## 1088 29:15.7 +2:13.2 <NA> 2014-2015 Oberhof 15
## 1089 29:16.4 +2:13.9 <NA> 2014-2015 Oberhof 15
## 1090 29:19.7 +2:17.2 <NA> 2014-2015 Oberhof 15
## 1091 29:23.2 +2:20.7 <NA> 2014-2015 Oberhof 15
## 1092 29:24.8 +2:22.3 <NA> 2014-2015 Oberhof 15
## 1093 29:26.9 +2:24.4 <NA> 2014-2015 Oberhof 15
## 1094 29:27.3 +2:24.8 <NA> 2014-2015 Oberhof 15
## 1095 29:29.4 +2:26.9 <NA> 2014-2015 Oberhof 15
## 1096 29:29.7 +2:27.2 <NA> 2014-2015 Oberhof 15
## 1097 29:32.0 +2:29.5 <NA> 2014-2015 Oberhof 15
## 1098 29:32.0 +2:29.5 <NA> 2014-2015 Oberhof 15
## 1099 29:34.5 +2:32.0 <NA> 2014-2015 Oberhof 15
## 1100 29:37.7 +2:35.2 <NA> 2014-2015 Oberhof 15
## 1101 29:38.0 +2:35.5 <NA> 2014-2015 Oberhof 15
## 1102 29:39.4 +2:36.9 <NA> 2014-2015 Oberhof 15
## 1103 29:40.9 +2:38.4 <NA> 2014-2015 Oberhof 15
## 1104 29:42.2 +2:39.7 <NA> 2014-2015 Oberhof 15
## 1105 29:46.7 +2:44.2 <NA> 2014-2015 Oberhof 15
## 1106 29:50.2 +2:47.7 <NA> 2014-2015 Oberhof 15
## 1107 29:53.6 +2:51.1 <NA> 2014-2015 Oberhof 15
## 1108 29:56.3 +2:53.8 <NA> 2014-2015 Oberhof 15
## 1109 30:01.4 +2:58.9 <NA> 2014-2015 Oberhof 15
## 1110 30:01.9 +2:59.4 <NA> 2014-2015 Oberhof 15
## 1111 30:02.3 +2:59.8 <NA> 2014-2015 Oberhof 15
## 1112 30:02.5 +3:00.0 <NA> 2014-2015 Oberhof 15
## 1113 30:05.6 +3:03.1 <NA> 2014-2015 Oberhof 15
## 1114 30:09.1 +3:06.6 <NA> 2014-2015 Oberhof 15
## 1115 30:16.2 +3:13.7 <NA> 2014-2015 Oberhof 15
## 1116 30:16.2 +3:13.7 <NA> 2014-2015 Oberhof 15
## 1117 30:16.6 +3:14.1 <NA> 2014-2015 Oberhof 15
## 1118 30:18.8 +3:16.3 <NA> 2014-2015 Oberhof 15
## 1119 30:21.2 +3:18.7 <NA> 2014-2015 Oberhof 15
## 1120 30:23.9 +3:21.4 <NA> 2014-2015 Oberhof 15
## 1121 30:25.3 +3:22.8 <NA> 2014-2015 Oberhof 15
## 1122 30:30.1 +3:27.6 <NA> 2014-2015 Oberhof 15
## 1123 30:44.9 +3:42.4 <NA> 2014-2015 Oberhof 15
## 1124 30:48.7 +3:46.2 <NA> 2014-2015 Oberhof 15
## 1125 30:59.5 +3:57.0 <NA> 2014-2015 Oberhof 15
## 1126 31:00.5 +3:58.0 <NA> 2014-2015 Oberhof 15
## 1127 31:00.8 +3:58.3 <NA> 2014-2015 Oberhof 15
## 1128 31:17.4 +4:14.9 <NA> 2014-2015 Oberhof 15
## 1129 31:19.6 +4:17.1 <NA> 2014-2015 Oberhof 15
## 1130 31:27.8 +4:25.3 <NA> 2014-2015 Oberhof 15
## 1131 31:30.9 +4:28.4 <NA> 2014-2015 Oberhof 15
## 1132 31:47.0 +4:44.5 <NA> 2014-2015 Oberhof 15
## 1133 31:50.5 +4:48.0 <NA> 2014-2015 Oberhof 15
## 1134 32:20.3 +5:17.8 <NA> 2014-2015 Oberhof 15
## 1135 32:24.6 +5:22.1 <NA> 2014-2015 Oberhof 15
## 1136 32:30.3 +5:27.8 <NA> 2014-2015 Oberhof 15
## 1137 32:35.0 +5:32.5 <NA> 2014-2015 Oberhof 15
## 1138 33:09.6 +6:07.1 <NA> 2014-2015 Oberhof 15
## 1139 34:52.7 +7:50.2 <NA> 2014-2015 Oberhof 15
## 1140 53:25.6 <NA> 2014-2015 Oestersund 16
## 1141 54:43.2 +1:17.6 <NA> 2014-2015 Oestersund 16
## 1142 55:33.9 +2:08.3 <NA> 2014-2015 Oestersund 16
## 1143 55:37.1 +2:11.5 <NA> 2014-2015 Oestersund 16
## 1144 55:40.7 +2:15.1 <NA> 2014-2015 Oestersund 16
## 1145 55:41.7 +2:16.1 <NA> 2014-2015 Oestersund 16
## 1146 56:09.8 +2:44.2 <NA> 2014-2015 Oestersund 16
## 1147 56:16.9 +2:51.3 <NA> 2014-2015 Oestersund 16
## 1148 56:23.7 +2:58.1 <NA> 2014-2015 Oestersund 16
## 1149 56:48.5 +3:22.9 <NA> 2014-2015 Oestersund 16
## 1150 56:58.4 +3:32.8 <NA> 2014-2015 Oestersund 16
## 1151 56:58.5 +3:32.9 <NA> 2014-2015 Oestersund 16
## 1152 57:00.7 +3:35.1 <NA> 2014-2015 Oestersund 16
## 1153 57:17.9 +3:52.3 <NA> 2014-2015 Oestersund 16
## 1154 57:30.2 +4:04.6 <NA> 2014-2015 Oestersund 16
## 1155 57:32.9 +4:07.3 <NA> 2014-2015 Oestersund 16
## 1156 57:47.6 +4:22.0 <NA> 2014-2015 Oestersund 16
## 1157 57:52.5 +4:26.9 <NA> 2014-2015 Oestersund 16
## 1158 58:14.9 +4:49.3 <NA> 2014-2015 Oestersund 16
## 1159 58:15.6 +4:50.0 <NA> 2014-2015 Oestersund 16
## 1160 58:16.5 +4:50.9 <NA> 2014-2015 Oestersund 16
## 1161 58:16.6 +4:51.0 <NA> 2014-2015 Oestersund 16
## 1162 58:17.3 +4:51.7 <NA> 2014-2015 Oestersund 16
## 1163 58:25.6 +5:00.0 <NA> 2014-2015 Oestersund 16
## 1164 58:26.1 +5:00.5 <NA> 2014-2015 Oestersund 16
## 1165 58:31.4 +5:05.8 <NA> 2014-2015 Oestersund 16
## 1166 58:34.4 +5:08.8 <NA> 2014-2015 Oestersund 16
## 1167 58:34.5 +5:08.9 <NA> 2014-2015 Oestersund 16
## 1168 58:47.9 +5:22.3 <NA> 2014-2015 Oestersund 16
## 1169 58:53.8 +5:28.2 <NA> 2014-2015 Oestersund 16
## 1170 59:05.8 +5:40.2 <NA> 2014-2015 Oestersund 16
## 1171 59:08.4 +5:42.8 <NA> 2014-2015 Oestersund 16
## 1172 59:15.8 +5:50.2 <NA> 2014-2015 Oestersund 16
## 1173 59:26.6 +6:01.0 <NA> 2014-2015 Oestersund 16
## 1174 59:54.0 +6:28.4 <NA> 2014-2015 Oestersund 16
## 1175 59:58.5 +6:32.9 <NA> 2014-2015 Oestersund 16
## 1176 1:00:01.5 +6:35.9 <NA> 2014-2015 Oestersund 16
## 1177 1:00:01.8 +6:36.2 <NA> 2014-2015 Oestersund 16
## 1178 1:00:16.7 +6:51.1 <NA> 2014-2015 Oestersund 16
## 1179 1:00:17.4 +6:51.8 <NA> 2014-2015 Oestersund 16
## 1180 1:00:18.0 +6:52.4 <NA> 2014-2015 Oestersund 16
## 1181 1:00:19.7 +6:54.1 <NA> 2014-2015 Oestersund 16
## 1182 1:00:24.5 +6:58.9 <NA> 2014-2015 Oestersund 16
## 1183 1:00:26.3 +7:00.7 <NA> 2014-2015 Oestersund 16
## 1184 1:00:34.3 +7:08.7 <NA> 2014-2015 Oestersund 16
## 1185 1:00:37.3 +7:11.7 <NA> 2014-2015 Oestersund 16
## 1186 1:00:39.0 +7:13.4 <NA> 2014-2015 Oestersund 16
## 1187 1:00:40.6 +7:15.0 <NA> 2014-2015 Oestersund 16
## 1188 1:00:49.1 +7:23.5 <NA> 2014-2015 Oestersund 16
## 1189 1:01:01.7 +7:36.1 <NA> 2014-2015 Oestersund 16
## 1190 1:01:02.2 +7:36.6 <NA> 2014-2015 Oestersund 16
## 1191 1:01:06.3 +7:40.7 <NA> 2014-2015 Oestersund 16
## 1192 1:01:22.5 +7:56.9 <NA> 2014-2015 Oestersund 16
## 1193 1:01:29.6 +8:04.0 <NA> 2014-2015 Oestersund 16
## 1194 1:01:32.1 +8:06.5 <NA> 2014-2015 Oestersund 16
## 1195 1:01:34.0 +8:08.4 <NA> 2014-2015 Oestersund 16
## 1196 1:01:41.0 +8:15.4 <NA> 2014-2015 Oestersund 16
## 1197 1:01:41.9 +8:16.3 <NA> 2014-2015 Oestersund 16
## 1198 1:01:56.2 +8:30.6 <NA> 2014-2015 Oestersund 16
## 1199 1:01:59.8 +8:34.2 <NA> 2014-2015 Oestersund 16
## 1200 1:02:06.2 +8:40.6 <NA> 2014-2015 Oestersund 16
## 1201 1:02:20.1 +8:54.5 <NA> 2014-2015 Oestersund 16
## 1202 1:02:26.2 +9:00.6 <NA> 2014-2015 Oestersund 16
## 1203 1:02:32.6 +9:07.0 <NA> 2014-2015 Oestersund 16
## 1204 1:02:43.2 +9:17.6 <NA> 2014-2015 Oestersund 16
## 1205 1:02:47.0 +9:21.4 <NA> 2014-2015 Oestersund 16
## 1206 1:02:47.2 +9:21.6 <NA> 2014-2015 Oestersund 16
## 1207 1:02:55.6 +9:30.0 <NA> 2014-2015 Oestersund 16
## 1208 1:03:02.4 +9:36.8 <NA> 2014-2015 Oestersund 16
## 1209 1:03:06.1 +9:40.5 <NA> 2014-2015 Oestersund 16
## 1210 1:03:13.3 +9:47.7 <NA> 2014-2015 Oestersund 16
## 1211 1:03:14.1 +9:48.5 <NA> 2014-2015 Oestersund 16
## 1212 1:03:16.6 +9:51.0 <NA> 2014-2015 Oestersund 16
## 1213 1:03:26.5 +10:00.9 <NA> 2014-2015 Oestersund 16
## 1214 1:03:28.7 +10:03.1 <NA> 2014-2015 Oestersund 16
## 1215 1:03:29.8 +10:04.2 <NA> 2014-2015 Oestersund 16
## 1216 1:03:30.7 +10:05.1 <NA> 2014-2015 Oestersund 16
## 1217 1:03:36.8 +10:11.2 <NA> 2014-2015 Oestersund 16
## 1218 1:03:37.9 +10:12.3 <NA> 2014-2015 Oestersund 16
## 1219 1:03:42.0 +10:16.4 <NA> 2014-2015 Oestersund 16
## 1220 1:03:45.2 +10:19.6 <NA> 2014-2015 Oestersund 16
## 1221 1:03:49.8 +10:24.2 <NA> 2014-2015 Oestersund 16
## 1222 1:04:14.0 +10:48.4 <NA> 2014-2015 Oestersund 16
## 1223 1:04:23.7 +10:58.1 <NA> 2014-2015 Oestersund 16
## 1224 1:04:27.3 +11:01.7 <NA> 2014-2015 Oestersund 16
## 1225 1:04:31.9 +11:06.3 <NA> 2014-2015 Oestersund 16
## 1226 1:04:41.8 +11:16.2 <NA> 2014-2015 Oestersund 16
## 1227 1:04:58.9 +11:33.3 <NA> 2014-2015 Oestersund 16
## 1228 1:05:01.1 +11:35.5 <NA> 2014-2015 Oestersund 16
## 1229 1:05:32.0 +12:06.4 <NA> 2014-2015 Oestersund 16
## 1230 1:05:32.9 +12:07.3 <NA> 2014-2015 Oestersund 16
## 1231 1:05:38.2 +12:12.6 <NA> 2014-2015 Oestersund 16
## 1232 1:05:41.4 +12:15.8 <NA> 2014-2015 Oestersund 16
## 1233 1:06:25.5 +12:59.9 <NA> 2014-2015 Oestersund 16
## 1234 1:06:36.8 +13:11.2 <NA> 2014-2015 Oestersund 16
## 1235 1:07:05.6 +13:40.0 <NA> 2014-2015 Oestersund 16
## 1236 1:07:09.3 +13:43.7 <NA> 2014-2015 Oestersund 16
## 1237 1:07:55.8 +14:30.2 <NA> 2014-2015 Oestersund 16
## 1238 1:09:35.5 +16:09.9 <NA> 2014-2015 Oestersund 16
## 1239 1:11:06.6 +17:41.0 <NA> 2014-2015 Oestersund 16
## 1240 <NA> 2014-2015 Oestersund 16
## 1241 <NA> 2014-2015 Oestersund 16
## 1242 33:54.9 33:54.9 2014-2015 Oestersund 17
## 1243 34:04.9 +10.0 33:16.9 2014-2015 Oestersund 17
## 1244 34:21.2 +26.3 33:32.2 2014-2015 Oestersund 17
## 1245 34:21.6 +26.7 33:52.6 2014-2015 Oestersund 17
## 1246 34:21.7 +26.8 32:36.7 2014-2015 Oestersund 17
## 1247 34:23.0 +28.1 33:19.0 2014-2015 Oestersund 17
## 1248 34:26.5 +31.6 32:58.5 2014-2015 Oestersund 17
## 1249 34:37.9 +43.0 33:19.9 2014-2015 Oestersund 17
## 1250 34:51.9 +57.0 33:25.9 2014-2015 Oestersund 17
## 1251 34:58.1 +1:03.2 34:01.1 2014-2015 Oestersund 17
## 1252 35:02.6 +1:07.7 34:17.6 2014-2015 Oestersund 17
## 1253 35:09.9 +1:15.0 33:34.9 2014-2015 Oestersund 17
## 1254 35:21.5 +1:26.6 33:27.5 2014-2015 Oestersund 17
## 1255 35:24.8 +1:29.9 34:12.8 2014-2015 Oestersund 17
## 1256 35:25.0 +1:30.1 33:12.0 2014-2015 Oestersund 17
## 1257 35:25.8 +1:30.9 34:25.8 2014-2015 Oestersund 17
## 1258 35:30.6 +1:35.7 34:02.6 2014-2015 Oestersund 17
## 1259 35:30.7 +1:35.8 33:53.7 2014-2015 Oestersund 17
## 1260 35:47.4 +1:52.5 35:08.4 2014-2015 Oestersund 17
## 1261 35:50.0 +1:55.1 35:22.0 2014-2015 Oestersund 17
## 1262 35:56.7 +2:01.8 34:08.7 2014-2015 Oestersund 17
## 1263 36:01.5 +2:06.6 34:01.5 2014-2015 Oestersund 17
## 1264 36:03.8 +2:08.9 34:55.8 2014-2015 Oestersund 17
## 1265 36:05.2 +2:10.3 35:03.2 2014-2015 Oestersund 17
## 1266 36:05.4 +2:10.5 34:19.4 2014-2015 Oestersund 17
## 1267 36:06.1 +2:11.2 34:00.1 2014-2015 Oestersund 17
## 1268 36:14.7 +2:19.8 34:10.7 2014-2015 Oestersund 17
## 1269 36:23.2 +2:28.3 35:15.2 2014-2015 Oestersund 17
## 1270 36:24.2 +2:29.3 34:38.2 2014-2015 Oestersund 17
## 1271 36:26.0 +2:31.1 34:22.0 2014-2015 Oestersund 17
## 1272 36:27.1 +2:32.2 34:21.1 2014-2015 Oestersund 17
## 1273 36:34.9 +2:40.0 34:41.9 2014-2015 Oestersund 17
## 1274 36:39.5 +2:44.6 35:28.5 2014-2015 Oestersund 17
## 1275 36:49.5 +2:54.6 35:17.5 2014-2015 Oestersund 17
## 1276 36:49.8 +2:54.9 35:31.8 2014-2015 Oestersund 17
## 1277 36:53.6 +2:58.7 35:14.6 2014-2015 Oestersund 17
## 1278 37:03.4 +3:08.5 34:29.4 2014-2015 Oestersund 17
## 1279 37:04.3 +3:09.4 35:44.3 2014-2015 Oestersund 17
## 1280 37:09.9 +3:15.0 35:13.9 2014-2015 Oestersund 17
## 1281 37:14.0 +3:19.1 35:34.0 2014-2015 Oestersund 17
## 1282 37:40.2 +3:45.3 2014-2015 Oestersund 17
## 1283 37:41.1 +3:46.2 35:19.1 2014-2015 Oestersund 17
## 1284 37:41.7 +3:46.8 35:23.7 2014-2015 Oestersund 17
## 1285 37:46.9 +3:52.0 36:19.9 2014-2015 Oestersund 17
## 1286 38:08.9 +4:14.0 36:15.9 2014-2015 Oestersund 17
## 1287 38:23.4 +4:28.5 35:57.4 2014-2015 Oestersund 17
## 1288 38:26.9 +4:32.0 35:55.9 2014-2015 Oestersund 17
## 1289 38:29.1 +4:34.2 35:54.1 2014-2015 Oestersund 17
## 1290 38:34.2 +4:39.3 36:01.2 2014-2015 Oestersund 17
## 1291 38:43.5 +4:48.6 36:17.5 2014-2015 Oestersund 17
## 1292 38:53.5 +4:58.6 36:16.5 2014-2015 Oestersund 17
## 1293 38:54.2 +4:59.3 36:44.2 2014-2015 Oestersund 17
## 1294 39:21.3 +5:26.4 36:46.3 2014-2015 Oestersund 17
## 1295 39:39.0 +5:44.1 37:07.0 2014-2015 Oestersund 17
## 1296 39:40.2 +5:45.3 37:26.2 2014-2015 Oestersund 17
## 1297 39:51.3 +5:56.4 37:18.3 2014-2015 Oestersund 17
## 1298 39:55.8 +6:00.9 38:22.8 2014-2015 Oestersund 17
## 1299 40:09.2 +6:14.3 38:05.2 2014-2015 Oestersund 17
## 1300 40:20.2 +6:25.3 38:06.2 2014-2015 Oestersund 17
## 1301 40:26.1 +6:31.2 38:12.1 2014-2015 Oestersund 17
## 1302 24:46.6 <NA> 2014-2015 Oestersund 18
## 1303 25:14.9 +28.3 <NA> 2014-2015 Oestersund 18
## 1304 25:15.3 +28.7 <NA> 2014-2015 Oestersund 18
## 1305 25:25.5 +38.9 <NA> 2014-2015 Oestersund 18
## 1306 25:31.6 +45.0 <NA> 2014-2015 Oestersund 18
## 1307 25:34.7 +48.1 <NA> 2014-2015 Oestersund 18
## 1308 25:36.0 +49.4 <NA> 2014-2015 Oestersund 18
## 1309 25:43.2 +56.6 <NA> 2014-2015 Oestersund 18
## 1310 25:46.9 +1:00.3 <NA> 2014-2015 Oestersund 18
## 1311 25:49.0 +1:02.4 <NA> 2014-2015 Oestersund 18
## 1312 25:50.9 +1:04.3 <NA> 2014-2015 Oestersund 18
## 1313 25:54.9 +1:08.3 <NA> 2014-2015 Oestersund 18
## 1314 25:55.0 +1:08.4 <NA> 2014-2015 Oestersund 18
## 1315 25:57.6 +1:11.0 <NA> 2014-2015 Oestersund 18
## 1316 25:58.4 +1:11.8 <NA> 2014-2015 Oestersund 18
## 1317 26:04.6 +1:18.0 <NA> 2014-2015 Oestersund 18
## 1318 26:04.8 +1:18.2 <NA> 2014-2015 Oestersund 18
## 1319 26:05.1 +1:18.5 <NA> 2014-2015 Oestersund 18
## 1320 26:06.5 +1:19.9 <NA> 2014-2015 Oestersund 18
## 1321 26:12.1 +1:25.5 <NA> 2014-2015 Oestersund 18
## 1322 26:13.5 +1:26.9 <NA> 2014-2015 Oestersund 18
## 1323 26:14.9 +1:28.3 <NA> 2014-2015 Oestersund 18
## 1324 26:15.0 +1:28.4 <NA> 2014-2015 Oestersund 18
## 1325 26:18.7 +1:32.1 <NA> 2014-2015 Oestersund 18
## 1326 26:19.4 +1:32.8 <NA> 2014-2015 Oestersund 18
## 1327 26:21.3 +1:34.7 <NA> 2014-2015 Oestersund 18
## 1328 26:23.3 +1:36.7 <NA> 2014-2015 Oestersund 18
## 1329 26:25.9 +1:39.3 <NA> 2014-2015 Oestersund 18
## 1330 26:26.7 +1:40.1 <NA> 2014-2015 Oestersund 18
## 1331 26:31.2 +1:44.6 <NA> 2014-2015 Oestersund 18
## 1332 26:32.4 +1:45.8 <NA> 2014-2015 Oestersund 18
## 1333 26:32.9 +1:46.3 <NA> 2014-2015 Oestersund 18
## 1334 26:35.0 +1:48.4 <NA> 2014-2015 Oestersund 18
## 1335 26:39.3 +1:52.7 <NA> 2014-2015 Oestersund 18
## 1336 26:39.8 +1:53.2 <NA> 2014-2015 Oestersund 18
## 1337 26:40.4 +1:53.8 <NA> 2014-2015 Oestersund 18
## 1338 26:42.7 +1:56.1 <NA> 2014-2015 Oestersund 18
## 1339 26:46.4 +1:59.8 <NA> 2014-2015 Oestersund 18
## 1340 26:50.1 +2:03.5 <NA> 2014-2015 Oestersund 18
## 1341 26:50.7 +2:04.1 <NA> 2014-2015 Oestersund 18
## 1342 26:50.8 +2:04.2 <NA> 2014-2015 Oestersund 18
## 1343 26:52.8 +2:06.2 <NA> 2014-2015 Oestersund 18
## 1344 26:52.9 +2:06.3 <NA> 2014-2015 Oestersund 18
## 1345 26:56.7 +2:10.1 <NA> 2014-2015 Oestersund 18
## 1346 26:59.8 +2:13.2 <NA> 2014-2015 Oestersund 18
## 1347 27:00.3 +2:13.7 <NA> 2014-2015 Oestersund 18
## 1348 27:00.8 +2:14.2 <NA> 2014-2015 Oestersund 18
## 1349 27:00.9 +2:14.3 <NA> 2014-2015 Oestersund 18
## 1350 27:04.2 +2:17.6 <NA> 2014-2015 Oestersund 18
## 1351 27:08.9 +2:22.3 <NA> 2014-2015 Oestersund 18
## 1352 27:12.4 +2:25.8 <NA> 2014-2015 Oestersund 18
## 1353 27:12.7 +2:26.1 <NA> 2014-2015 Oestersund 18
## 1354 27:18.0 +2:31.4 <NA> 2014-2015 Oestersund 18
## 1355 27:18.8 +2:32.2 <NA> 2014-2015 Oestersund 18
## 1356 27:19.8 +2:33.2 <NA> 2014-2015 Oestersund 18
## 1357 27:20.0 +2:33.4 <NA> 2014-2015 Oestersund 18
## 1358 27:20.6 +2:34.0 <NA> 2014-2015 Oestersund 18
## 1359 27:21.3 +2:34.7 <NA> 2014-2015 Oestersund 18
## 1360 27:21.8 +2:35.2 <NA> 2014-2015 Oestersund 18
## 1361 27:23.3 +2:36.7 <NA> 2014-2015 Oestersund 18
## 1362 27:25.7 +2:39.1 <NA> 2014-2015 Oestersund 18
## 1363 27:26.1 +2:39.5 <NA> 2014-2015 Oestersund 18
## 1364 27:28.7 +2:42.1 <NA> 2014-2015 Oestersund 18
## 1365 27:30.0 +2:43.4 <NA> 2014-2015 Oestersund 18
## 1366 27:33.9 +2:47.3 <NA> 2014-2015 Oestersund 18
## 1367 27:34.6 +2:48.0 <NA> 2014-2015 Oestersund 18
## 1368 27:43.3 +2:56.7 <NA> 2014-2015 Oestersund 18
## 1369 27:45.3 +2:58.7 <NA> 2014-2015 Oestersund 18
## 1370 27:47.8 +3:01.2 <NA> 2014-2015 Oestersund 18
## 1371 27:51.7 +3:05.1 <NA> 2014-2015 Oestersund 18
## 1372 27:51.7 +3:05.1 <NA> 2014-2015 Oestersund 18
## 1373 27:58.6 +3:12.0 <NA> 2014-2015 Oestersund 18
## 1374 28:00.5 +3:13.9 <NA> 2014-2015 Oestersund 18
## 1375 28:00.6 +3:14.0 <NA> 2014-2015 Oestersund 18
## 1376 28:00.9 +3:14.3 <NA> 2014-2015 Oestersund 18
## 1377 28:01.7 +3:15.1 <NA> 2014-2015 Oestersund 18
## 1378 28:07.7 +3:21.1 <NA> 2014-2015 Oestersund 18
## 1379 28:08.9 +3:22.3 <NA> 2014-2015 Oestersund 18
## 1380 28:10.5 +3:23.9 <NA> 2014-2015 Oestersund 18
## 1381 28:12.1 +3:25.5 <NA> 2014-2015 Oestersund 18
## 1382 28:18.1 +3:31.5 <NA> 2014-2015 Oestersund 18
## 1383 28:18.2 +3:31.6 <NA> 2014-2015 Oestersund 18
## 1384 28:21.7 +3:35.1 <NA> 2014-2015 Oestersund 18
## 1385 28:25.4 +3:38.8 <NA> 2014-2015 Oestersund 18
## 1386 28:32.4 +3:45.8 <NA> 2014-2015 Oestersund 18
## 1387 28:33.9 +3:47.3 <NA> 2014-2015 Oestersund 18
## 1388 28:35.4 +3:48.8 <NA> 2014-2015 Oestersund 18
## 1389 28:40.9 +3:54.3 <NA> 2014-2015 Oestersund 18
## 1390 28:48.2 +4:01.6 <NA> 2014-2015 Oestersund 18
## 1391 29:01.6 +4:15.0 <NA> 2014-2015 Oestersund 18
## 1392 29:08.1 +4:21.5 <NA> 2014-2015 Oestersund 18
## 1393 29:09.9 +4:23.3 <NA> 2014-2015 Oestersund 18
## 1394 29:12.9 +4:26.3 <NA> 2014-2015 Oestersund 18
## 1395 29:18.5 +4:31.9 <NA> 2014-2015 Oestersund 18
## 1396 30:00.2 +5:13.6 <NA> 2014-2015 Oestersund 18
## 1397 30:04.7 +5:18.1 <NA> 2014-2015 Oestersund 18
## 1398 30:11.2 +5:24.6 <NA> 2014-2015 Oestersund 18
## 1399 30:36.2 +5:49.6 <NA> 2014-2015 Oestersund 18
## 1400 30:56.6 +6:10.0 <NA> 2014-2015 Oestersund 18
## 1401 31:43.8 +6:57.2 <NA> 2014-2015 Oestersund 18
## 1402 <NA> 2014-2015 Oestersund 18
## 1403 <NA> 2014-2015 Oestersund 18
## 1404 51:26.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1405 51:41.0 +14.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1406 52:15.6 +48.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1407 53:03.4 +1:36.6 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1408 53:14.3 +1:47.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1409 53:22.5 +1:55.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1410 53:26.2 +1:59.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1411 53:37.6 +2:10.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1412 53:38.5 +2:11.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1413 53:47.5 +2:20.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1414 53:57.0 +2:30.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1415 54:05.3 +2:38.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1416 54:10.9 +2:44.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1417 54:16.1 +2:49.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1418 54:17.1 +2:50.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1419 54:23.9 +2:57.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1420 54:24.6 +2:57.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1421 54:26.5 +2:59.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1422 54:31.4 +3:04.6 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1423 54:32.1 +3:05.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1424 54:38.8 +3:12.0 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1425 54:44.0 +3:17.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1426 54:45.8 +3:19.0 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1427 54:58.5 +3:31.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1428 55:02.9 +3:36.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1429 55:09.9 +3:43.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1430 55:12.1 +3:45.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1431 55:20.0 +3:53.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1432 55:23.7 +3:56.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1433 55:31.7 +4:04.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1434 55:33.2 +4:06.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1435 55:35.3 +4:08.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1436 55:46.3 +4:19.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1437 55:46.5 +4:19.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1438 55:52.3 +4:25.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1439 55:54.1 +4:27.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1440 55:59.6 +4:32.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1441 56:05.3 +4:38.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1442 56:09.6 +4:42.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1443 56:21.2 +4:54.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1444 56:22.0 +4:55.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1445 56:23.5 +4:56.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1446 56:27.9 +5:01.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1447 56:28.0 +5:01.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1448 56:30.0 +5:03.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1449 56:32.3 +5:05.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1450 56:37.1 +5:10.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1451 56:41.5 +5:14.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1452 56:43.6 +5:16.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1453 56:45.8 +5:19.0 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1454 56:54.2 +5:27.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1455 57:18.3 +5:51.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1456 57:19.4 +5:52.6 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1457 57:27.5 +6:00.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1458 57:34.0 +6:07.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1459 57:35.2 +6:08.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1460 57:41.9 +6:15.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1461 57:47.0 +6:20.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1462 57:53.0 +6:26.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1463 57:59.7 +6:32.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1464 58:00.8 +6:34.0 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1465 58:15.2 +6:48.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1466 58:30.0 +7:03.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1467 58:34.1 +7:07.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1468 58:36.7 +7:09.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1469 59:05.3 +7:38.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1470 59:07.9 +7:41.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1471 59:12.6 +7:45.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1472 59:17.5 +7:50.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1473 59:20.9 +7:54.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1474 59:22.3 +7:55.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1475 59:29.2 +8:02.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1476 59:48.7 +8:21.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1477 59:50.5 +8:23.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1478 1:00:01.5 +8:34.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1479 1:00:07.9 +8:41.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1480 1:00:22.9 +8:56.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1481 1:00:25.9 +8:59.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1482 1:00:30.5 +9:03.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1483 1:00:42.9 +9:16.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1484 1:00:53.9 +9:27.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1485 1:01:15.3 +9:48.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1486 1:01:24.5 +9:57.7 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1487 1:01:26.6 +9:59.8 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1488 1:01:31.7 +10:04.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1489 1:01:34.1 +10:07.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1490 1:02:12.9 +10:46.1 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1491 1:02:24.1 +10:57.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1492 1:02:32.7 +11:05.9 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1493 1:02:35.1 +11:08.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1494 1:02:52.2 +11:25.4 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1495 1:03:00.0 +11:33.2 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1496 1:03:11.1 +11:44.3 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1497 1:07:07.3 +15:40.5 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1498 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1499 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1500 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1501 <NA> 2014-2015 Oslo_Holmenkollen 19
## 1502 24:57.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1503 25:00.3 +3.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1504 25:12.4 +15.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1505 25:15.5 +18.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1506 25:16.1 +19.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1507 25:24.4 +27.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1508 25:26.4 +29.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1509 25:26.9 +29.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1510 25:30.0 +33.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1511 25:32.4 +35.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1512 25:34.7 +37.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1513 25:43.3 +46.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1514 25:44.8 +47.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1515 25:46.0 +49.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1516 25:46.9 +49.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1517 25:49.3 +52.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1518 25:49.5 +52.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1519 25:50.4 +53.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1520 25:51.9 +54.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1521 25:57.3 +1:00.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1522 25:58.2 +1:01.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1523 25:59.1 +1:02.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1524 26:02.3 +1:05.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1525 26:02.4 +1:05.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1526 26:02.8 +1:05.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1527 26:07.2 +1:10.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1528 26:14.8 +1:17.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1529 26:15.7 +1:18.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1530 26:18.7 +1:21.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1531 26:22.7 +1:25.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1532 26:24.2 +1:27.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1533 26:26.3 +1:29.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1534 26:26.6 +1:29.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1535 26:27.5 +1:30.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1536 26:31.1 +1:34.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1537 26:31.9 +1:34.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1538 26:36.8 +1:39.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1539 26:37.5 +1:40.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1540 26:37.7 +1:40.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1541 26:37.9 +1:40.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1542 26:38.0 +1:41.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1543 26:39.8 +1:42.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1544 26:40.8 +1:43.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1545 26:41.8 +1:44.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1546 26:42.7 +1:45.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1547 26:44.6 +1:47.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1548 26:48.2 +1:51.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1549 26:50.5 +1:53.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1550 26:50.8 +1:53.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1551 26:51.2 +1:54.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1552 26:52.9 +1:55.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1553 26:53.3 +1:56.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1554 26:54.8 +1:57.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1555 26:55.4 +1:58.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1556 26:59.8 +2:02.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1557 27:03.6 +2:06.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1558 27:04.9 +2:07.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1559 27:06.5 +2:09.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1560 27:07.3 +2:10.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1561 27:08.1 +2:11.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1562 27:09.5 +2:12.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1563 27:10.7 +2:13.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1564 27:12.6 +2:15.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1565 27:16.0 +2:19.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1566 27:16.5 +2:19.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1567 27:16.5 +2:19.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1568 27:18.4 +2:21.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1569 27:20.9 +2:23.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1570 27:22.5 +2:25.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1571 27:30.6 +2:33.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1572 27:31.3 +2:34.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1573 27:35.2 +2:38.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1574 27:36.0 +2:39.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1575 27:44.1 +2:47.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1576 27:45.2 +2:48.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1577 27:47.5 +2:50.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1578 27:51.9 +2:54.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1579 27:53.7 +2:56.7 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1580 27:54.6 +2:57.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1581 28:03.6 +3:06.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1582 28:13.9 +3:16.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1583 28:15.5 +3:18.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1584 28:16.8 +3:19.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1585 28:17.4 +3:20.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1586 28:19.3 +3:22.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1587 28:27.1 +3:30.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1588 28:28.2 +3:31.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1589 28:45.3 +3:48.3 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1590 28:45.4 +3:48.4 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1591 28:55.6 +3:58.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1592 28:57.1 +4:00.1 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1593 28:57.5 +4:00.5 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1594 28:57.8 +4:00.8 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1595 29:14.9 +4:17.9 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1596 29:16.6 +4:19.6 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1597 29:36.0 +4:39.0 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1598 30:35.2 +5:38.2 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1599 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1600 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1601 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1602 <NA> 2014-2015 Oslo_Holmenkollen 20
## 1603 35:16.8 <NA> 2014-2015 Pokljuka 21
## 1604 35:18.0 +1.2 <NA> 2014-2015 Pokljuka 21
## 1605 35:18.2 +1.4 <NA> 2014-2015 Pokljuka 21
## 1606 35:18.3 +1.5 <NA> 2014-2015 Pokljuka 21
## 1607 35:21.6 +4.8 <NA> 2014-2015 Pokljuka 21
## 1608 35:37.2 +20.4 <NA> 2014-2015 Pokljuka 21
## 1609 35:39.2 +22.4 <NA> 2014-2015 Pokljuka 21
## 1610 35:46.6 +29.8 <NA> 2014-2015 Pokljuka 21
## 1611 35:47.2 +30.4 <NA> 2014-2015 Pokljuka 21
## 1612 35:51.5 +34.7 <NA> 2014-2015 Pokljuka 21
## 1613 35:54.2 +37.4 <NA> 2014-2015 Pokljuka 21
## 1614 36:02.1 +45.3 <NA> 2014-2015 Pokljuka 21
## 1615 36:05.6 +48.8 <NA> 2014-2015 Pokljuka 21
## 1616 36:06.1 +49.3 <NA> 2014-2015 Pokljuka 21
## 1617 36:14.3 +57.5 <NA> 2014-2015 Pokljuka 21
## 1618 36:17.4 +1:00.6 <NA> 2014-2015 Pokljuka 21
## 1619 36:24.0 +1:07.2 <NA> 2014-2015 Pokljuka 21
## 1620 36:27.3 +1:10.5 <NA> 2014-2015 Pokljuka 21
## 1621 36:32.8 +1:16.0 <NA> 2014-2015 Pokljuka 21
## 1622 36:32.9 +1:16.1 <NA> 2014-2015 Pokljuka 21
## 1623 36:50.3 +1:33.5 <NA> 2014-2015 Pokljuka 21
## 1624 36:51.4 +1:34.6 <NA> 2014-2015 Pokljuka 21
## 1625 37:11.0 +1:54.2 <NA> 2014-2015 Pokljuka 21
## 1626 37:26.2 +2:09.4 <NA> 2014-2015 Pokljuka 21
## 1627 37:43.5 +2:26.7 <NA> 2014-2015 Pokljuka 21
## 1628 37:49.1 +2:32.3 <NA> 2014-2015 Pokljuka 21
## 1629 37:49.1 +2:32.3 <NA> 2014-2015 Pokljuka 21
## 1630 37:50.5 +2:33.7 <NA> 2014-2015 Pokljuka 21
## 1631 38:49.5 +3:32.7 <NA> 2014-2015 Pokljuka 21
## 1632 42:34.8 +7:18.0 <NA> 2014-2015 Pokljuka 21
## 1633 30:43.3 30:19.3 2014-2015 Pokljuka 22
## 1634 31:01.1 +17.8 31:01.1 2014-2015 Pokljuka 22
## 1635 31:42.8 +59.5 31:12.8 2014-2015 Pokljuka 22
## 1636 31:56.2 +1:12.9 31:44.2 2014-2015 Pokljuka 22
## 1637 31:57.5 +1:14.2 31:01.5 2014-2015 Pokljuka 22
## 1638 31:58.4 +1:15.1 30:12.4 2014-2015 Pokljuka 22
## 1639 32:00.8 +1:17.5 31:06.8 2014-2015 Pokljuka 22
## 1640 32:03.5 +1:20.2 31:16.5 2014-2015 Pokljuka 22
## 1641 32:03.7 +1:20.4 30:42.7 2014-2015 Pokljuka 22
## 1642 32:11.2 +1:27.9 31:17.2 2014-2015 Pokljuka 22
## 1643 32:12.1 +1:28.8 30:56.1 2014-2015 Pokljuka 22
## 1644 32:14.3 +1:31.0 31:02.3 2014-2015 Pokljuka 22
## 1645 32:18.1 +1:34.8 30:42.1 2014-2015 Pokljuka 22
## 1646 32:21.0 +1:37.7 31:10.0 2014-2015 Pokljuka 22
## 1647 32:24.7 +1:41.4 30:49.7 2014-2015 Pokljuka 22
## 1648 32:24.8 +1:41.5 31:50.8 2014-2015 Pokljuka 22
## 1649 32:27.2 +1:43.9 31:49.2 2014-2015 Pokljuka 22
## 1650 32:27.5 +1:44.2 31:35.5 2014-2015 Pokljuka 22
## 1651 32:33.8 +1:50.5 31:57.8 2014-2015 Pokljuka 22
## 1652 32:38.7 +1:55.4 30:59.7 2014-2015 Pokljuka 22
## 1653 32:39.3 +1:56.0 31:18.3 2014-2015 Pokljuka 22
## 1654 32:40.1 +1:56.8 31:24.1 2014-2015 Pokljuka 22
## 1655 32:40.2 +1:56.9 31:11.2 2014-2015 Pokljuka 22
## 1656 32:40.7 +1:57.4 30:59.7 2014-2015 Pokljuka 22
## 1657 32:41.3 +1:58.0 31:19.3 2014-2015 Pokljuka 22
## 1658 32:48.2 +2:04.9 31:52.2 2014-2015 Pokljuka 22
## 1659 32:48.2 +2:04.9 31:07.2 2014-2015 Pokljuka 22
## 1660 32:50.6 +2:07.3 31:57.6 2014-2015 Pokljuka 22
## 1661 32:50.6 +2:07.3 31:56.6 2014-2015 Pokljuka 22
## 1662 32:51.4 +2:08.1 31:25.4 2014-2015 Pokljuka 22
## 1663 32:52.1 +2:08.8 31:26.1 2014-2015 Pokljuka 22
## 1664 32:57.2 +2:13.9 31:16.2 2014-2015 Pokljuka 22
## 1665 33:06.0 +2:22.7 31:31.0 2014-2015 Pokljuka 22
## 1666 33:06.1 +2:22.8 31:42.1 2014-2015 Pokljuka 22
## 1667 33:10.6 +2:27.3 32:27.6 2014-2015 Pokljuka 22
## 1668 33:17.4 +2:34.1 31:29.4 2014-2015 Pokljuka 22
## 1669 33:17.4 +2:34.1 32:09.4 2014-2015 Pokljuka 22
## 1670 33:17.4 +2:34.1 32:35.4 2014-2015 Pokljuka 22
## 1671 33:35.8 +2:52.5 32:09.8 2014-2015 Pokljuka 22
## 1672 33:40.5 +2:57.2 32:31.5 2014-2015 Pokljuka 22
## 1673 34:07.6 +3:24.3 33:17.6 2014-2015 Pokljuka 22
## 1674 34:12.1 +3:28.8 32:35.1 2014-2015 Pokljuka 22
## 1675 34:14.6 +3:31.3 32:17.6 2014-2015 Pokljuka 22
## 1676 34:19.0 +3:35.7 32:41.0 2014-2015 Pokljuka 22
## 1677 34:25.8 +3:42.5 32:23.8 2014-2015 Pokljuka 22
## 1678 34:31.5 +3:48.2 32:45.5 2014-2015 Pokljuka 22
## 1679 34:33.8 +3:50.5 32:37.8 2014-2015 Pokljuka 22
## 1680 34:38.7 +3:55.4 33:35.7 2014-2015 Pokljuka 22
## 1681 34:43.2 +3:59.9 33:07.2 2014-2015 Pokljuka 22
## 1682 34:47.2 +4:03.9 33:11.2 2014-2015 Pokljuka 22
## 1683 34:51.2 +4:07.9 32:55.2 2014-2015 Pokljuka 22
## 1684 34:54.9 +4:11.6 33:06.9 2014-2015 Pokljuka 22
## 1685 35:19.0 +4:35.7 33:13.0 2014-2015 Pokljuka 22
## 1686 35:27.0 +4:43.7 33:35.0 2014-2015 Pokljuka 22
## 1687 35:35.1 +4:51.8 33:28.1 2014-2015 Pokljuka 22
## 1688 35:50.8 +5:07.5 34:03.8 2014-2015 Pokljuka 22
## 1689 36:46.2 +6:02.9 34:39.2 2014-2015 Pokljuka 22
## 1690 37:04.8 +6:21.5 35:08.8 2014-2015 Pokljuka 22
## 1691 37:50.8 +7:07.5 36:04.8 2014-2015 Pokljuka 22
## 1692 2014-2015 Pokljuka 22
## 1693 23:18.6 <NA> 2014-2015 Pokljuka 23
## 1694 23:30.5 +11.9 <NA> 2014-2015 Pokljuka 23
## 1695 23:42.7 +24.1 <NA> 2014-2015 Pokljuka 23
## 1696 23:48.5 +29.9 <NA> 2014-2015 Pokljuka 23
## 1697 23:52.7 +34.1 <NA> 2014-2015 Pokljuka 23
## 1698 23:54.9 +36.3 <NA> 2014-2015 Pokljuka 23
## 1699 23:56.7 +38.1 <NA> 2014-2015 Pokljuka 23
## 1700 24:00.4 +41.8 <NA> 2014-2015 Pokljuka 23
## 1701 24:01.2 +42.6 <NA> 2014-2015 Pokljuka 23
## 1702 24:05.3 +46.7 <NA> 2014-2015 Pokljuka 23
## 1703 24:08.7 +50.1 <NA> 2014-2015 Pokljuka 23
## 1704 24:10.7 +52.1 <NA> 2014-2015 Pokljuka 23
## 1705 24:11.8 +53.2 <NA> 2014-2015 Pokljuka 23
## 1706 24:12.3 +53.7 <NA> 2014-2015 Pokljuka 23
## 1707 24:12.5 +53.9 <NA> 2014-2015 Pokljuka 23
## 1708 24:12.9 +54.3 <NA> 2014-2015 Pokljuka 23
## 1709 24:14.5 +55.9 <NA> 2014-2015 Pokljuka 23
## 1710 24:14.6 +56.0 <NA> 2014-2015 Pokljuka 23
## 1711 24:21.2 +1:02.6 <NA> 2014-2015 Pokljuka 23
## 1712 24:26.3 +1:07.7 <NA> 2014-2015 Pokljuka 23
## 1713 24:28.0 +1:09.4 <NA> 2014-2015 Pokljuka 23
## 1714 24:29.3 +1:10.7 <NA> 2014-2015 Pokljuka 23
## 1715 24:30.8 +1:12.2 <NA> 2014-2015 Pokljuka 23
## 1716 24:34.7 +1:16.1 <NA> 2014-2015 Pokljuka 23
## 1717 24:35.0 +1:16.4 <NA> 2014-2015 Pokljuka 23
## 1718 24:39.3 +1:20.7 <NA> 2014-2015 Pokljuka 23
## 1719 24:39.4 +1:20.8 <NA> 2014-2015 Pokljuka 23
## 1720 24:40.7 +1:22.1 <NA> 2014-2015 Pokljuka 23
## 1721 24:42.3 +1:23.7 <NA> 2014-2015 Pokljuka 23
## 1722 24:44.4 +1:25.8 <NA> 2014-2015 Pokljuka 23
## 1723 24:44.5 +1:25.9 <NA> 2014-2015 Pokljuka 23
## 1724 24:44.9 +1:26.3 <NA> 2014-2015 Pokljuka 23
## 1725 24:47.4 +1:28.8 <NA> 2014-2015 Pokljuka 23
## 1726 24:53.5 +1:34.9 <NA> 2014-2015 Pokljuka 23
## 1727 24:53.9 +1:35.3 <NA> 2014-2015 Pokljuka 23
## 1728 24:54.2 +1:35.6 <NA> 2014-2015 Pokljuka 23
## 1729 24:54.8 +1:36.2 <NA> 2014-2015 Pokljuka 23
## 1730 24:55.0 +1:36.4 <NA> 2014-2015 Pokljuka 23
## 1731 24:55.2 +1:36.6 <NA> 2014-2015 Pokljuka 23
## 1732 24:56.8 +1:38.2 <NA> 2014-2015 Pokljuka 23
## 1733 24:57.1 +1:38.5 <NA> 2014-2015 Pokljuka 23
## 1734 24:59.4 +1:40.8 <NA> 2014-2015 Pokljuka 23
## 1735 24:59.5 +1:40.9 <NA> 2014-2015 Pokljuka 23
## 1736 25:00.0 +1:41.4 <NA> 2014-2015 Pokljuka 23
## 1737 25:04.2 +1:45.6 <NA> 2014-2015 Pokljuka 23
## 1738 25:04.6 +1:46.0 <NA> 2014-2015 Pokljuka 23
## 1739 25:04.6 +1:46.0 <NA> 2014-2015 Pokljuka 23
## 1740 25:05.5 +1:46.9 <NA> 2014-2015 Pokljuka 23
## 1741 25:06.1 +1:47.5 <NA> 2014-2015 Pokljuka 23
## 1742 25:06.2 +1:47.6 <NA> 2014-2015 Pokljuka 23
## 1743 25:10.3 +1:51.7 <NA> 2014-2015 Pokljuka 23
## 1744 25:14.2 +1:55.6 <NA> 2014-2015 Pokljuka 23
## 1745 25:14.3 +1:55.7 <NA> 2014-2015 Pokljuka 23
## 1746 25:14.4 +1:55.8 <NA> 2014-2015 Pokljuka 23
## 1747 25:15.4 +1:56.8 <NA> 2014-2015 Pokljuka 23
## 1748 25:20.8 +2:02.2 <NA> 2014-2015 Pokljuka 23
## 1749 25:22.0 +2:03.4 <NA> 2014-2015 Pokljuka 23
## 1750 25:24.7 +2:06.1 <NA> 2014-2015 Pokljuka 23
## 1751 25:25.1 +2:06.5 <NA> 2014-2015 Pokljuka 23
## 1752 25:25.7 +2:07.1 <NA> 2014-2015 Pokljuka 23
## 1753 25:32.1 +2:13.5 <NA> 2014-2015 Pokljuka 23
## 1754 25:35.7 +2:17.1 <NA> 2014-2015 Pokljuka 23
## 1755 25:38.1 +2:19.5 <NA> 2014-2015 Pokljuka 23
## 1756 25:41.2 +2:22.6 <NA> 2014-2015 Pokljuka 23
## 1757 25:42.7 +2:24.1 <NA> 2014-2015 Pokljuka 23
## 1758 25:45.7 +2:27.1 <NA> 2014-2015 Pokljuka 23
## 1759 25:47.2 +2:28.6 <NA> 2014-2015 Pokljuka 23
## 1760 25:47.2 +2:28.6 <NA> 2014-2015 Pokljuka 23
## 1761 25:51.0 +2:32.4 <NA> 2014-2015 Pokljuka 23
## 1762 25:53.5 +2:34.9 <NA> 2014-2015 Pokljuka 23
## 1763 25:54.0 +2:35.4 <NA> 2014-2015 Pokljuka 23
## 1764 25:57.3 +2:38.7 <NA> 2014-2015 Pokljuka 23
## 1765 26:04.4 +2:45.8 <NA> 2014-2015 Pokljuka 23
## 1766 26:05.8 +2:47.2 <NA> 2014-2015 Pokljuka 23
## 1767 26:06.5 +2:47.9 <NA> 2014-2015 Pokljuka 23
## 1768 26:14.0 +2:55.4 <NA> 2014-2015 Pokljuka 23
## 1769 26:16.6 +2:58.0 <NA> 2014-2015 Pokljuka 23
## 1770 26:17.5 +2:58.9 <NA> 2014-2015 Pokljuka 23
## 1771 26:19.2 +3:00.6 <NA> 2014-2015 Pokljuka 23
## 1772 26:21.3 +3:02.7 <NA> 2014-2015 Pokljuka 23
## 1773 26:23.2 +3:04.6 <NA> 2014-2015 Pokljuka 23
## 1774 26:23.7 +3:05.1 <NA> 2014-2015 Pokljuka 23
## 1775 26:28.5 +3:09.9 <NA> 2014-2015 Pokljuka 23
## 1776 26:33.4 +3:14.8 <NA> 2014-2015 Pokljuka 23
## 1777 26:33.9 +3:15.3 <NA> 2014-2015 Pokljuka 23
## 1778 26:36.5 +3:17.9 <NA> 2014-2015 Pokljuka 23
## 1779 26:42.3 +3:23.7 <NA> 2014-2015 Pokljuka 23
## 1780 26:43.2 +3:24.6 <NA> 2014-2015 Pokljuka 23
## 1781 26:44.2 +3:25.6 <NA> 2014-2015 Pokljuka 23
## 1782 26:58.6 +3:40.0 <NA> 2014-2015 Pokljuka 23
## 1783 27:01.4 +3:42.8 <NA> 2014-2015 Pokljuka 23
## 1784 27:14.0 +3:55.4 <NA> 2014-2015 Pokljuka 23
## 1785 27:16.3 +3:57.7 <NA> 2014-2015 Pokljuka 23
## 1786 27:23.3 +4:04.7 <NA> 2014-2015 Pokljuka 23
## 1787 27:24.4 +4:05.8 <NA> 2014-2015 Pokljuka 23
## 1788 27:28.3 +4:09.7 <NA> 2014-2015 Pokljuka 23
## 1789 27:36.6 +4:18.0 <NA> 2014-2015 Pokljuka 23
## 1790 27:47.5 +4:28.9 <NA> 2014-2015 Pokljuka 23
## 1791 27:52.6 +4:34.0 <NA> 2014-2015 Pokljuka 23
## 1792 27:55.5 +4:36.9 <NA> 2014-2015 Pokljuka 23
## 1793 28:03.2 +4:44.6 <NA> 2014-2015 Pokljuka 23
## 1794 28:04.2 +4:45.6 <NA> 2014-2015 Pokljuka 23
## 1795 28:45.3 +5:26.7 <NA> 2014-2015 Pokljuka 23
## 1796 35:42.8 <NA> 2014-2015 Ruhpolding 24
## 1797 35:42.8 <NA> 2014-2015 Ruhpolding 24
## 1798 35:42.8 <NA> 2014-2015 Ruhpolding 24
## 1799 35:44.8 +2.0 <NA> 2014-2015 Ruhpolding 24
## 1800 35:45.4 +2.6 <NA> 2014-2015 Ruhpolding 24
## 1801 35:50.6 +7.8 <NA> 2014-2015 Ruhpolding 24
## 1802 35:51.1 +8.3 <NA> 2014-2015 Ruhpolding 24
## 1803 35:51.2 +8.4 <NA> 2014-2015 Ruhpolding 24
## 1804 35:51.9 +9.1 <NA> 2014-2015 Ruhpolding 24
## 1805 36:00.6 +17.8 <NA> 2014-2015 Ruhpolding 24
## 1806 36:07.2 +24.4 <NA> 2014-2015 Ruhpolding 24
## 1807 36:09.5 +26.7 <NA> 2014-2015 Ruhpolding 24
## 1808 36:11.1 +28.3 <NA> 2014-2015 Ruhpolding 24
## 1809 36:27.3 +44.5 <NA> 2014-2015 Ruhpolding 24
## 1810 36:38.0 +55.2 <NA> 2014-2015 Ruhpolding 24
## 1811 36:39.0 +56.2 <NA> 2014-2015 Ruhpolding 24
## 1812 36:39.4 +56.6 <NA> 2014-2015 Ruhpolding 24
## 1813 36:39.9 +57.1 <NA> 2014-2015 Ruhpolding 24
## 1814 36:49.0 +1:06.2 <NA> 2014-2015 Ruhpolding 24
## 1815 37:02.5 +1:19.7 <NA> 2014-2015 Ruhpolding 24
## 1816 37:02.6 +1:19.8 <NA> 2014-2015 Ruhpolding 24
## 1817 37:07.7 +1:24.9 <NA> 2014-2015 Ruhpolding 24
## 1818 37:13.6 +1:30.8 <NA> 2014-2015 Ruhpolding 24
## 1819 37:19.1 +1:36.3 <NA> 2014-2015 Ruhpolding 24
## 1820 37:19.5 +1:36.7 <NA> 2014-2015 Ruhpolding 24
## 1821 37:44.9 +2:02.1 <NA> 2014-2015 Ruhpolding 24
## 1822 37:54.8 +2:12.0 <NA> 2014-2015 Ruhpolding 24
## 1823 38:07.9 +2:25.1 <NA> 2014-2015 Ruhpolding 24
## 1824 38:46.2 +3:03.4 <NA> 2014-2015 Ruhpolding 24
## 1825 38:50.2 +3:07.4 <NA> 2014-2015 Ruhpolding 24
## 1826 23:59.2 <NA> 2014-2015 Ruhpolding 25
## 1827 24:23.7 +24.5 <NA> 2014-2015 Ruhpolding 25
## 1828 24:57.1 +57.9 <NA> 2014-2015 Ruhpolding 25
## 1829 25:03.2 +1:04.0 <NA> 2014-2015 Ruhpolding 25
## 1830 25:05.1 +1:05.9 <NA> 2014-2015 Ruhpolding 25
## 1831 25:05.9 +1:06.7 <NA> 2014-2015 Ruhpolding 25
## 1832 25:06.2 +1:07.0 <NA> 2014-2015 Ruhpolding 25
## 1833 25:09.1 +1:09.9 <NA> 2014-2015 Ruhpolding 25
## 1834 25:12.0 +1:12.8 <NA> 2014-2015 Ruhpolding 25
## 1835 25:18.9 +1:19.7 <NA> 2014-2015 Ruhpolding 25
## 1836 25:22.2 +1:23.0 <NA> 2014-2015 Ruhpolding 25
## 1837 25:22.5 +1:23.3 <NA> 2014-2015 Ruhpolding 25
## 1838 25:26.1 +1:26.9 <NA> 2014-2015 Ruhpolding 25
## 1839 25:27.9 +1:28.7 <NA> 2014-2015 Ruhpolding 25
## 1840 25:29.0 +1:29.8 <NA> 2014-2015 Ruhpolding 25
## 1841 25:29.4 +1:30.2 <NA> 2014-2015 Ruhpolding 25
## 1842 25:29.5 +1:30.3 <NA> 2014-2015 Ruhpolding 25
## 1843 25:32.1 +1:32.9 <NA> 2014-2015 Ruhpolding 25
## 1844 25:36.6 +1:37.4 <NA> 2014-2015 Ruhpolding 25
## 1845 25:38.0 +1:38.8 <NA> 2014-2015 Ruhpolding 25
## 1846 25:38.2 +1:39.0 <NA> 2014-2015 Ruhpolding 25
## 1847 25:39.3 +1:40.1 <NA> 2014-2015 Ruhpolding 25
## 1848 25:39.9 +1:40.7 <NA> 2014-2015 Ruhpolding 25
## 1849 25:42.8 +1:43.6 <NA> 2014-2015 Ruhpolding 25
## 1850 25:45.2 +1:46.0 <NA> 2014-2015 Ruhpolding 25
## 1851 25:50.9 +1:51.7 <NA> 2014-2015 Ruhpolding 25
## 1852 25:52.7 +1:53.5 <NA> 2014-2015 Ruhpolding 25
## 1853 25:54.5 +1:55.3 <NA> 2014-2015 Ruhpolding 25
## 1854 25:57.6 +1:58.4 <NA> 2014-2015 Ruhpolding 25
## 1855 26:00.7 +2:01.5 <NA> 2014-2015 Ruhpolding 25
## 1856 26:04.5 +2:05.3 <NA> 2014-2015 Ruhpolding 25
## 1857 26:05.0 +2:05.8 <NA> 2014-2015 Ruhpolding 25
## 1858 26:05.0 +2:05.8 <NA> 2014-2015 Ruhpolding 25
## 1859 26:06.0 +2:06.8 <NA> 2014-2015 Ruhpolding 25
## 1860 26:06.1 +2:06.9 <NA> 2014-2015 Ruhpolding 25
## 1861 26:09.6 +2:10.4 <NA> 2014-2015 Ruhpolding 25
## 1862 26:13.1 +2:13.9 <NA> 2014-2015 Ruhpolding 25
## 1863 26:15.3 +2:16.1 <NA> 2014-2015 Ruhpolding 25
## 1864 26:16.2 +2:17.0 <NA> 2014-2015 Ruhpolding 25
## 1865 26:17.1 +2:17.9 <NA> 2014-2015 Ruhpolding 25
## 1866 26:21.2 +2:22.0 <NA> 2014-2015 Ruhpolding 25
## 1867 26:21.8 +2:22.6 <NA> 2014-2015 Ruhpolding 25
## 1868 26:30.2 +2:31.0 <NA> 2014-2015 Ruhpolding 25
## 1869 26:30.6 +2:31.4 <NA> 2014-2015 Ruhpolding 25
## 1870 26:35.8 +2:36.6 <NA> 2014-2015 Ruhpolding 25
## 1871 26:37.2 +2:38.0 <NA> 2014-2015 Ruhpolding 25
## 1872 26:39.8 +2:40.6 <NA> 2014-2015 Ruhpolding 25
## 1873 26:43.1 +2:43.9 <NA> 2014-2015 Ruhpolding 25
## 1874 26:44.6 +2:45.4 <NA> 2014-2015 Ruhpolding 25
## 1875 26:45.5 +2:46.3 <NA> 2014-2015 Ruhpolding 25
## 1876 26:46.3 +2:47.1 <NA> 2014-2015 Ruhpolding 25
## 1877 26:47.3 +2:48.1 <NA> 2014-2015 Ruhpolding 25
## 1878 26:48.5 +2:49.3 <NA> 2014-2015 Ruhpolding 25
## 1879 26:49.2 +2:50.0 <NA> 2014-2015 Ruhpolding 25
## 1880 26:50.5 +2:51.3 <NA> 2014-2015 Ruhpolding 25
## 1881 26:52.7 +2:53.5 <NA> 2014-2015 Ruhpolding 25
## 1882 26:55.0 +2:55.8 <NA> 2014-2015 Ruhpolding 25
## 1883 26:55.7 +2:56.5 <NA> 2014-2015 Ruhpolding 25
## 1884 26:59.1 +2:59.9 <NA> 2014-2015 Ruhpolding 25
## 1885 26:59.9 +3:00.7 <NA> 2014-2015 Ruhpolding 25
## 1886 27:02.2 +3:03.0 <NA> 2014-2015 Ruhpolding 25
## 1887 27:04.3 +3:05.1 <NA> 2014-2015 Ruhpolding 25
## 1888 27:14.7 +3:15.5 <NA> 2014-2015 Ruhpolding 25
## 1889 27:17.7 +3:18.5 <NA> 2014-2015 Ruhpolding 25
## 1890 27:18.2 +3:19.0 <NA> 2014-2015 Ruhpolding 25
## 1891 27:20.4 +3:21.2 <NA> 2014-2015 Ruhpolding 25
## 1892 27:20.4 +3:21.2 <NA> 2014-2015 Ruhpolding 25
## 1893 27:21.2 +3:22.0 <NA> 2014-2015 Ruhpolding 25
## 1894 27:29.7 +3:30.5 <NA> 2014-2015 Ruhpolding 25
## 1895 27:31.3 +3:32.1 <NA> 2014-2015 Ruhpolding 25
## 1896 27:32.6 +3:33.4 <NA> 2014-2015 Ruhpolding 25
## 1897 27:35.5 +3:36.3 <NA> 2014-2015 Ruhpolding 25
## 1898 27:35.9 +3:36.7 <NA> 2014-2015 Ruhpolding 25
## 1899 27:37.7 +3:38.5 <NA> 2014-2015 Ruhpolding 25
## 1900 27:41.4 +3:42.2 <NA> 2014-2015 Ruhpolding 25
## 1901 27:41.6 +3:42.4 <NA> 2014-2015 Ruhpolding 25
## 1902 27:45.2 +3:46.0 <NA> 2014-2015 Ruhpolding 25
## 1903 27:45.2 +3:46.0 <NA> 2014-2015 Ruhpolding 25
## 1904 27:49.8 +3:50.6 <NA> 2014-2015 Ruhpolding 25
## 1905 27:54.9 +3:55.7 <NA> 2014-2015 Ruhpolding 25
## 1906 27:56.0 +3:56.8 <NA> 2014-2015 Ruhpolding 25
## 1907 28:03.4 +4:04.2 <NA> 2014-2015 Ruhpolding 25
## 1908 28:06.9 +4:07.7 <NA> 2014-2015 Ruhpolding 25
## 1909 28:07.9 +4:08.7 <NA> 2014-2015 Ruhpolding 25
## 1910 28:12.2 +4:13.0 <NA> 2014-2015 Ruhpolding 25
## 1911 28:13.1 +4:13.9 <NA> 2014-2015 Ruhpolding 25
## 1912 28:21.2 +4:22.0 <NA> 2014-2015 Ruhpolding 25
## 1913 28:23.5 +4:24.3 <NA> 2014-2015 Ruhpolding 25
## 1914 28:25.3 +4:26.1 <NA> 2014-2015 Ruhpolding 25
## 1915 28:32.3 +4:33.1 <NA> 2014-2015 Ruhpolding 25
## 1916 28:34.3 +4:35.1 <NA> 2014-2015 Ruhpolding 25
## 1917 28:49.8 +4:50.6 <NA> 2014-2015 Ruhpolding 25
## 1918 28:52.6 +4:53.4 <NA> 2014-2015 Ruhpolding 25
## 1919 28:55.7 +4:56.5 <NA> 2014-2015 Ruhpolding 25
## 1920 29:01.7 +5:02.5 <NA> 2014-2015 Ruhpolding 25
## 1921 29:20.5 +5:21.3 <NA> 2014-2015 Ruhpolding 25
## 1922 29:24.3 +5:25.1 <NA> 2014-2015 Ruhpolding 25
## 1923 29:44.6 +5:45.4 <NA> 2014-2015 Ruhpolding 25
## 1924 30:55.1 +6:55.9 <NA> 2014-2015 Ruhpolding 25
## 1925 <NA> 2014-2015 Ruhpolding 25
## 1926 <NA> 2014-2015 Ruhpolding 25
## 1927 <NA> 2014-2015 Ruhpolding 25
## 1928 31:51.9 31:37.9 2015-2016 Anterselva 26
## 1929 32:02.2 +10.3 32:02.2 2015-2016 Anterselva 26
## 1930 32:06.0 +14.1 31:45.0 2015-2016 Anterselva 26
## 1931 32:09.4 +17.5 30:59.4 2015-2016 Anterselva 26
## 1932 32:26.6 +34.7 32:02.6 2015-2016 Anterselva 26
## 1933 32:27.7 +35.8 32:11.7 2015-2016 Anterselva 26
## 1934 32:30.8 +38.9 31:15.8 2015-2016 Anterselva 26
## 1935 32:43.7 +51.8 32:32.7 2015-2016 Anterselva 26
## 1936 32:44.7 +52.8 32:06.7 2015-2016 Anterselva 26
## 1937 32:47.7 +55.8 31:56.7 2015-2016 Anterselva 26
## 1938 32:51.9 +1:00.0 32:45.9 2015-2016 Anterselva 26
## 1939 32:58.9 +1:07.0 31:48.9 2015-2016 Anterselva 26
## 1940 33:04.6 +1:12.7 32:07.6 2015-2016 Anterselva 26
## 1941 33:07.9 +1:16.0 31:40.9 2015-2016 Anterselva 26
## 1942 33:11.1 +1:19.2 32:28.1 2015-2016 Anterselva 26
## 1943 33:12.7 +1:20.8 31:56.7 2015-2016 Anterselva 26
## 1944 33:26.6 +1:34.7 33:08.6 2015-2016 Anterselva 26
## 1945 33:33.2 +1:41.3 32:17.2 2015-2016 Anterselva 26
## 1946 33:35.5 +1:43.6 32:42.5 2015-2016 Anterselva 26
## 1947 33:46.3 +1:54.4 33:07.3 2015-2016 Anterselva 26
## 1948 33:51.7 +1:59.8 32:35.7 2015-2016 Anterselva 26
## 1949 33:53.6 +2:01.7 33:03.6 2015-2016 Anterselva 26
## 1950 33:57.5 +2:05.6 33:23.5 2015-2016 Anterselva 26
## 1951 33:58.7 +2:06.8 32:50.7 2015-2016 Anterselva 26
## 1952 33:59.7 +2:07.8 32:38.7 2015-2016 Anterselva 26
## 1953 33:59.9 +2:08.0 32:58.9 2015-2016 Anterselva 26
## 1954 34:02.3 +2:10.4 33:10.3 2015-2016 Anterselva 26
## 1955 34:02.9 +2:11.0 32:47.9 2015-2016 Anterselva 26
## 1956 34:03.0 +2:11.1 32:59.0 2015-2016 Anterselva 26
## 1957 34:06.9 +2:15.0 33:04.9 2015-2016 Anterselva 26
## 1958 34:10.3 +2:18.4 32:38.3 2015-2016 Anterselva 26
## 1959 34:10.7 +2:18.8 32:53.7 2015-2016 Anterselva 26
## 1960 34:11.1 +2:19.2 32:58.1 2015-2016 Anterselva 26
## 1961 34:21.3 +2:29.4 33:44.3 2015-2016 Anterselva 26
## 1962 34:22.9 +2:31.0 32:59.9 2015-2016 Anterselva 26
## 1963 34:28.3 +2:36.4 33:13.3 2015-2016 Anterselva 26
## 1964 34:31.8 +2:39.9 33:07.8 2015-2016 Anterselva 26
## 1965 34:46.2 +2:54.3 33:32.2 2015-2016 Anterselva 26
## 1966 34:47.0 +2:55.1 33:38.0 2015-2016 Anterselva 26
## 1967 34:50.5 +2:58.6 33:03.5 2015-2016 Anterselva 26
## 1968 34:54.7 +3:02.8 33:27.7 2015-2016 Anterselva 26
## 1969 34:56.6 +3:04.7 33:17.6 2015-2016 Anterselva 26
## 1970 35:06.8 +3:14.9 33:15.8 2015-2016 Anterselva 26
## 1971 35:12.7 +3:20.8 34:23.7 2015-2016 Anterselva 26
## 1972 35:22.1 +3:30.2 33:45.1 2015-2016 Anterselva 26
## 1973 35:22.5 +3:30.6 33:35.5 2015-2016 Anterselva 26
## 1974 35:43.4 +3:51.5 34:01.4 2015-2016 Anterselva 26
## 1975 35:52.5 +4:00.6 34:22.5 2015-2016 Anterselva 26
## 1976 36:08.0 +4:16.1 34:20.0 2015-2016 Anterselva 26
## 1977 38:01.6 +6:09.7 36:14.6 2015-2016 Anterselva 26
## 1978 38:22.5 +6:30.6 36:29.5 2015-2016 Anterselva 26
## 1979 38:42.2 +6:50.3 36:54.2 2015-2016 Anterselva 26
## 1980 2015-2016 Anterselva 26
## 1981 2015-2016 Anterselva 26
## 1982 2015-2016 Anterselva 26
## 1983 2015-2016 Anterselva 26
## 1984 2015-2016 Anterselva 26
## 1985 2015-2016 Anterselva 26
## 1986 2015-2016 Anterselva 26
## 1987 2015-2016 Anterselva 26
## 1988 23:01.2 <NA> 2015-2016 Anterselva 27
## 1989 23:07.0 +5.8 <NA> 2015-2016 Anterselva 27
## 1990 23:12.0 +10.8 <NA> 2015-2016 Anterselva 27
## 1991 23:13.3 +12.1 <NA> 2015-2016 Anterselva 27
## 1992 23:14.8 +13.6 <NA> 2015-2016 Anterselva 27
## 1993 23:17.0 +15.8 <NA> 2015-2016 Anterselva 27
## 1994 23:18.9 +17.7 <NA> 2015-2016 Anterselva 27
## 1995 23:22.2 +21.0 <NA> 2015-2016 Anterselva 27
## 1996 23:25.5 +24.3 <NA> 2015-2016 Anterselva 27
## 1997 23:30.6 +29.4 <NA> 2015-2016 Anterselva 27
## 1998 23:34.8 +33.6 <NA> 2015-2016 Anterselva 27
## 1999 23:37.9 +36.7 <NA> 2015-2016 Anterselva 27
## 2000 23:39.4 +38.2 <NA> 2015-2016 Anterselva 27
## 2001 23:39.7 +38.5 <NA> 2015-2016 Anterselva 27
## 2002 23:44.5 +43.3 <NA> 2015-2016 Anterselva 27
## 2003 23:49.9 +48.7 <NA> 2015-2016 Anterselva 27
## 2004 23:50.8 +49.6 <NA> 2015-2016 Anterselva 27
## 2005 23:51.9 +50.7 <NA> 2015-2016 Anterselva 27
## 2006 23:53.6 +52.4 <NA> 2015-2016 Anterselva 27
## 2007 23:54.6 +53.4 <NA> 2015-2016 Anterselva 27
## 2008 23:58.2 +57.0 <NA> 2015-2016 Anterselva 27
## 2009 24:02.6 +1:01.4 <NA> 2015-2016 Anterselva 27
## 2010 24:03.5 +1:02.3 <NA> 2015-2016 Anterselva 27
## 2011 24:05.4 +1:04.2 <NA> 2015-2016 Anterselva 27
## 2012 24:09.3 +1:08.1 <NA> 2015-2016 Anterselva 27
## 2013 24:10.2 +1:09.0 <NA> 2015-2016 Anterselva 27
## 2014 24:10.9 +1:09.7 <NA> 2015-2016 Anterselva 27
## 2015 24:11.0 +1:09.8 <NA> 2015-2016 Anterselva 27
## 2016 24:14.5 +1:13.3 <NA> 2015-2016 Anterselva 27
## 2017 24:15.2 +1:14.0 <NA> 2015-2016 Anterselva 27
## 2018 24:15.7 +1:14.5 <NA> 2015-2016 Anterselva 27
## 2019 24:16.6 +1:15.4 <NA> 2015-2016 Anterselva 27
## 2020 24:16.6 +1:15.4 <NA> 2015-2016 Anterselva 27
## 2021 24:16.8 +1:15.6 <NA> 2015-2016 Anterselva 27
## 2022 24:16.8 +1:15.6 <NA> 2015-2016 Anterselva 27
## 2023 24:17.1 +1:15.9 <NA> 2015-2016 Anterselva 27
## 2024 24:18.1 +1:16.9 <NA> 2015-2016 Anterselva 27
## 2025 24:21.7 +1:20.5 <NA> 2015-2016 Anterselva 27
## 2026 24:24.6 +1:23.4 <NA> 2015-2016 Anterselva 27
## 2027 24:25.1 +1:23.9 <NA> 2015-2016 Anterselva 27
## 2028 24:27.7 +1:26.5 <NA> 2015-2016 Anterselva 27
## 2029 24:28.6 +1:27.4 <NA> 2015-2016 Anterselva 27
## 2030 24:31.4 +1:30.2 <NA> 2015-2016 Anterselva 27
## 2031 24:33.0 +1:31.8 <NA> 2015-2016 Anterselva 27
## 2032 24:33.4 +1:32.2 <NA> 2015-2016 Anterselva 27
## 2033 24:37.7 +1:36.5 <NA> 2015-2016 Anterselva 27
## 2034 24:37.8 +1:36.6 <NA> 2015-2016 Anterselva 27
## 2035 24:39.8 +1:38.6 <NA> 2015-2016 Anterselva 27
## 2036 24:41.7 +1:40.5 <NA> 2015-2016 Anterselva 27
## 2037 24:42.7 +1:41.5 <NA> 2015-2016 Anterselva 27
## 2038 24:43.7 +1:42.5 <NA> 2015-2016 Anterselva 27
## 2039 24:48.1 +1:46.9 <NA> 2015-2016 Anterselva 27
## 2040 24:48.1 +1:46.9 <NA> 2015-2016 Anterselva 27
## 2041 24:48.5 +1:47.3 <NA> 2015-2016 Anterselva 27
## 2042 24:48.8 +1:47.6 <NA> 2015-2016 Anterselva 27
## 2043 24:49.2 +1:48.0 <NA> 2015-2016 Anterselva 27
## 2044 24:49.3 +1:48.1 <NA> 2015-2016 Anterselva 27
## 2045 24:51.7 +1:50.5 <NA> 2015-2016 Anterselva 27
## 2046 24:51.7 +1:50.5 <NA> 2015-2016 Anterselva 27
## 2047 24:53.8 +1:52.6 <NA> 2015-2016 Anterselva 27
## 2048 24:57.0 +1:55.8 <NA> 2015-2016 Anterselva 27
## 2049 24:58.8 +1:57.6 <NA> 2015-2016 Anterselva 27
## 2050 25:01.0 +1:59.8 <NA> 2015-2016 Anterselva 27
## 2051 25:03.9 +2:02.7 <NA> 2015-2016 Anterselva 27
## 2052 25:04.6 +2:03.4 <NA> 2015-2016 Anterselva 27
## 2053 25:05.3 +2:04.1 <NA> 2015-2016 Anterselva 27
## 2054 25:11.7 +2:10.5 <NA> 2015-2016 Anterselva 27
## 2055 25:14.1 +2:12.9 <NA> 2015-2016 Anterselva 27
## 2056 25:16.3 +2:15.1 <NA> 2015-2016 Anterselva 27
## 2057 25:17.4 +2:16.2 <NA> 2015-2016 Anterselva 27
## 2058 25:19.0 +2:17.8 <NA> 2015-2016 Anterselva 27
## 2059 25:19.7 +2:18.5 <NA> 2015-2016 Anterselva 27
## 2060 25:20.1 +2:18.9 <NA> 2015-2016 Anterselva 27
## 2061 25:21.3 +2:20.1 <NA> 2015-2016 Anterselva 27
## 2062 25:22.4 +2:21.2 <NA> 2015-2016 Anterselva 27
## 2063 25:22.7 +2:21.5 <NA> 2015-2016 Anterselva 27
## 2064 25:22.9 +2:21.7 <NA> 2015-2016 Anterselva 27
## 2065 25:23.7 +2:22.5 <NA> 2015-2016 Anterselva 27
## 2066 25:25.3 +2:24.1 <NA> 2015-2016 Anterselva 27
## 2067 25:26.2 +2:25.0 <NA> 2015-2016 Anterselva 27
## 2068 25:30.0 +2:28.8 <NA> 2015-2016 Anterselva 27
## 2069 25:32.7 +2:31.5 <NA> 2015-2016 Anterselva 27
## 2070 25:33.3 +2:32.1 <NA> 2015-2016 Anterselva 27
## 2071 25:33.4 +2:32.2 <NA> 2015-2016 Anterselva 27
## 2072 25:35.5 +2:34.3 <NA> 2015-2016 Anterselva 27
## 2073 25:36.7 +2:35.5 <NA> 2015-2016 Anterselva 27
## 2074 25:36.8 +2:35.6 <NA> 2015-2016 Anterselva 27
## 2075 25:40.2 +2:39.0 <NA> 2015-2016 Anterselva 27
## 2076 25:43.8 +2:42.6 <NA> 2015-2016 Anterselva 27
## 2077 25:48.0 +2:46.8 <NA> 2015-2016 Anterselva 27
## 2078 25:48.2 +2:47.0 <NA> 2015-2016 Anterselva 27
## 2079 25:48.9 +2:47.7 <NA> 2015-2016 Anterselva 27
## 2080 25:49.2 +2:48.0 <NA> 2015-2016 Anterselva 27
## 2081 26:06.3 +3:05.1 <NA> 2015-2016 Anterselva 27
## 2082 26:08.2 +3:07.0 <NA> 2015-2016 Anterselva 27
## 2083 26:11.5 +3:10.3 <NA> 2015-2016 Anterselva 27
## 2084 26:14.9 +3:13.7 <NA> 2015-2016 Anterselva 27
## 2085 26:25.9 +3:24.7 <NA> 2015-2016 Anterselva 27
## 2086 26:29.1 +3:27.9 <NA> 2015-2016 Anterselva 27
## 2087 26:34.2 +3:33.0 <NA> 2015-2016 Anterselva 27
## 2088 26:41.4 +3:40.2 <NA> 2015-2016 Anterselva 27
## 2089 26:44.1 +3:42.9 <NA> 2015-2016 Anterselva 27
## 2090 26:44.3 +3:43.1 <NA> 2015-2016 Anterselva 27
## 2091 27:02.4 +4:01.2 <NA> 2015-2016 Anterselva 27
## 2092 27:10.4 +4:09.2 <NA> 2015-2016 Anterselva 27
## 2093 27:51.1 +4:49.9 <NA> 2015-2016 Anterselva 27
## 2094 40:37.1 <NA> 2015-2016 Canmore 28
## 2095 40:41.2 +4.1 <NA> 2015-2016 Canmore 28
## 2096 40:45.7 +8.6 <NA> 2015-2016 Canmore 28
## 2097 40:57.8 +20.7 <NA> 2015-2016 Canmore 28
## 2098 40:58.0 +20.9 <NA> 2015-2016 Canmore 28
## 2099 40:59.4 +22.3 <NA> 2015-2016 Canmore 28
## 2100 41:00.9 +23.8 <NA> 2015-2016 Canmore 28
## 2101 41:07.0 +29.9 <NA> 2015-2016 Canmore 28
## 2102 41:11.8 +34.7 <NA> 2015-2016 Canmore 28
## 2103 41:20.1 +43.0 <NA> 2015-2016 Canmore 28
## 2104 41:24.9 +47.8 <NA> 2015-2016 Canmore 28
## 2105 41:26.9 +49.8 <NA> 2015-2016 Canmore 28
## 2106 41:28.6 +51.5 <NA> 2015-2016 Canmore 28
## 2107 41:34.4 +57.3 <NA> 2015-2016 Canmore 28
## 2108 41:41.2 +1:04.1 <NA> 2015-2016 Canmore 28
## 2109 41:49.2 +1:12.1 <NA> 2015-2016 Canmore 28
## 2110 41:59.5 +1:22.4 <NA> 2015-2016 Canmore 28
## 2111 42:00.0 +1:22.9 <NA> 2015-2016 Canmore 28
## 2112 42:00.3 +1:23.2 <NA> 2015-2016 Canmore 28
## 2113 42:23.8 +1:46.7 <NA> 2015-2016 Canmore 28
## 2114 42:31.1 +1:54.0 <NA> 2015-2016 Canmore 28
## 2115 42:41.0 +2:03.9 <NA> 2015-2016 Canmore 28
## 2116 42:53.3 +2:16.2 <NA> 2015-2016 Canmore 28
## 2117 42:58.5 +2:21.4 <NA> 2015-2016 Canmore 28
## 2118 42:58.6 +2:21.5 <NA> 2015-2016 Canmore 28
## 2119 43:02.8 +2:25.7 <NA> 2015-2016 Canmore 28
## 2120 43:26.6 +2:49.5 <NA> 2015-2016 Canmore 28
## 2121 44:12.6 +3:35.5 <NA> 2015-2016 Canmore 28
## 2122 44:19.9 +3:42.8 <NA> 2015-2016 Canmore 28
## 2123 44:23.1 +3:46.0 <NA> 2015-2016 Canmore 28
## 2124 23:51.5 <NA> 2015-2016 Canmore 29
## 2125 24:07.2 +15.7 <NA> 2015-2016 Canmore 29
## 2126 24:10.2 +18.7 <NA> 2015-2016 Canmore 29
## 2127 24:36.5 +45.0 <NA> 2015-2016 Canmore 29
## 2128 24:38.6 +47.1 <NA> 2015-2016 Canmore 29
## 2129 24:39.1 +47.6 <NA> 2015-2016 Canmore 29
## 2130 24:42.5 +51.0 <NA> 2015-2016 Canmore 29
## 2131 24:43.5 +52.0 <NA> 2015-2016 Canmore 29
## 2132 24:54.1 +1:02.6 <NA> 2015-2016 Canmore 29
## 2133 25:00.3 +1:08.8 <NA> 2015-2016 Canmore 29
## 2134 25:05.8 +1:14.3 <NA> 2015-2016 Canmore 29
## 2135 25:08.0 +1:16.5 <NA> 2015-2016 Canmore 29
## 2136 25:11.7 +1:20.2 <NA> 2015-2016 Canmore 29
## 2137 25:14.5 +1:23.0 <NA> 2015-2016 Canmore 29
## 2138 25:19.6 +1:28.1 <NA> 2015-2016 Canmore 29
## 2139 25:20.0 +1:28.5 <NA> 2015-2016 Canmore 29
## 2140 25:24.3 +1:32.8 <NA> 2015-2016 Canmore 29
## 2141 25:31.4 +1:39.9 <NA> 2015-2016 Canmore 29
## 2142 25:32.2 +1:40.7 <NA> 2015-2016 Canmore 29
## 2143 25:33.1 +1:41.6 <NA> 2015-2016 Canmore 29
## 2144 25:34.0 +1:42.5 <NA> 2015-2016 Canmore 29
## 2145 25:35.0 +1:43.5 <NA> 2015-2016 Canmore 29
## 2146 25:36.3 +1:44.8 <NA> 2015-2016 Canmore 29
## 2147 25:36.7 +1:45.2 <NA> 2015-2016 Canmore 29
## 2148 25:37.2 +1:45.7 <NA> 2015-2016 Canmore 29
## 2149 25:38.2 +1:46.7 <NA> 2015-2016 Canmore 29
## 2150 25:39.8 +1:48.3 <NA> 2015-2016 Canmore 29
## 2151 25:40.4 +1:48.9 <NA> 2015-2016 Canmore 29
## 2152 25:40.7 +1:49.2 <NA> 2015-2016 Canmore 29
## 2153 25:42.1 +1:50.6 <NA> 2015-2016 Canmore 29
## 2154 25:44.2 +1:52.7 <NA> 2015-2016 Canmore 29
## 2155 25:44.4 +1:52.9 <NA> 2015-2016 Canmore 29
## 2156 25:46.4 +1:54.9 <NA> 2015-2016 Canmore 29
## 2157 25:47.0 +1:55.5 <NA> 2015-2016 Canmore 29
## 2158 25:47.8 +1:56.3 <NA> 2015-2016 Canmore 29
## 2159 25:49.0 +1:57.5 <NA> 2015-2016 Canmore 29
## 2160 25:53.8 +2:02.3 <NA> 2015-2016 Canmore 29
## 2161 25:59.7 +2:08.2 <NA> 2015-2016 Canmore 29
## 2162 26:00.9 +2:09.4 <NA> 2015-2016 Canmore 29
## 2163 26:01.0 +2:09.5 <NA> 2015-2016 Canmore 29
## 2164 26:01.7 +2:10.2 <NA> 2015-2016 Canmore 29
## 2165 26:03.2 +2:11.7 <NA> 2015-2016 Canmore 29
## 2166 26:04.8 +2:13.3 <NA> 2015-2016 Canmore 29
## 2167 26:11.7 +2:20.2 <NA> 2015-2016 Canmore 29
## 2168 26:12.3 +2:20.8 <NA> 2015-2016 Canmore 29
## 2169 26:16.1 +2:24.6 <NA> 2015-2016 Canmore 29
## 2170 26:19.5 +2:28.0 <NA> 2015-2016 Canmore 29
## 2171 26:20.9 +2:29.4 <NA> 2015-2016 Canmore 29
## 2172 26:22.0 +2:30.5 <NA> 2015-2016 Canmore 29
## 2173 26:26.7 +2:35.2 <NA> 2015-2016 Canmore 29
## 2174 26:27.1 +2:35.6 <NA> 2015-2016 Canmore 29
## 2175 26:27.5 +2:36.0 <NA> 2015-2016 Canmore 29
## 2176 26:28.4 +2:36.9 <NA> 2015-2016 Canmore 29
## 2177 26:30.1 +2:38.6 <NA> 2015-2016 Canmore 29
## 2178 26:31.1 +2:39.6 <NA> 2015-2016 Canmore 29
## 2179 26:31.7 +2:40.2 <NA> 2015-2016 Canmore 29
## 2180 26:32.0 +2:40.5 <NA> 2015-2016 Canmore 29
## 2181 26:33.3 +2:41.8 <NA> 2015-2016 Canmore 29
## 2182 26:33.5 +2:42.0 <NA> 2015-2016 Canmore 29
## 2183 26:37.5 +2:46.0 <NA> 2015-2016 Canmore 29
## 2184 26:41.7 +2:50.2 <NA> 2015-2016 Canmore 29
## 2185 26:41.8 +2:50.3 <NA> 2015-2016 Canmore 29
## 2186 26:48.6 +2:57.1 <NA> 2015-2016 Canmore 29
## 2187 26:49.8 +2:58.3 <NA> 2015-2016 Canmore 29
## 2188 27:02.2 +3:10.7 <NA> 2015-2016 Canmore 29
## 2189 27:02.4 +3:10.9 <NA> 2015-2016 Canmore 29
## 2190 27:06.4 +3:14.9 <NA> 2015-2016 Canmore 29
## 2191 27:06.5 +3:15.0 <NA> 2015-2016 Canmore 29
## 2192 27:11.1 +3:19.6 <NA> 2015-2016 Canmore 29
## 2193 27:15.2 +3:23.7 <NA> 2015-2016 Canmore 29
## 2194 27:23.7 +3:32.2 <NA> 2015-2016 Canmore 29
## 2195 27:26.5 +3:35.0 <NA> 2015-2016 Canmore 29
## 2196 27:28.2 +3:36.7 <NA> 2015-2016 Canmore 29
## 2197 27:39.4 +3:47.9 <NA> 2015-2016 Canmore 29
## 2198 27:41.1 +3:49.6 <NA> 2015-2016 Canmore 29
## 2199 27:43.9 +3:52.4 <NA> 2015-2016 Canmore 29
## 2200 27:47.7 +3:56.2 <NA> 2015-2016 Canmore 29
## 2201 27:50.7 +3:59.2 <NA> 2015-2016 Canmore 29
## 2202 27:53.3 +4:01.8 <NA> 2015-2016 Canmore 29
## 2203 28:05.4 +4:13.9 <NA> 2015-2016 Canmore 29
## 2204 28:08.3 +4:16.8 <NA> 2015-2016 Canmore 29
## 2205 28:25.2 +4:33.7 <NA> 2015-2016 Canmore 29
## 2206 28:28.5 +4:37.0 <NA> 2015-2016 Canmore 29
## 2207 28:32.4 +4:40.9 <NA> 2015-2016 Canmore 29
## 2208 28:58.0 +5:06.5 <NA> 2015-2016 Canmore 29
## 2209 29:04.0 +5:12.5 <NA> 2015-2016 Canmore 29
## 2210 29:32.5 +5:41.0 <NA> 2015-2016 Canmore 29
## 2211 34:35.2 +10:43.7 <NA> 2015-2016 Canmore 29
## 2212 <NA> 2015-2016 Canmore 29
## 2213 31:19.9 31:09.9 2015-2016 Hochfilzen 30
## 2214 31:28.8 +8.9 31:28.8 2015-2016 Hochfilzen 30
## 2215 31:39.0 +19.1 31:18.0 2015-2016 Hochfilzen 30
## 2216 31:51.1 +31.2 31:32.1 2015-2016 Hochfilzen 30
## 2217 31:59.7 +39.8 31:18.7 2015-2016 Hochfilzen 30
## 2218 32:17.4 +57.5 31:30.4 2015-2016 Hochfilzen 30
## 2219 32:19.4 +59.5 31:41.4 2015-2016 Hochfilzen 30
## 2220 32:20.5 +1:00.6 31:24.5 2015-2016 Hochfilzen 30
## 2221 32:21.3 +1:01.4 31:11.3 2015-2016 Hochfilzen 30
## 2222 32:25.8 +1:05.9 31:14.8 2015-2016 Hochfilzen 30
## 2223 32:32.6 +1:12.7 31:07.6 2015-2016 Hochfilzen 30
## 2224 32:33.3 +1:13.4 31:54.3 2015-2016 Hochfilzen 30
## 2225 32:39.9 +1:20.0 31:58.9 2015-2016 Hochfilzen 30
## 2226 32:49.9 +1:30.0 32:16.9 2015-2016 Hochfilzen 30
## 2227 32:50.2 +1:30.3 31:49.2 2015-2016 Hochfilzen 30
## 2228 32:50.5 +1:30.6 32:22.5 2015-2016 Hochfilzen 30
## 2229 33:05.7 +1:45.8 32:20.7 2015-2016 Hochfilzen 30
## 2230 33:08.3 +1:48.4 32:18.3 2015-2016 Hochfilzen 30
## 2231 33:10.6 +1:50.7 32:35.6 2015-2016 Hochfilzen 30
## 2232 33:10.8 +1:50.9 31:58.8 2015-2016 Hochfilzen 30
## 2233 33:11.8 +1:51.9 31:59.8 2015-2016 Hochfilzen 30
## 2234 33:12.5 +1:52.6 32:34.5 2015-2016 Hochfilzen 30
## 2235 33:21.9 +2:02.0 32:37.9 2015-2016 Hochfilzen 30
## 2236 33:22.1 +2:02.2 31:40.1 2015-2016 Hochfilzen 30
## 2237 33:40.3 +2:20.4 31:54.3 2015-2016 Hochfilzen 30
## 2238 33:52.6 +2:32.7 32:19.6 2015-2016 Hochfilzen 30
## 2239 33:58.4 +2:38.5 32:31.4 2015-2016 Hochfilzen 30
## 2240 34:01.0 +2:41.1 32:44.0 2015-2016 Hochfilzen 30
## 2241 34:01.5 +2:41.6 32:22.5 2015-2016 Hochfilzen 30
## 2242 34:18.4 +2:58.5 33:45.4 2015-2016 Hochfilzen 30
## 2243 34:33.6 +3:13.7 32:53.6 2015-2016 Hochfilzen 30
## 2244 34:34.3 +3:14.4 33:04.3 2015-2016 Hochfilzen 30
## 2245 34:36.2 +3:16.3 33:14.2 2015-2016 Hochfilzen 30
## 2246 34:43.3 +3:23.4 33:11.3 2015-2016 Hochfilzen 30
## 2247 34:44.7 +3:24.8 33:31.7 2015-2016 Hochfilzen 30
## 2248 34:45.7 +3:25.8 33:08.7 2015-2016 Hochfilzen 30
## 2249 34:51.6 +3:31.7 34:03.6 2015-2016 Hochfilzen 30
## 2250 34:57.9 +3:38.0 32:48.9 2015-2016 Hochfilzen 30
## 2251 35:03.0 +3:43.1 32:51.0 2015-2016 Hochfilzen 30
## 2252 35:05.5 +3:45.6 33:16.5 2015-2016 Hochfilzen 30
## 2253 35:07.5 +3:47.6 33:36.5 2015-2016 Hochfilzen 30
## 2254 35:20.8 +4:00.9 33:21.8 2015-2016 Hochfilzen 30
## 2255 35:31.6 +4:11.7 33:46.6 2015-2016 Hochfilzen 30
## 2256 35:41.8 +4:21.9 34:26.8 2015-2016 Hochfilzen 30
## 2257 35:43.7 +4:23.8 34:12.7 2015-2016 Hochfilzen 30
## 2258 35:43.7 +4:23.8 33:38.7 2015-2016 Hochfilzen 30
## 2259 35:47.1 +4:27.2 33:46.1 2015-2016 Hochfilzen 30
## 2260 35:53.6 +4:33.7 34:00.6 2015-2016 Hochfilzen 30
## 2261 35:54.1 +4:34.2 33:42.1 2015-2016 Hochfilzen 30
## 2262 35:55.0 +4:35.1 34:12.0 2015-2016 Hochfilzen 30
## 2263 36:34.5 +5:14.6 34:30.5 2015-2016 Hochfilzen 30
## 2264 36:47.0 +5:27.1 34:40.0 2015-2016 Hochfilzen 30
## 2265 36:53.4 +5:33.5 35:25.4 2015-2016 Hochfilzen 30
## 2266 36:56.0 +5:36.1 34:46.0 2015-2016 Hochfilzen 30
## 2267 37:34.1 +6:14.2 35:43.1 2015-2016 Hochfilzen 30
## 2268 37:37.3 +6:17.4 35:32.3 2015-2016 Hochfilzen 30
## 2269 37:39.6 +6:19.7 35:23.6 2015-2016 Hochfilzen 30
## 2270 38:21.9 +7:02.0 36:18.9 2015-2016 Hochfilzen 30
## 2271 40:02.2 +8:42.3 38:13.2 2015-2016 Hochfilzen 30
## 2272 2015-2016 Hochfilzen 30
## 2273 23:52.3 <NA> 2015-2016 Hochfilzen 31
## 2274 24:02.2 +9.9 <NA> 2015-2016 Hochfilzen 31
## 2275 24:11.2 +18.9 <NA> 2015-2016 Hochfilzen 31
## 2276 24:13.0 +20.7 <NA> 2015-2016 Hochfilzen 31
## 2277 24:19.8 +27.5 <NA> 2015-2016 Hochfilzen 31
## 2278 24:24.9 +32.6 <NA> 2015-2016 Hochfilzen 31
## 2279 24:25.0 +32.7 <NA> 2015-2016 Hochfilzen 31
## 2280 24:27.1 +34.8 <NA> 2015-2016 Hochfilzen 31
## 2281 24:30.1 +37.8 <NA> 2015-2016 Hochfilzen 31
## 2282 24:30.2 +37.9 <NA> 2015-2016 Hochfilzen 31
## 2283 24:31.1 +38.8 <NA> 2015-2016 Hochfilzen 31
## 2284 24:33.2 +40.9 <NA> 2015-2016 Hochfilzen 31
## 2285 24:33.3 +41.0 <NA> 2015-2016 Hochfilzen 31
## 2286 24:36.0 +43.7 <NA> 2015-2016 Hochfilzen 31
## 2287 24:37.2 +44.9 <NA> 2015-2016 Hochfilzen 31
## 2288 24:38.9 +46.6 <NA> 2015-2016 Hochfilzen 31
## 2289 24:40.0 +47.7 <NA> 2015-2016 Hochfilzen 31
## 2290 24:42.7 +50.4 <NA> 2015-2016 Hochfilzen 31
## 2291 24:47.9 +55.6 <NA> 2015-2016 Hochfilzen 31
## 2292 24:53.7 +1:01.4 <NA> 2015-2016 Hochfilzen 31
## 2293 25:02.1 +1:09.8 <NA> 2015-2016 Hochfilzen 31
## 2294 25:03.1 +1:10.8 <NA> 2015-2016 Hochfilzen 31
## 2295 25:04.6 +1:12.3 <NA> 2015-2016 Hochfilzen 31
## 2296 25:04.7 +1:12.4 <NA> 2015-2016 Hochfilzen 31
## 2297 25:05.4 +1:13.1 <NA> 2015-2016 Hochfilzen 31
## 2298 25:07.5 +1:15.2 <NA> 2015-2016 Hochfilzen 31
## 2299 25:09.6 +1:17.3 <NA> 2015-2016 Hochfilzen 31
## 2300 25:13.9 +1:21.6 <NA> 2015-2016 Hochfilzen 31
## 2301 25:17.1 +1:24.8 <NA> 2015-2016 Hochfilzen 31
## 2302 25:19.2 +1:26.9 <NA> 2015-2016 Hochfilzen 31
## 2303 25:20.2 +1:27.9 <NA> 2015-2016 Hochfilzen 31
## 2304 25:21.9 +1:29.6 <NA> 2015-2016 Hochfilzen 31
## 2305 25:22.9 +1:30.6 <NA> 2015-2016 Hochfilzen 31
## 2306 25:23.7 +1:31.4 <NA> 2015-2016 Hochfilzen 31
## 2307 25:24.6 +1:32.3 <NA> 2015-2016 Hochfilzen 31
## 2308 25:24.8 +1:32.5 <NA> 2015-2016 Hochfilzen 31
## 2309 25:29.1 +1:36.8 <NA> 2015-2016 Hochfilzen 31
## 2310 25:31.3 +1:39.0 <NA> 2015-2016 Hochfilzen 31
## 2311 25:32.6 +1:40.3 <NA> 2015-2016 Hochfilzen 31
## 2312 25:34.5 +1:42.2 <NA> 2015-2016 Hochfilzen 31
## 2313 25:34.8 +1:42.5 <NA> 2015-2016 Hochfilzen 31
## 2314 25:37.6 +1:45.3 <NA> 2015-2016 Hochfilzen 31
## 2315 25:38.4 +1:46.1 <NA> 2015-2016 Hochfilzen 31
## 2316 25:41.0 +1:48.7 <NA> 2015-2016 Hochfilzen 31
## 2317 25:41.6 +1:49.3 <NA> 2015-2016 Hochfilzen 31
## 2318 25:43.3 +1:51.0 <NA> 2015-2016 Hochfilzen 31
## 2319 25:45.6 +1:53.3 <NA> 2015-2016 Hochfilzen 31
## 2320 25:46.4 +1:54.1 <NA> 2015-2016 Hochfilzen 31
## 2321 25:51.5 +1:59.2 <NA> 2015-2016 Hochfilzen 31
## 2322 25:53.0 +2:00.7 <NA> 2015-2016 Hochfilzen 31
## 2323 25:55.3 +2:03.0 <NA> 2015-2016 Hochfilzen 31
## 2324 25:56.2 +2:03.9 <NA> 2015-2016 Hochfilzen 31
## 2325 25:57.2 +2:04.9 <NA> 2015-2016 Hochfilzen 31
## 2326 25:57.3 +2:05.0 <NA> 2015-2016 Hochfilzen 31
## 2327 25:58.8 +2:06.5 <NA> 2015-2016 Hochfilzen 31
## 2328 26:01.3 +2:09.0 <NA> 2015-2016 Hochfilzen 31
## 2329 26:02.2 +2:09.9 <NA> 2015-2016 Hochfilzen 31
## 2330 26:04.2 +2:11.9 <NA> 2015-2016 Hochfilzen 31
## 2331 26:04.5 +2:12.2 <NA> 2015-2016 Hochfilzen 31
## 2332 26:08.4 +2:16.1 <NA> 2015-2016 Hochfilzen 31
## 2333 26:10.8 +2:18.5 <NA> 2015-2016 Hochfilzen 31
## 2334 26:13.8 +2:21.5 <NA> 2015-2016 Hochfilzen 31
## 2335 26:14.6 +2:22.3 <NA> 2015-2016 Hochfilzen 31
## 2336 26:14.7 +2:22.4 <NA> 2015-2016 Hochfilzen 31
## 2337 26:15.9 +2:23.6 <NA> 2015-2016 Hochfilzen 31
## 2338 26:16.7 +2:24.4 <NA> 2015-2016 Hochfilzen 31
## 2339 26:17.4 +2:25.1 <NA> 2015-2016 Hochfilzen 31
## 2340 26:17.6 +2:25.3 <NA> 2015-2016 Hochfilzen 31
## 2341 26:17.8 +2:25.5 <NA> 2015-2016 Hochfilzen 31
## 2342 26:18.2 +2:25.9 <NA> 2015-2016 Hochfilzen 31
## 2343 26:18.7 +2:26.4 <NA> 2015-2016 Hochfilzen 31
## 2344 26:19.1 +2:26.8 <NA> 2015-2016 Hochfilzen 31
## 2345 26:20.3 +2:28.0 <NA> 2015-2016 Hochfilzen 31
## 2346 26:22.8 +2:30.5 <NA> 2015-2016 Hochfilzen 31
## 2347 26:30.4 +2:38.1 <NA> 2015-2016 Hochfilzen 31
## 2348 26:31.2 +2:38.9 <NA> 2015-2016 Hochfilzen 31
## 2349 26:35.4 +2:43.1 <NA> 2015-2016 Hochfilzen 31
## 2350 26:41.6 +2:49.3 <NA> 2015-2016 Hochfilzen 31
## 2351 26:42.0 +2:49.7 <NA> 2015-2016 Hochfilzen 31
## 2352 26:42.6 +2:50.3 <NA> 2015-2016 Hochfilzen 31
## 2353 26:43.7 +2:51.4 <NA> 2015-2016 Hochfilzen 31
## 2354 26:47.1 +2:54.8 <NA> 2015-2016 Hochfilzen 31
## 2355 26:49.2 +2:56.9 <NA> 2015-2016 Hochfilzen 31
## 2356 26:49.9 +2:57.6 <NA> 2015-2016 Hochfilzen 31
## 2357 26:51.7 +2:59.4 <NA> 2015-2016 Hochfilzen 31
## 2358 26:53.7 +3:01.4 <NA> 2015-2016 Hochfilzen 31
## 2359 26:56.0 +3:03.7 <NA> 2015-2016 Hochfilzen 31
## 2360 27:00.9 +3:08.6 <NA> 2015-2016 Hochfilzen 31
## 2361 27:01.4 +3:09.1 <NA> 2015-2016 Hochfilzen 31
## 2362 27:02.1 +3:09.8 <NA> 2015-2016 Hochfilzen 31
## 2363 27:02.2 +3:09.9 <NA> 2015-2016 Hochfilzen 31
## 2364 27:03.5 +3:11.2 <NA> 2015-2016 Hochfilzen 31
## 2365 27:04.1 +3:11.8 <NA> 2015-2016 Hochfilzen 31
## 2366 27:07.6 +3:15.3 <NA> 2015-2016 Hochfilzen 31
## 2367 27:10.8 +3:18.5 <NA> 2015-2016 Hochfilzen 31
## 2368 27:21.6 +3:29.3 <NA> 2015-2016 Hochfilzen 31
## 2369 27:28.5 +3:36.2 <NA> 2015-2016 Hochfilzen 31
## 2370 27:30.1 +3:37.8 <NA> 2015-2016 Hochfilzen 31
## 2371 27:35.0 +3:42.7 <NA> 2015-2016 Hochfilzen 31
## 2372 27:35.4 +3:43.1 <NA> 2015-2016 Hochfilzen 31
## 2373 27:36.6 +3:44.3 <NA> 2015-2016 Hochfilzen 31
## 2374 27:37.4 +3:45.1 <NA> 2015-2016 Hochfilzen 31
## 2375 27:38.5 +3:46.2 <NA> 2015-2016 Hochfilzen 31
## 2376 27:53.5 +4:01.2 <NA> 2015-2016 Hochfilzen 31
## 2377 28:06.6 +4:14.3 <NA> 2015-2016 Hochfilzen 31
## 2378 28:25.6 +4:33.3 <NA> 2015-2016 Hochfilzen 31
## 2379 28:50.5 +4:58.2 <NA> 2015-2016 Hochfilzen 31
## 2380 31:26.4 +7:34.1 <NA> 2015-2016 Hochfilzen 31
## 2381 33:27.8 33:26.8 2015-2016 Khanty-Mansiysk 32
## 2382 33:36.3 +8.5 32:34.3 2015-2016 Khanty-Mansiysk 32
## 2383 33:43.5 +15.7 33:05.5 2015-2016 Khanty-Mansiysk 32
## 2384 33:46.5 +18.7 32:31.5 2015-2016 Khanty-Mansiysk 32
## 2385 33:55.1 +27.3 32:52.1 2015-2016 Khanty-Mansiysk 32
## 2386 33:59.1 +31.3 33:06.1 2015-2016 Khanty-Mansiysk 32
## 2387 34:04.6 +36.8 32:43.6 2015-2016 Khanty-Mansiysk 32
## 2388 34:10.4 +42.6 33:42.4 2015-2016 Khanty-Mansiysk 32
## 2389 34:11.3 +43.5 33:48.3 2015-2016 Khanty-Mansiysk 32
## 2390 34:13.1 +45.3 32:57.1 2015-2016 Khanty-Mansiysk 32
## 2391 34:41.0 +1:13.2 32:39.0 2015-2016 Khanty-Mansiysk 32
## 2392 34:48.4 +1:20.6 32:48.4 2015-2016 Khanty-Mansiysk 32
## 2393 34:49.6 +1:21.8 33:42.6 2015-2016 Khanty-Mansiysk 32
## 2394 34:51.0 +1:23.2 32:58.0 2015-2016 Khanty-Mansiysk 32
## 2395 34:53.8 +1:26.0 33:32.8 2015-2016 Khanty-Mansiysk 32
## 2396 35:07.1 +1:39.3 33:52.1 2015-2016 Khanty-Mansiysk 32
## 2397 35:08.4 +1:40.6 33:05.4 2015-2016 Khanty-Mansiysk 32
## 2398 35:09.7 +1:41.9 35:09.7 2015-2016 Khanty-Mansiysk 32
## 2399 35:14.4 +1:46.6 33:56.4 2015-2016 Khanty-Mansiysk 32
## 2400 35:28.7 +2:00.9 33:12.7 2015-2016 Khanty-Mansiysk 32
## 2401 35:32.0 +2:04.2 34:08.0 2015-2016 Khanty-Mansiysk 32
## 2402 35:33.8 +2:06.0 33:38.8 2015-2016 Khanty-Mansiysk 32
## 2403 35:41.1 +2:13.3 34:08.1 2015-2016 Khanty-Mansiysk 32
## 2404 35:45.3 +2:17.5 33:46.3 2015-2016 Khanty-Mansiysk 32
## 2405 35:48.8 +2:21.0 33:57.8 2015-2016 Khanty-Mansiysk 32
## 2406 35:55.7 +2:27.9 34:04.7 2015-2016 Khanty-Mansiysk 32
## 2407 35:57.4 +2:29.6 34:07.4 2015-2016 Khanty-Mansiysk 32
## 2408 36:03.9 +2:36.1 34:38.9 2015-2016 Khanty-Mansiysk 32
## 2409 36:04.8 +2:37.0 34:07.8 2015-2016 Khanty-Mansiysk 32
## 2410 36:08.8 +2:41.0 34:45.8 2015-2016 Khanty-Mansiysk 32
## 2411 36:11.0 +2:43.2 34:20.0 2015-2016 Khanty-Mansiysk 32
## 2412 36:15.5 +2:47.7 34:37.5 2015-2016 Khanty-Mansiysk 32
## 2413 36:17.2 +2:49.4 33:32.2 2015-2016 Khanty-Mansiysk 32
## 2414 36:18.2 +2:50.4 34:23.2 2015-2016 Khanty-Mansiysk 32
## 2415 36:24.5 +2:56.7 33:34.5 2015-2016 Khanty-Mansiysk 32
## 2416 36:33.0 +3:05.2 34:25.0 2015-2016 Khanty-Mansiysk 32
## 2417 36:40.2 +3:12.4 34:18.2 2015-2016 Khanty-Mansiysk 32
## 2418 36:47.5 +3:19.7 34:56.5 2015-2016 Khanty-Mansiysk 32
## 2419 36:48.2 +3:20.4 34:20.2 2015-2016 Khanty-Mansiysk 32
## 2420 36:50.7 +3:22.9 34:04.7 2015-2016 Khanty-Mansiysk 32
## 2421 36:53.2 +3:25.4 34:53.2 2015-2016 Khanty-Mansiysk 32
## 2422 36:59.7 +3:31.9 34:20.7 2015-2016 Khanty-Mansiysk 32
## 2423 37:09.7 +3:41.9 34:58.7 2015-2016 Khanty-Mansiysk 32
## 2424 37:13.2 +3:45.4 35:01.2 2015-2016 Khanty-Mansiysk 32
## 2425 37:14.3 +3:46.5 35:14.3 2015-2016 Khanty-Mansiysk 32
## 2426 37:47.1 +4:19.3 35:49.1 2015-2016 Khanty-Mansiysk 32
## 2427 37:48.7 +4:20.9 36:00.7 2015-2016 Khanty-Mansiysk 32
## 2428 37:53.8 +4:26.0 35:02.8 2015-2016 Khanty-Mansiysk 32
## 2429 38:20.2 +4:52.4 35:36.2 2015-2016 Khanty-Mansiysk 32
## 2430 38:45.8 +5:18.0 36:16.8 2015-2016 Khanty-Mansiysk 32
## 2431 39:06.4 +5:38.6 36:39.4 2015-2016 Khanty-Mansiysk 32
## 2432 39:55.0 +6:27.2 37:15.0 2015-2016 Khanty-Mansiysk 32
## 2433 40:04.7 +6:36.9 37:15.7 2015-2016 Khanty-Mansiysk 32
## 2434 2015-2016 Khanty-Mansiysk 32
## 2435 2015-2016 Khanty-Mansiysk 32
## 2436 2015-2016 Khanty-Mansiysk 32
## 2437 2015-2016 Khanty-Mansiysk 32
## 2438 2015-2016 Khanty-Mansiysk 32
## 2439 2015-2016 Khanty-Mansiysk 32
## 2440 2015-2016 Khanty-Mansiysk 32
## 2441 24:18.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2442 24:19.7 +1.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2443 24:41.6 +23.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2444 24:46.8 +28.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2445 24:56.7 +38.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2446 25:11.2 +52.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2447 25:20.6 +1:02.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2448 25:22.0 +1:03.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2449 25:25.4 +1:06.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2450 25:33.8 +1:15.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2451 25:34.0 +1:15.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2452 25:35.0 +1:16.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2453 25:36.4 +1:17.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2454 25:39.7 +1:21.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2455 25:39.7 +1:21.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2456 25:41.2 +1:22.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2457 25:42.8 +1:24.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2458 25:44.0 +1:25.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2459 25:51.2 +1:32.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2460 25:56.0 +1:37.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2461 25:56.9 +1:38.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2462 26:06.4 +1:47.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2463 26:08.2 +1:49.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2464 26:09.2 +1:50.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2465 26:09.6 +1:51.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2466 26:09.8 +1:51.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2467 26:09.9 +1:51.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2468 26:10.9 +1:52.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2469 26:11.8 +1:53.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2470 26:13.9 +1:55.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2471 26:14.0 +1:55.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2472 26:15.8 +1:57.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2473 26:16.4 +1:57.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2474 26:17.3 +1:58.7 <NA> 2015-2016 Khanty-Mansiysk 33
## 2475 26:18.1 +1:59.5 <NA> 2015-2016 Khanty-Mansiysk 33
## 2476 26:18.2 +1:59.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2477 26:19.0 +2:00.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2478 26:20.5 +2:01.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2479 26:21.4 +2:02.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2480 26:21.8 +2:03.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2481 26:24.8 +2:06.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2482 26:26.7 +2:08.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2483 26:29.3 +2:10.7 <NA> 2015-2016 Khanty-Mansiysk 33
## 2484 26:30.8 +2:12.2 <NA> 2015-2016 Khanty-Mansiysk 33
## 2485 26:34.6 +2:16.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2486 26:40.6 +2:22.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2487 26:45.7 +2:27.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2488 26:46.9 +2:28.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2489 26:47.5 +2:28.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2490 26:53.9 +2:35.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2491 26:57.5 +2:38.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2492 26:58.5 +2:39.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2493 27:01.3 +2:42.7 <NA> 2015-2016 Khanty-Mansiysk 33
## 2494 27:02.6 +2:44.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2495 27:03.5 +2:44.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2496 27:04.6 +2:46.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2497 27:07.5 +2:48.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2498 27:08.4 +2:49.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2499 27:08.9 +2:50.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2500 27:09.1 +2:50.5 <NA> 2015-2016 Khanty-Mansiysk 33
## 2501 27:11.0 +2:52.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2502 27:16.3 +2:57.7 <NA> 2015-2016 Khanty-Mansiysk 33
## 2503 27:16.7 +2:58.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2504 27:19.2 +3:00.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2505 27:24.6 +3:06.0 <NA> 2015-2016 Khanty-Mansiysk 33
## 2506 27:28.1 +3:09.5 <NA> 2015-2016 Khanty-Mansiysk 33
## 2507 27:28.4 +3:09.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2508 27:41.3 +3:22.7 <NA> 2015-2016 Khanty-Mansiysk 33
## 2509 27:44.4 +3:25.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2510 27:45.5 +3:26.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2511 27:51.2 +3:32.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2512 27:52.2 +3:33.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2513 27:53.9 +3:35.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2514 28:00.9 +3:42.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2515 28:03.5 +3:44.9 <NA> 2015-2016 Khanty-Mansiysk 33
## 2516 28:11.9 +3:53.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2517 28:21.4 +4:02.8 <NA> 2015-2016 Khanty-Mansiysk 33
## 2518 28:21.9 +4:03.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2519 28:31.7 +4:13.1 <NA> 2015-2016 Khanty-Mansiysk 33
## 2520 28:42.1 +4:23.5 <NA> 2015-2016 Khanty-Mansiysk 33
## 2521 28:50.0 +4:31.4 <NA> 2015-2016 Khanty-Mansiysk 33
## 2522 28:53.2 +4:34.6 <NA> 2015-2016 Khanty-Mansiysk 33
## 2523 29:29.9 +5:11.3 <NA> 2015-2016 Khanty-Mansiysk 33
## 2524 30:45.3 +6:26.7 <NA> 2015-2016 Khanty-Mansiysk 33
## 2525 <NA> 2015-2016 Khanty-Mansiysk 33
## 2526 <NA> 2015-2016 Khanty-Mansiysk 33
## 2527 <NA> 2015-2016 Khanty-Mansiysk 33
## 2528 50:14.5 <NA> 2015-2016 Oestersund 34
## 2529 50:41.6 +27.1 <NA> 2015-2016 Oestersund 34
## 2530 50:52.7 +38.2 <NA> 2015-2016 Oestersund 34
## 2531 51:58.5 +1:44.0 <NA> 2015-2016 Oestersund 34
## 2532 51:58.5 +1:44.0 <NA> 2015-2016 Oestersund 34
## 2533 52:18.9 +2:04.4 <NA> 2015-2016 Oestersund 34
## 2534 52:22.3 +2:07.8 <NA> 2015-2016 Oestersund 34
## 2535 52:29.1 +2:14.6 <NA> 2015-2016 Oestersund 34
## 2536 52:29.4 +2:14.9 <NA> 2015-2016 Oestersund 34
## 2537 52:35.1 +2:20.6 <NA> 2015-2016 Oestersund 34
## 2538 52:39.9 +2:25.4 <NA> 2015-2016 Oestersund 34
## 2539 52:52.0 +2:37.5 <NA> 2015-2016 Oestersund 34
## 2540 53:10.9 +2:56.4 <NA> 2015-2016 Oestersund 34
## 2541 53:11.8 +2:57.3 <NA> 2015-2016 Oestersund 34
## 2542 53:17.8 +3:03.3 <NA> 2015-2016 Oestersund 34
## 2543 53:21.9 +3:07.4 <NA> 2015-2016 Oestersund 34
## 2544 53:27.9 +3:13.4 <NA> 2015-2016 Oestersund 34
## 2545 53:28.1 +3:13.6 <NA> 2015-2016 Oestersund 34
## 2546 53:33.5 +3:19.0 <NA> 2015-2016 Oestersund 34
## 2547 53:34.8 +3:20.3 <NA> 2015-2016 Oestersund 34
## 2548 53:35.6 +3:21.1 <NA> 2015-2016 Oestersund 34
## 2549 53:42.1 +3:27.6 <NA> 2015-2016 Oestersund 34
## 2550 53:46.0 +3:31.5 <NA> 2015-2016 Oestersund 34
## 2551 53:58.6 +3:44.1 <NA> 2015-2016 Oestersund 34
## 2552 54:03.9 +3:49.4 <NA> 2015-2016 Oestersund 34
## 2553 54:05.1 +3:50.6 <NA> 2015-2016 Oestersund 34
## 2554 54:06.4 +3:51.9 <NA> 2015-2016 Oestersund 34
## 2555 54:08.4 +3:53.9 <NA> 2015-2016 Oestersund 34
## 2556 54:09.1 +3:54.6 <NA> 2015-2016 Oestersund 34
## 2557 54:09.3 +3:54.8 <NA> 2015-2016 Oestersund 34
## 2558 54:10.5 +3:56.0 <NA> 2015-2016 Oestersund 34
## 2559 54:15.8 +4:01.3 <NA> 2015-2016 Oestersund 34
## 2560 54:24.2 +4:09.7 <NA> 2015-2016 Oestersund 34
## 2561 54:25.2 +4:10.7 <NA> 2015-2016 Oestersund 34
## 2562 54:45.4 +4:30.9 <NA> 2015-2016 Oestersund 34
## 2563 54:46.7 +4:32.2 <NA> 2015-2016 Oestersund 34
## 2564 54:51.1 +4:36.6 <NA> 2015-2016 Oestersund 34
## 2565 54:59.7 +4:45.2 <NA> 2015-2016 Oestersund 34
## 2566 55:00.6 +4:46.1 <NA> 2015-2016 Oestersund 34
## 2567 55:03.5 +4:49.0 <NA> 2015-2016 Oestersund 34
## 2568 55:05.3 +4:50.8 <NA> 2015-2016 Oestersund 34
## 2569 55:12.2 +4:57.7 <NA> 2015-2016 Oestersund 34
## 2570 55:13.3 +4:58.8 <NA> 2015-2016 Oestersund 34
## 2571 55:14.6 +5:00.1 <NA> 2015-2016 Oestersund 34
## 2572 55:23.5 +5:09.0 <NA> 2015-2016 Oestersund 34
## 2573 55:25.0 +5:10.5 <NA> 2015-2016 Oestersund 34
## 2574 55:31.5 +5:17.0 <NA> 2015-2016 Oestersund 34
## 2575 55:35.8 +5:21.3 <NA> 2015-2016 Oestersund 34
## 2576 55:36.0 +5:21.5 <NA> 2015-2016 Oestersund 34
## 2577 55:36.1 +5:21.6 <NA> 2015-2016 Oestersund 34
## 2578 55:36.8 +5:22.3 <NA> 2015-2016 Oestersund 34
## 2579 55:44.2 +5:29.7 <NA> 2015-2016 Oestersund 34
## 2580 55:47.0 +5:32.5 <NA> 2015-2016 Oestersund 34
## 2581 55:47.9 +5:33.4 <NA> 2015-2016 Oestersund 34
## 2582 55:49.8 +5:35.3 <NA> 2015-2016 Oestersund 34
## 2583 55:55.5 +5:41.0 <NA> 2015-2016 Oestersund 34
## 2584 55:58.4 +5:43.9 <NA> 2015-2016 Oestersund 34
## 2585 56:02.9 +5:48.4 <NA> 2015-2016 Oestersund 34
## 2586 56:05.1 +5:50.6 <NA> 2015-2016 Oestersund 34
## 2587 56:22.3 +6:07.8 <NA> 2015-2016 Oestersund 34
## 2588 56:27.0 +6:12.5 <NA> 2015-2016 Oestersund 34
## 2589 56:35.1 +6:20.6 <NA> 2015-2016 Oestersund 34
## 2590 56:37.1 +6:22.6 <NA> 2015-2016 Oestersund 34
## 2591 56:59.5 +6:45.0 <NA> 2015-2016 Oestersund 34
## 2592 57:06.5 +6:52.0 <NA> 2015-2016 Oestersund 34
## 2593 57:11.8 +6:57.3 <NA> 2015-2016 Oestersund 34
## 2594 57:17.1 +7:02.6 <NA> 2015-2016 Oestersund 34
## 2595 57:23.2 +7:08.7 <NA> 2015-2016 Oestersund 34
## 2596 57:26.5 +7:12.0 <NA> 2015-2016 Oestersund 34
## 2597 57:33.8 +7:19.3 <NA> 2015-2016 Oestersund 34
## 2598 57:36.2 +7:21.7 <NA> 2015-2016 Oestersund 34
## 2599 57:42.2 +7:27.7 <NA> 2015-2016 Oestersund 34
## 2600 57:51.3 +7:36.8 <NA> 2015-2016 Oestersund 34
## 2601 57:55.6 +7:41.1 <NA> 2015-2016 Oestersund 34
## 2602 57:58.5 +7:44.0 <NA> 2015-2016 Oestersund 34
## 2603 58:04.8 +7:50.3 <NA> 2015-2016 Oestersund 34
## 2604 58:05.5 +7:51.0 <NA> 2015-2016 Oestersund 34
## 2605 58:18.9 +8:04.4 <NA> 2015-2016 Oestersund 34
## 2606 58:21.3 +8:06.8 <NA> 2015-2016 Oestersund 34
## 2607 58:42.4 +8:27.9 <NA> 2015-2016 Oestersund 34
## 2608 58:43.4 +8:28.9 <NA> 2015-2016 Oestersund 34
## 2609 58:46.1 +8:31.6 <NA> 2015-2016 Oestersund 34
## 2610 59:02.2 +8:47.7 <NA> 2015-2016 Oestersund 34
## 2611 59:19.5 +9:05.0 <NA> 2015-2016 Oestersund 34
## 2612 59:25.0 +9:10.5 <NA> 2015-2016 Oestersund 34
## 2613 59:39.5 +9:25.0 <NA> 2015-2016 Oestersund 34
## 2614 59:44.8 +9:30.3 <NA> 2015-2016 Oestersund 34
## 2615 59:55.9 +9:41.4 <NA> 2015-2016 Oestersund 34
## 2616 1:00:05.6 +9:51.1 <NA> 2015-2016 Oestersund 34
## 2617 1:00:25.9 +10:11.4 <NA> 2015-2016 Oestersund 34
## 2618 1:00:30.8 +10:16.3 <NA> 2015-2016 Oestersund 34
## 2619 1:00:39.6 +10:25.1 <NA> 2015-2016 Oestersund 34
## 2620 1:01:47.3 +11:32.8 <NA> 2015-2016 Oestersund 34
## 2621 1:01:47.9 +11:33.4 <NA> 2015-2016 Oestersund 34
## 2622 1:01:56.5 +11:42.0 <NA> 2015-2016 Oestersund 34
## 2623 1:02:27.5 +12:13.0 <NA> 2015-2016 Oestersund 34
## 2624 1:02:40.5 +12:26.0 <NA> 2015-2016 Oestersund 34
## 2625 1:02:42.0 +12:27.5 <NA> 2015-2016 Oestersund 34
## 2626 1:03:12.2 +12:57.7 <NA> 2015-2016 Oestersund 34
## 2627 1:03:19.7 +13:05.2 <NA> 2015-2016 Oestersund 34
## 2628 1:04:07.9 +13:53.4 <NA> 2015-2016 Oestersund 34
## 2629 1:04:25.6 +14:11.1 <NA> 2015-2016 Oestersund 34
## 2630 1:05:15.1 +15:00.6 <NA> 2015-2016 Oestersund 34
## 2631 1:06:21.7 +16:07.2 <NA> 2015-2016 Oestersund 34
## 2632 <NA> 2015-2016 Oestersund 34
## 2633 <NA> 2015-2016 Oestersund 34
## 2634 31:22.4 31:22.4 2015-2016 Oestersund 35
## 2635 31:57.5 +35.1 31:05.5 2015-2016 Oestersund 35
## 2636 32:17.6 +55.2 31:13.6 2015-2016 Oestersund 35
## 2637 32:19.3 +56.9 29:59.3 2015-2016 Oestersund 35
## 2638 32:21.4 +59.0 31:10.4 2015-2016 Oestersund 35
## 2639 32:24.0 +1:01.6 31:15.0 2015-2016 Oestersund 35
## 2640 32:28.1 +1:05.7 30:04.1 2015-2016 Oestersund 35
## 2641 32:32.1 +1:09.7 30:15.1 2015-2016 Oestersund 35
## 2642 32:34.1 +1:11.7 31:17.1 2015-2016 Oestersund 35
## 2643 32:37.5 +1:15.1 31:15.5 2015-2016 Oestersund 35
## 2644 32:46.4 +1:24.0 31:51.4 2015-2016 Oestersund 35
## 2645 32:56.8 +1:34.4 30:49.8 2015-2016 Oestersund 35
## 2646 33:00.2 +1:37.8 30:54.2 2015-2016 Oestersund 35
## 2647 33:03.1 +1:40.7 30:04.1 2015-2016 Oestersund 35
## 2648 33:09.9 +1:47.5 30:46.9 2015-2016 Oestersund 35
## 2649 33:11.4 +1:49.0 32:00.4 2015-2016 Oestersund 35
## 2650 33:17.3 +1:54.9 31:07.3 2015-2016 Oestersund 35
## 2651 33:23.6 +2:01.2 30:31.6 2015-2016 Oestersund 35
## 2652 33:23.9 +2:01.5 30:47.9 2015-2016 Oestersund 35
## 2653 33:30.3 +2:07.9 31:18.3 2015-2016 Oestersund 35
## 2654 33:33.7 +2:11.3 31:23.7 2015-2016 Oestersund 35
## 2655 33:34.7 +2:12.3 30:59.7 2015-2016 Oestersund 35
## 2656 33:39.5 +2:17.1 31:53.5 2015-2016 Oestersund 35
## 2657 33:40.7 +2:18.3 31:45.7 2015-2016 Oestersund 35
## 2658 33:41.2 +2:18.8 30:23.2 2015-2016 Oestersund 35
## 2659 33:45.1 +2:22.7 31:36.1 2015-2016 Oestersund 35
## 2660 33:48.8 +2:26.4 31:26.8 2015-2016 Oestersund 35
## 2661 33:56.5 +2:34.1 31:33.5 2015-2016 Oestersund 35
## 2662 33:58.8 +2:36.4 31:18.8 2015-2016 Oestersund 35
## 2663 34:11.2 +2:48.8 32:38.2 2015-2016 Oestersund 35
## 2664 34:13.9 +2:51.5 31:33.9 2015-2016 Oestersund 35
## 2665 34:16.1 +2:53.7 32:12.1 2015-2016 Oestersund 35
## 2666 34:18.0 +2:55.6 31:50.0 2015-2016 Oestersund 35
## 2667 34:21.1 +2:58.7 31:44.1 2015-2016 Oestersund 35
## 2668 34:26.8 +3:04.4 32:16.8 2015-2016 Oestersund 35
## 2669 34:32.9 +3:10.5 31:26.9 2015-2016 Oestersund 35
## 2670 34:38.1 +3:15.7 31:24.1 2015-2016 Oestersund 35
## 2671 34:43.3 +3:20.9 31:31.3 2015-2016 Oestersund 35
## 2672 34:43.8 +3:21.4 31:57.8 2015-2016 Oestersund 35
## 2673 34:47.6 +3:25.2 32:33.6 2015-2016 Oestersund 35
## 2674 34:54.6 +3:32.2 31:39.6 2015-2016 Oestersund 35
## 2675 34:54.8 +3:32.4 32:21.8 2015-2016 Oestersund 35
## 2676 34:56.7 +3:34.3 32:50.7 2015-2016 Oestersund 35
## 2677 35:02.6 +3:40.2 32:01.6 2015-2016 Oestersund 35
## 2678 35:14.6 +3:52.2 32:16.6 2015-2016 Oestersund 35
## 2679 35:16.9 +3:54.5 33:03.9 2015-2016 Oestersund 35
## 2680 35:24.5 +4:02.1 33:31.5 2015-2016 Oestersund 35
## 2681 35:24.5 +4:02.1 33:00.5 2015-2016 Oestersund 35
## 2682 35:50.2 +4:27.8 33:19.2 2015-2016 Oestersund 35
## 2683 35:57.0 +4:34.6 33:39.0 2015-2016 Oestersund 35
## 2684 35:57.0 +4:34.6 32:28.0 2015-2016 Oestersund 35
## 2685 36:09.8 +4:47.4 34:04.8 2015-2016 Oestersund 35
## 2686 36:14.6 +4:52.2 32:46.6 2015-2016 Oestersund 35
## 2687 36:17.5 +4:55.1 33:37.5 2015-2016 Oestersund 35
## 2688 36:20.8 +4:58.4 33:18.8 2015-2016 Oestersund 35
## 2689 36:22.0 +4:59.6 33:12.0 2015-2016 Oestersund 35
## 2690 36:31.3 +5:08.9 33:28.3 2015-2016 Oestersund 35
## 2691 36:34.8 +5:12.4 34:04.8 2015-2016 Oestersund 35
## 2692 37:29.6 +6:07.2 35:23.6 2015-2016 Oestersund 35
## 2693 38:01.8 +6:39.4 35:14.8 2015-2016 Oestersund 35
## 2694 24:02.0 <NA> 2015-2016 Oestersund 36
## 2695 24:53.6 +51.6 <NA> 2015-2016 Oestersund 36
## 2696 24:57.2 +55.2 <NA> 2015-2016 Oestersund 36
## 2697 25:06.2 +1:04.2 <NA> 2015-2016 Oestersund 36
## 2698 25:10.5 +1:08.5 <NA> 2015-2016 Oestersund 36
## 2699 25:12.6 +1:10.6 <NA> 2015-2016 Oestersund 36
## 2700 25:13.0 +1:11.0 <NA> 2015-2016 Oestersund 36
## 2701 25:18.5 +1:16.5 <NA> 2015-2016 Oestersund 36
## 2702 25:24.3 +1:22.3 <NA> 2015-2016 Oestersund 36
## 2703 25:35.2 +1:33.2 <NA> 2015-2016 Oestersund 36
## 2704 25:48.1 +1:46.1 <NA> 2015-2016 Oestersund 36
## 2705 25:54.6 +1:52.6 <NA> 2015-2016 Oestersund 36
## 2706 25:57.3 +1:55.3 <NA> 2015-2016 Oestersund 36
## 2707 26:05.7 +2:03.7 <NA> 2015-2016 Oestersund 36
## 2708 26:07.0 +2:05.0 <NA> 2015-2016 Oestersund 36
## 2709 26:07.8 +2:05.8 <NA> 2015-2016 Oestersund 36
## 2710 26:07.8 +2:05.8 <NA> 2015-2016 Oestersund 36
## 2711 26:08.4 +2:06.4 <NA> 2015-2016 Oestersund 36
## 2712 26:08.5 +2:06.5 <NA> 2015-2016 Oestersund 36
## 2713 26:11.2 +2:09.2 <NA> 2015-2016 Oestersund 36
## 2714 26:11.8 +2:09.8 <NA> 2015-2016 Oestersund 36
## 2715 26:11.8 +2:09.8 <NA> 2015-2016 Oestersund 36
## 2716 26:12.0 +2:10.0 <NA> 2015-2016 Oestersund 36
## 2717 26:13.7 +2:11.7 <NA> 2015-2016 Oestersund 36
## 2718 26:15.4 +2:13.4 <NA> 2015-2016 Oestersund 36
## 2719 26:16.0 +2:14.0 <NA> 2015-2016 Oestersund 36
## 2720 26:18.5 +2:16.5 <NA> 2015-2016 Oestersund 36
## 2721 26:19.9 +2:17.9 <NA> 2015-2016 Oestersund 36
## 2722 26:21.8 +2:19.8 <NA> 2015-2016 Oestersund 36
## 2723 26:24.1 +2:22.1 <NA> 2015-2016 Oestersund 36
## 2724 26:24.8 +2:22.8 <NA> 2015-2016 Oestersund 36
## 2725 26:25.2 +2:23.2 <NA> 2015-2016 Oestersund 36
## 2726 26:25.5 +2:23.5 <NA> 2015-2016 Oestersund 36
## 2727 26:26.1 +2:24.1 <NA> 2015-2016 Oestersund 36
## 2728 26:29.6 +2:27.6 <NA> 2015-2016 Oestersund 36
## 2729 26:31.8 +2:29.8 <NA> 2015-2016 Oestersund 36
## 2730 26:32.9 +2:30.9 <NA> 2015-2016 Oestersund 36
## 2731 26:35.4 +2:33.4 <NA> 2015-2016 Oestersund 36
## 2732 26:37.2 +2:35.2 <NA> 2015-2016 Oestersund 36
## 2733 26:37.5 +2:35.5 <NA> 2015-2016 Oestersund 36
## 2734 26:38.5 +2:36.5 <NA> 2015-2016 Oestersund 36
## 2735 26:41.5 +2:39.5 <NA> 2015-2016 Oestersund 36
## 2736 26:42.1 +2:40.1 <NA> 2015-2016 Oestersund 36
## 2737 26:42.3 +2:40.3 <NA> 2015-2016 Oestersund 36
## 2738 26:47.8 +2:45.8 <NA> 2015-2016 Oestersund 36
## 2739 26:48.8 +2:46.8 <NA> 2015-2016 Oestersund 36
## 2740 26:54.4 +2:52.4 <NA> 2015-2016 Oestersund 36
## 2741 27:00.0 +2:58.0 <NA> 2015-2016 Oestersund 36
## 2742 27:00.5 +2:58.5 <NA> 2015-2016 Oestersund 36
## 2743 27:02.8 +3:00.8 <NA> 2015-2016 Oestersund 36
## 2744 27:03.8 +3:01.8 <NA> 2015-2016 Oestersund 36
## 2745 27:05.1 +3:03.1 <NA> 2015-2016 Oestersund 36
## 2746 27:07.9 +3:05.9 <NA> 2015-2016 Oestersund 36
## 2747 27:12.0 +3:10.0 <NA> 2015-2016 Oestersund 36
## 2748 27:14.2 +3:12.2 <NA> 2015-2016 Oestersund 36
## 2749 27:16.0 +3:14.0 <NA> 2015-2016 Oestersund 36
## 2750 27:17.4 +3:15.4 <NA> 2015-2016 Oestersund 36
## 2751 27:19.8 +3:17.8 <NA> 2015-2016 Oestersund 36
## 2752 27:30.0 +3:28.0 <NA> 2015-2016 Oestersund 36
## 2753 27:31.1 +3:29.1 <NA> 2015-2016 Oestersund 36
## 2754 27:32.3 +3:30.3 <NA> 2015-2016 Oestersund 36
## 2755 27:32.7 +3:30.7 <NA> 2015-2016 Oestersund 36
## 2756 27:37.5 +3:35.5 <NA> 2015-2016 Oestersund 36
## 2757 27:41.8 +3:39.8 <NA> 2015-2016 Oestersund 36
## 2758 27:42.6 +3:40.6 <NA> 2015-2016 Oestersund 36
## 2759 27:42.9 +3:40.9 <NA> 2015-2016 Oestersund 36
## 2760 27:46.5 +3:44.5 <NA> 2015-2016 Oestersund 36
## 2761 27:48.7 +3:46.7 <NA> 2015-2016 Oestersund 36
## 2762 27:49.4 +3:47.4 <NA> 2015-2016 Oestersund 36
## 2763 27:51.5 +3:49.5 <NA> 2015-2016 Oestersund 36
## 2764 28:07.9 +4:05.9 <NA> 2015-2016 Oestersund 36
## 2765 28:08.3 +4:06.3 <NA> 2015-2016 Oestersund 36
## 2766 28:10.2 +4:08.2 <NA> 2015-2016 Oestersund 36
## 2767 28:12.8 +4:10.8 <NA> 2015-2016 Oestersund 36
## 2768 28:13.3 +4:11.3 <NA> 2015-2016 Oestersund 36
## 2769 28:13.8 +4:11.8 <NA> 2015-2016 Oestersund 36
## 2770 28:15.0 +4:13.0 <NA> 2015-2016 Oestersund 36
## 2771 28:15.8 +4:13.8 <NA> 2015-2016 Oestersund 36
## 2772 28:17.5 +4:15.5 <NA> 2015-2016 Oestersund 36
## 2773 28:19.3 +4:17.3 <NA> 2015-2016 Oestersund 36
## 2774 28:22.5 +4:20.5 <NA> 2015-2016 Oestersund 36
## 2775 28:25.6 +4:23.6 <NA> 2015-2016 Oestersund 36
## 2776 28:26.9 +4:24.9 <NA> 2015-2016 Oestersund 36
## 2777 28:27.9 +4:25.9 <NA> 2015-2016 Oestersund 36
## 2778 28:28.0 +4:26.0 <NA> 2015-2016 Oestersund 36
## 2779 28:32.8 +4:30.8 <NA> 2015-2016 Oestersund 36
## 2780 28:34.2 +4:32.2 <NA> 2015-2016 Oestersund 36
## 2781 28:45.6 +4:43.6 <NA> 2015-2016 Oestersund 36
## 2782 28:54.1 +4:52.1 <NA> 2015-2016 Oestersund 36
## 2783 28:59.1 +4:57.1 <NA> 2015-2016 Oestersund 36
## 2784 28:59.5 +4:57.5 <NA> 2015-2016 Oestersund 36
## 2785 29:01.2 +4:59.2 <NA> 2015-2016 Oestersund 36
## 2786 29:04.2 +5:02.2 <NA> 2015-2016 Oestersund 36
## 2787 29:08.5 +5:06.5 <NA> 2015-2016 Oestersund 36
## 2788 29:08.5 +5:06.5 <NA> 2015-2016 Oestersund 36
## 2789 29:35.8 +5:33.8 <NA> 2015-2016 Oestersund 36
## 2790 29:41.2 +5:39.2 <NA> 2015-2016 Oestersund 36
## 2791 29:42.1 +5:40.1 <NA> 2015-2016 Oestersund 36
## 2792 29:44.3 +5:42.3 <NA> 2015-2016 Oestersund 36
## 2793 29:46.6 +5:44.6 <NA> 2015-2016 Oestersund 36
## 2794 29:57.2 +5:55.2 <NA> 2015-2016 Oestersund 36
## 2795 30:39.4 +6:37.4 <NA> 2015-2016 Oestersund 36
## 2796 30:42.3 +6:40.3 <NA> 2015-2016 Oestersund 36
## 2797 <NA> 2015-2016 Oestersund 36
## 2798 <NA> 2015-2016 Oestersund 36
## 2799 <NA> 2015-2016 Oestersund 36
## 2800 49:13.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2801 49:19.0 +5.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2802 49:28.3 +14.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2803 50:11.1 +57.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2804 50:30.3 +1:16.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2805 50:54.3 +1:40.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2806 51:08.6 +1:54.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2807 51:18.5 +2:04.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2808 51:25.8 +2:11.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2809 51:32.3 +2:18.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2810 51:45.9 +2:32.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2811 51:47.5 +2:33.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2812 51:47.6 +2:33.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2813 51:51.3 +2:37.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2814 51:57.6 +2:43.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2815 52:02.3 +2:48.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2816 52:14.4 +3:00.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2817 52:18.8 +3:04.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2818 52:20.7 +3:06.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2819 52:24.9 +3:11.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2820 52:29.5 +3:15.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2821 52:31.5 +3:17.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2822 52:42.6 +3:28.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2823 52:46.7 +3:32.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2824 52:49.3 +3:35.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2825 52:53.9 +3:40.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2826 52:54.5 +3:40.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2827 52:57.0 +3:43.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2828 53:11.7 +3:57.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2829 53:16.1 +4:02.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2830 53:16.9 +4:03.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2831 53:25.3 +4:11.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2832 53:26.4 +4:12.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2833 53:27.5 +4:13.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2834 53:33.4 +4:19.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2835 53:37.7 +4:23.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2836 53:38.4 +4:24.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2837 53:56.1 +4:42.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2838 54:06.3 +4:52.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2839 54:16.3 +5:02.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2840 54:21.2 +5:07.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2841 54:22.2 +5:08.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2842 54:25.7 +5:11.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2843 54:28.1 +5:14.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2844 54:37.4 +5:23.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2845 54:39.0 +5:25.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2846 54:40.0 +5:26.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2847 54:51.9 +5:38.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2848 54:52.7 +5:38.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2849 54:56.8 +5:42.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2850 55:02.4 +5:48.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2851 55:05.3 +5:51.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2852 55:05.8 +5:51.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2853 55:14.7 +6:00.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2854 55:27.9 +6:14.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2855 55:35.9 +6:22.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2856 55:47.1 +6:33.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2857 55:50.5 +6:36.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2858 55:56.1 +6:42.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2859 55:59.6 +6:45.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2860 56:05.9 +6:52.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2861 56:13.8 +6:59.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2862 56:22.1 +7:08.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2863 56:22.7 +7:08.8 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2864 56:37.6 +7:23.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2865 56:48.6 +7:34.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2866 56:50.9 +7:37.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2867 56:55.4 +7:41.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2868 57:02.0 +7:48.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2869 57:04.9 +7:51.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2870 57:11.8 +7:57.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2871 57:18.3 +8:04.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2872 57:20.8 +8:06.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2873 57:30.2 +8:16.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2874 57:35.1 +8:21.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2875 57:41.1 +8:27.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2876 57:50.0 +8:36.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2877 57:54.6 +8:40.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2878 58:12.1 +8:58.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2879 58:18.6 +9:04.7 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2880 58:20.1 +9:06.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2881 58:24.5 +9:10.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2882 58:57.5 +9:43.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2883 59:06.0 +9:52.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2884 59:07.4 +9:53.5 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2885 59:11.0 +9:57.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2886 59:21.1 +10:07.2 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2887 59:36.5 +10:22.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2888 59:43.5 +10:29.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2889 1:00:45.3 +11:31.4 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2890 1:01:06.0 +11:52.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2891 1:01:16.2 +12:02.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2892 1:01:21.2 +12:07.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2893 1:01:40.2 +12:26.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2894 1:02:08.0 +12:54.1 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2895 1:02:37.5 +13:23.6 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2896 1:04:22.9 +15:09.0 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2897 1:04:38.8 +15:24.9 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2898 1:07:57.2 +18:43.3 <NA> 2015-2016 Oslo_Holmenkollen 37
## 2899 37:05.1 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2900 37:07.9 +2.8 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2901 37:11.8 +6.7 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2902 37:24.9 +19.8 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2903 37:25.0 +19.9 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2904 37:26.9 +21.8 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2905 37:27.0 +21.9 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2906 37:36.7 +31.6 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2907 37:46.1 +41.0 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2908 37:46.8 +41.7 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2909 37:58.2 +53.1 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2910 37:58.5 +53.4 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2911 38:01.2 +56.1 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2912 38:07.9 +1:02.8 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2913 38:10.3 +1:05.2 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2914 38:11.4 +1:06.3 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2915 38:13.2 +1:08.1 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2916 38:14.3 +1:09.2 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2917 38:19.3 +1:14.2 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2918 38:26.8 +1:21.7 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2919 38:39.4 +1:34.3 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2920 38:42.1 +1:37.0 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2921 38:42.5 +1:37.4 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2922 39:08.7 +2:03.6 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2923 39:18.2 +2:13.1 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2924 39:30.7 +2:25.6 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2925 40:01.3 +2:56.2 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2926 40:42.7 +3:37.6 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2927 41:17.8 +4:12.7 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2928 <NA> 2015-2016 Oslo_Holmenkollen 38
## 2929 32:56.5 32:56.5 2015-2016 Oslo_Holmenkollen 39
## 2930 33:16.6 +20.1 32:49.6 2015-2016 Oslo_Holmenkollen 39
## 2931 33:27.7 +31.2 32:11.7 2015-2016 Oslo_Holmenkollen 39
## 2932 33:34.8 +38.3 32:58.8 2015-2016 Oslo_Holmenkollen 39
## 2933 33:38.4 +41.9 31:51.4 2015-2016 Oslo_Holmenkollen 39
## 2934 33:39.4 +42.9 32:39.4 2015-2016 Oslo_Holmenkollen 39
## 2935 33:39.8 +43.3 32:20.8 2015-2016 Oslo_Holmenkollen 39
## 2936 33:46.5 +50.0 33:18.5 2015-2016 Oslo_Holmenkollen 39
## 2937 33:56.4 +59.9 31:58.4 2015-2016 Oslo_Holmenkollen 39
## 2938 33:56.4 +59.9 32:43.4 2015-2016 Oslo_Holmenkollen 39
## 2939 33:58.1 +1:01.6 33:18.1 2015-2016 Oslo_Holmenkollen 39
## 2940 34:02.7 +1:06.2 32:52.7 2015-2016 Oslo_Holmenkollen 39
## 2941 34:13.5 +1:17.0 33:31.5 2015-2016 Oslo_Holmenkollen 39
## 2942 34:18.4 +1:21.9 33:32.4 2015-2016 Oslo_Holmenkollen 39
## 2943 34:19.7 +1:23.2 32:20.7 2015-2016 Oslo_Holmenkollen 39
## 2944 34:23.3 +1:26.8 32:49.3 2015-2016 Oslo_Holmenkollen 39
## 2945 34:23.8 +1:27.3 33:14.8 2015-2016 Oslo_Holmenkollen 39
## 2946 34:30.1 +1:33.6 33:46.1 2015-2016 Oslo_Holmenkollen 39
## 2947 34:34.5 +1:38.0 32:46.5 2015-2016 Oslo_Holmenkollen 39
## 2948 34:43.2 +1:46.7 33:46.2 2015-2016 Oslo_Holmenkollen 39
## 2949 34:52.6 +1:56.1 33:28.6 2015-2016 Oslo_Holmenkollen 39
## 2950 34:56.0 +1:59.5 33:31.0 2015-2016 Oslo_Holmenkollen 39
## 2951 34:56.4 +1:59.9 33:48.4 2015-2016 Oslo_Holmenkollen 39
## 2952 34:56.7 +2:00.2 34:04.7 2015-2016 Oslo_Holmenkollen 39
## 2953 35:02.8 +2:06.3 33:27.8 2015-2016 Oslo_Holmenkollen 39
## 2954 35:04.2 +2:07.7 33:19.2 2015-2016 Oslo_Holmenkollen 39
## 2955 35:05.9 +2:09.4 33:45.9 2015-2016 Oslo_Holmenkollen 39
## 2956 35:08.7 +2:12.2 34:28.7 2015-2016 Oslo_Holmenkollen 39
## 2957 35:09.5 +2:13.0 33:28.5 2015-2016 Oslo_Holmenkollen 39
## 2958 35:21.2 +2:24.7 33:52.2 2015-2016 Oslo_Holmenkollen 39
## 2959 35:27.7 +2:31.2 33:17.7 2015-2016 Oslo_Holmenkollen 39
## 2960 35:29.2 +2:32.7 34:07.2 2015-2016 Oslo_Holmenkollen 39
## 2961 35:29.4 +2:32.9 33:45.4 2015-2016 Oslo_Holmenkollen 39
## 2962 35:32.4 +2:35.9 33:57.4 2015-2016 Oslo_Holmenkollen 39
## 2963 35:32.7 +2:36.2 33:47.7 2015-2016 Oslo_Holmenkollen 39
## 2964 35:53.7 +2:57.2 34:18.7 2015-2016 Oslo_Holmenkollen 39
## 2965 35:55.7 +2:59.2 33:40.7 2015-2016 Oslo_Holmenkollen 39
## 2966 35:57.5 +3:01.0 34:20.5 2015-2016 Oslo_Holmenkollen 39
## 2967 36:13.0 +3:16.5 34:32.0 2015-2016 Oslo_Holmenkollen 39
## 2968 36:17.3 +3:20.8 34:08.3 2015-2016 Oslo_Holmenkollen 39
## 2969 36:20.2 +3:23.7 33:52.2 2015-2016 Oslo_Holmenkollen 39
## 2970 36:25.9 +3:29.4 34:19.9 2015-2016 Oslo_Holmenkollen 39
## 2971 36:32.7 +3:36.2 34:38.7 2015-2016 Oslo_Holmenkollen 39
## 2972 36:35.9 +3:39.4 34:14.9 2015-2016 Oslo_Holmenkollen 39
## 2973 36:48.6 +3:52.1 34:51.6 2015-2016 Oslo_Holmenkollen 39
## 2974 36:58.0 +4:01.5 35:21.0 2015-2016 Oslo_Holmenkollen 39
## 2975 37:09.3 +4:12.8 35:49.3 2015-2016 Oslo_Holmenkollen 39
## 2976 37:18.2 +4:21.7 35:10.2 2015-2016 Oslo_Holmenkollen 39
## 2977 37:26.6 +4:30.1 35:22.6 2015-2016 Oslo_Holmenkollen 39
## 2978 37:29.6 +4:33.1 36:00.6 2015-2016 Oslo_Holmenkollen 39
## 2979 37:38.2 +4:41.7 35:26.2 2015-2016 Oslo_Holmenkollen 39
## 2980 38:07.3 +5:10.8 36:50.3 2015-2016 Oslo_Holmenkollen 39
## 2981 38:23.3 +5:26.8 36:01.3 2015-2016 Oslo_Holmenkollen 39
## 2982 38:24.3 +5:27.8 36:36.3 2015-2016 Oslo_Holmenkollen 39
## 2983 38:45.3 +5:48.8 36:40.3 2015-2016 Oslo_Holmenkollen 39
## 2984 39:05.0 +6:08.5 36:58.0 2015-2016 Oslo_Holmenkollen 39
## 2985 39:05.3 +6:08.8 37:19.3 2015-2016 Oslo_Holmenkollen 39
## 2986 2015-2016 Oslo_Holmenkollen 39
## 2987 2015-2016 Oslo_Holmenkollen 39
## 2988 2015-2016 Oslo_Holmenkollen 39
## 2989 25:35.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2990 26:02.3 +26.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2991 26:03.0 +27.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2992 26:10.9 +35.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2993 26:14.9 +39.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2994 26:15.8 +40.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2995 26:17.5 +42.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2996 26:19.2 +43.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2997 26:21.4 +46.0 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2998 26:27.6 +52.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 2999 26:32.8 +57.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3000 26:35.1 +59.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3001 26:43.6 +1:08.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3002 26:44.5 +1:09.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3003 26:44.9 +1:09.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3004 26:47.9 +1:12.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3005 26:51.3 +1:15.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3006 26:52.2 +1:16.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3007 26:53.9 +1:18.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3008 26:55.0 +1:19.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3009 26:55.7 +1:20.3 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3010 26:57.0 +1:21.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3011 26:58.9 +1:23.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3012 27:00.8 +1:25.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3013 27:04.2 +1:28.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3014 27:04.8 +1:29.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3015 27:09.2 +1:33.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3016 27:09.9 +1:34.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3017 27:10.2 +1:34.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3018 27:10.7 +1:35.3 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3019 27:12.2 +1:36.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3020 27:12.6 +1:37.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3021 27:16.3 +1:40.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3022 27:16.5 +1:41.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3023 27:19.5 +1:44.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3024 27:20.3 +1:44.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3025 27:20.5 +1:45.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3026 27:21.7 +1:46.3 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3027 27:22.2 +1:46.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3028 27:23.3 +1:47.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3029 27:23.6 +1:48.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3030 27:29.8 +1:54.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3031 27:31.9 +1:56.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3032 27:32.4 +1:57.0 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3033 27:33.1 +1:57.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3034 27:34.1 +1:58.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3035 27:39.0 +2:03.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3036 27:40.1 +2:04.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3037 27:41.0 +2:05.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3038 27:42.1 +2:06.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3039 27:43.8 +2:08.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3040 27:43.8 +2:08.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3041 27:44.1 +2:08.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3042 27:44.9 +2:09.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3043 27:47.2 +2:11.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3044 27:50.1 +2:14.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3045 27:56.5 +2:21.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3046 27:57.4 +2:22.0 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3047 27:58.2 +2:22.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3048 28:02.9 +2:27.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3049 28:03.6 +2:28.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3050 28:05.8 +2:30.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3051 28:10.1 +2:34.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3052 28:13.9 +2:38.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3053 28:14.8 +2:39.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3054 28:18.0 +2:42.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3055 28:20.7 +2:45.3 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3056 28:23.4 +2:48.0 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3057 28:25.5 +2:50.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3058 28:27.9 +2:52.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3059 28:29.4 +2:54.0 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3060 28:31.1 +2:55.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3061 28:39.3 +3:03.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3062 28:41.0 +3:05.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3063 28:46.5 +3:11.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3064 28:50.3 +3:14.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3065 28:52.9 +3:17.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3066 28:59.1 +3:23.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3067 29:08.2 +3:32.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3068 29:12.4 +3:37.0 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3069 29:20.7 +3:45.3 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3070 29:22.9 +3:47.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3071 29:23.6 +3:48.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3072 29:25.1 +3:49.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3073 29:34.0 +3:58.6 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3074 29:53.2 +4:17.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3075 29:56.9 +4:21.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3076 30:03.1 +4:27.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3077 30:08.3 +4:32.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3078 30:08.9 +4:33.5 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3079 30:13.8 +4:38.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3080 30:22.1 +4:46.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3081 30:30.1 +4:54.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3082 30:40.7 +5:05.3 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3083 30:48.3 +5:12.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3084 31:34.6 +5:59.2 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3085 31:39.3 +6:03.9 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3086 31:45.8 +6:10.4 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3087 31:54.2 +6:18.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3088 32:01.1 +6:25.7 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3089 32:01.2 +6:25.8 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3090 32:41.5 +7:06.1 <NA> 2015-2016 Oslo_Holmenkollen 40
## 3091 35:33.7 <NA> 2015-2016 Pokljuka 41
## 3092 35:34.0 +0.3 <NA> 2015-2016 Pokljuka 41
## 3093 35:36.2 +2.5 <NA> 2015-2016 Pokljuka 41
## 3094 35:36.2 +2.5 <NA> 2015-2016 Pokljuka 41
## 3095 35:40.9 +7.2 <NA> 2015-2016 Pokljuka 41
## 3096 35:45.1 +11.4 <NA> 2015-2016 Pokljuka 41
## 3097 35:51.5 +17.8 <NA> 2015-2016 Pokljuka 41
## 3098 35:55.1 +21.4 <NA> 2015-2016 Pokljuka 41
## 3099 35:58.5 +24.8 <NA> 2015-2016 Pokljuka 41
## 3100 35:58.5 +24.8 <NA> 2015-2016 Pokljuka 41
## 3101 35:58.7 +25.0 <NA> 2015-2016 Pokljuka 41
## 3102 36:00.8 +27.1 <NA> 2015-2016 Pokljuka 41
## 3103 36:11.1 +37.4 <NA> 2015-2016 Pokljuka 41
## 3104 36:15.6 +41.9 <NA> 2015-2016 Pokljuka 41
## 3105 36:16.1 +42.4 <NA> 2015-2016 Pokljuka 41
## 3106 36:22.1 +48.4 <NA> 2015-2016 Pokljuka 41
## 3107 36:24.2 +50.5 <NA> 2015-2016 Pokljuka 41
## 3108 36:25.6 +51.9 <NA> 2015-2016 Pokljuka 41
## 3109 36:27.4 +53.7 <NA> 2015-2016 Pokljuka 41
## 3110 36:42.1 +1:08.4 <NA> 2015-2016 Pokljuka 41
## 3111 37:01.4 +1:27.7 <NA> 2015-2016 Pokljuka 41
## 3112 37:02.7 +1:29.0 <NA> 2015-2016 Pokljuka 41
## 3113 37:03.2 +1:29.5 <NA> 2015-2016 Pokljuka 41
## 3114 37:06.1 +1:32.4 <NA> 2015-2016 Pokljuka 41
## 3115 37:13.6 +1:39.9 <NA> 2015-2016 Pokljuka 41
## 3116 37:18.4 +1:44.7 <NA> 2015-2016 Pokljuka 41
## 3117 37:36.6 +2:02.9 <NA> 2015-2016 Pokljuka 41
## 3118 38:14.2 +2:40.5 <NA> 2015-2016 Pokljuka 41
## 3119 38:53.8 +3:20.1 <NA> 2015-2016 Pokljuka 41
## 3120 39:14.1 +3:40.4 <NA> 2015-2016 Pokljuka 41
## 3121 30:46.5 30:46.5 2015-2016 Pokljuka 42
## 3122 31:03.1 +16.6 30:37.1 2015-2016 Pokljuka 42
## 3123 31:09.9 +23.4 30:41.9 2015-2016 Pokljuka 42
## 3124 31:11.7 +25.2 30:34.7 2015-2016 Pokljuka 42
## 3125 31:35.7 +49.2 31:03.7 2015-2016 Pokljuka 42
## 3126 31:42.0 +55.5 31:17.0 2015-2016 Pokljuka 42
## 3127 31:42.1 +55.6 31:01.1 2015-2016 Pokljuka 42
## 3128 31:56.7 +1:10.2 31:41.7 2015-2016 Pokljuka 42
## 3129 32:08.4 +1:21.9 31:13.4 2015-2016 Pokljuka 42
## 3130 32:18.0 +1:31.5 30:51.0 2015-2016 Pokljuka 42
## 3131 32:21.1 +1:34.6 31:04.1 2015-2016 Pokljuka 42
## 3132 32:21.8 +1:35.3 31:13.8 2015-2016 Pokljuka 42
## 3133 32:30.8 +1:44.3 31:57.8 2015-2016 Pokljuka 42
## 3134 32:32.1 +1:45.6 31:10.1 2015-2016 Pokljuka 42
## 3135 32:34.6 +1:48.1 31:10.6 2015-2016 Pokljuka 42
## 3136 32:35.0 +1:48.5 31:55.0 2015-2016 Pokljuka 42
## 3137 32:38.7 +1:52.2 31:54.7 2015-2016 Pokljuka 42
## 3138 32:52.4 +2:05.9 31:51.4 2015-2016 Pokljuka 42
## 3139 32:57.5 +2:11.0 31:16.5 2015-2016 Pokljuka 42
## 3140 33:02.8 +2:16.3 31:56.8 2015-2016 Pokljuka 42
## 3141 33:04.2 +2:17.7 31:41.2 2015-2016 Pokljuka 42
## 3142 33:09.7 +2:23.2 31:50.7 2015-2016 Pokljuka 42
## 3143 33:11.3 +2:24.8 31:59.3 2015-2016 Pokljuka 42
## 3144 33:20.1 +2:33.6 32:34.1 2015-2016 Pokljuka 42
## 3145 33:20.3 +2:33.8 32:55.3 2015-2016 Pokljuka 42
## 3146 33:20.3 +2:33.8 32:14.3 2015-2016 Pokljuka 42
## 3147 33:25.7 +2:39.2 31:46.7 2015-2016 Pokljuka 42
## 3148 33:29.6 +2:43.1 32:12.6 2015-2016 Pokljuka 42
## 3149 33:32.5 +2:46.0 32:33.5 2015-2016 Pokljuka 42
## 3150 33:39.8 +2:53.3 31:52.8 2015-2016 Pokljuka 42
## 3151 33:44.0 +2:57.5 32:13.0 2015-2016 Pokljuka 42
## 3152 33:49.5 +3:03.0 32:44.5 2015-2016 Pokljuka 42
## 3153 33:49.9 +3:03.4 32:17.9 2015-2016 Pokljuka 42
## 3154 33:59.7 +3:13.2 32:43.7 2015-2016 Pokljuka 42
## 3155 34:06.2 +3:19.7 32:50.2 2015-2016 Pokljuka 42
## 3156 34:06.6 +3:20.1 32:07.6 2015-2016 Pokljuka 42
## 3157 34:15.8 +3:29.3 32:07.8 2015-2016 Pokljuka 42
## 3158 34:23.3 +3:36.8 33:17.3 2015-2016 Pokljuka 42
## 3159 34:23.7 +3:37.2 32:32.7 2015-2016 Pokljuka 42
## 3160 34:34.5 +3:48.0 32:29.5 2015-2016 Pokljuka 42
## 3161 34:45.0 +3:58.5 32:56.0 2015-2016 Pokljuka 42
## 3162 34:57.5 +4:11.0 32:56.5 2015-2016 Pokljuka 42
## 3163 35:00.6 +4:14.1 33:28.6 2015-2016 Pokljuka 42
## 3164 35:00.9 +4:14.4 33:24.9 2015-2016 Pokljuka 42
## 3165 35:09.3 +4:22.8 33:39.3 2015-2016 Pokljuka 42
## 3166 35:17.8 +4:31.3 34:07.8 2015-2016 Pokljuka 42
## 3167 35:18.8 +4:32.3 33:35.8 2015-2016 Pokljuka 42
## 3168 35:29.3 +4:42.8 33:25.3 2015-2016 Pokljuka 42
## 3169 35:35.9 +4:49.4 33:33.9 2015-2016 Pokljuka 42
## 3170 35:38.5 +4:52.0 33:56.5 2015-2016 Pokljuka 42
## 3171 35:41.7 +4:55.2 33:28.7 2015-2016 Pokljuka 42
## 3172 36:05.0 +5:18.5 34:32.0 2015-2016 Pokljuka 42
## 3173 36:07.2 +5:20.7 33:59.2 2015-2016 Pokljuka 42
## 3174 36:25.8 +5:39.3 34:22.8 2015-2016 Pokljuka 42
## 3175 36:51.6 +6:05.1 34:48.6 2015-2016 Pokljuka 42
## 3176 36:56.4 +6:09.9 35:36.4 2015-2016 Pokljuka 42
## 3177 37:42.0 +6:55.5 36:13.0 2015-2016 Pokljuka 42
## 3178 38:19.8 +7:33.3 36:08.8 2015-2016 Pokljuka 42
## 3179 39:00.2 +8:13.7 37:09.2 2015-2016 Pokljuka 42
## 3180 2015-2016 Pokljuka 42
## 3181 23:02.5 <NA> 2015-2016 Pokljuka 43
## 3182 23:17.7 +15.2 <NA> 2015-2016 Pokljuka 43
## 3183 23:27.6 +25.1 <NA> 2015-2016 Pokljuka 43
## 3184 23:27.8 +25.3 <NA> 2015-2016 Pokljuka 43
## 3185 23:28.1 +25.6 <NA> 2015-2016 Pokljuka 43
## 3186 23:30.9 +28.4 <NA> 2015-2016 Pokljuka 43
## 3187 23:34.4 +31.9 <NA> 2015-2016 Pokljuka 43
## 3188 23:35.8 +33.3 <NA> 2015-2016 Pokljuka 43
## 3189 23:39.4 +36.9 <NA> 2015-2016 Pokljuka 43
## 3190 23:42.3 +39.8 <NA> 2015-2016 Pokljuka 43
## 3191 23:43.6 +41.1 <NA> 2015-2016 Pokljuka 43
## 3192 23:46.8 +44.3 <NA> 2015-2016 Pokljuka 43
## 3193 23:48.3 +45.8 <NA> 2015-2016 Pokljuka 43
## 3194 23:57.1 +54.6 <NA> 2015-2016 Pokljuka 43
## 3195 24:01.6 +59.1 <NA> 2015-2016 Pokljuka 43
## 3196 24:03.2 +1:00.7 <NA> 2015-2016 Pokljuka 43
## 3197 24:07.8 +1:05.3 <NA> 2015-2016 Pokljuka 43
## 3198 24:08.0 +1:05.5 <NA> 2015-2016 Pokljuka 43
## 3199 24:08.2 +1:05.7 <NA> 2015-2016 Pokljuka 43
## 3200 24:08.9 +1:06.4 <NA> 2015-2016 Pokljuka 43
## 3201 24:10.7 +1:08.2 <NA> 2015-2016 Pokljuka 43
## 3202 24:12.2 +1:09.7 <NA> 2015-2016 Pokljuka 43
## 3203 24:14.0 +1:11.5 <NA> 2015-2016 Pokljuka 43
## 3204 24:18.4 +1:15.9 <NA> 2015-2016 Pokljuka 43
## 3205 24:18.7 +1:16.2 <NA> 2015-2016 Pokljuka 43
## 3206 24:19.1 +1:16.6 <NA> 2015-2016 Pokljuka 43
## 3207 24:19.7 +1:17.2 <NA> 2015-2016 Pokljuka 43
## 3208 24:21.9 +1:19.4 <NA> 2015-2016 Pokljuka 43
## 3209 24:22.0 +1:19.5 <NA> 2015-2016 Pokljuka 43
## 3210 24:24.5 +1:22.0 <NA> 2015-2016 Pokljuka 43
## 3211 24:25.7 +1:23.2 <NA> 2015-2016 Pokljuka 43
## 3212 24:26.8 +1:24.3 <NA> 2015-2016 Pokljuka 43
## 3213 24:29.2 +1:26.7 <NA> 2015-2016 Pokljuka 43
## 3214 24:31.3 +1:28.8 <NA> 2015-2016 Pokljuka 43
## 3215 24:32.5 +1:30.0 <NA> 2015-2016 Pokljuka 43
## 3216 24:33.4 +1:30.9 <NA> 2015-2016 Pokljuka 43
## 3217 24:33.8 +1:31.3 <NA> 2015-2016 Pokljuka 43
## 3218 24:34.2 +1:31.7 <NA> 2015-2016 Pokljuka 43
## 3219 24:34.9 +1:32.4 <NA> 2015-2016 Pokljuka 43
## 3220 24:35.3 +1:32.8 <NA> 2015-2016 Pokljuka 43
## 3221 24:38.4 +1:35.9 <NA> 2015-2016 Pokljuka 43
## 3222 24:41.1 +1:38.6 <NA> 2015-2016 Pokljuka 43
## 3223 24:43.8 +1:41.3 <NA> 2015-2016 Pokljuka 43
## 3224 24:44.6 +1:42.1 <NA> 2015-2016 Pokljuka 43
## 3225 24:45.1 +1:42.6 <NA> 2015-2016 Pokljuka 43
## 3226 24:49.8 +1:47.3 <NA> 2015-2016 Pokljuka 43
## 3227 24:51.6 +1:49.1 <NA> 2015-2016 Pokljuka 43
## 3228 24:53.0 +1:50.5 <NA> 2015-2016 Pokljuka 43
## 3229 24:53.1 +1:50.6 <NA> 2015-2016 Pokljuka 43
## 3230 25:01.8 +1:59.3 <NA> 2015-2016 Pokljuka 43
## 3231 25:03.2 +2:00.7 <NA> 2015-2016 Pokljuka 43
## 3232 25:04.5 +2:02.0 <NA> 2015-2016 Pokljuka 43
## 3233 25:05.2 +2:02.7 <NA> 2015-2016 Pokljuka 43
## 3234 25:05.4 +2:02.9 <NA> 2015-2016 Pokljuka 43
## 3235 25:06.1 +2:03.6 <NA> 2015-2016 Pokljuka 43
## 3236 25:07.2 +2:04.7 <NA> 2015-2016 Pokljuka 43
## 3237 25:10.0 +2:07.5 <NA> 2015-2016 Pokljuka 43
## 3238 25:10.7 +2:08.2 <NA> 2015-2016 Pokljuka 43
## 3239 25:13.2 +2:10.7 <NA> 2015-2016 Pokljuka 43
## 3240 25:15.8 +2:13.3 <NA> 2015-2016 Pokljuka 43
## 3241 25:19.7 +2:17.2 <NA> 2015-2016 Pokljuka 43
## 3242 25:20.0 +2:17.5 <NA> 2015-2016 Pokljuka 43
## 3243 25:22.6 +2:20.1 <NA> 2015-2016 Pokljuka 43
## 3244 25:25.4 +2:22.9 <NA> 2015-2016 Pokljuka 43
## 3245 25:26.0 +2:23.5 <NA> 2015-2016 Pokljuka 43
## 3246 25:27.2 +2:24.7 <NA> 2015-2016 Pokljuka 43
## 3247 25:28.4 +2:25.9 <NA> 2015-2016 Pokljuka 43
## 3248 25:31.1 +2:28.6 <NA> 2015-2016 Pokljuka 43
## 3249 25:32.4 +2:29.9 <NA> 2015-2016 Pokljuka 43
## 3250 25:33.6 +2:31.1 <NA> 2015-2016 Pokljuka 43
## 3251 25:33.8 +2:31.3 <NA> 2015-2016 Pokljuka 43
## 3252 25:36.6 +2:34.1 <NA> 2015-2016 Pokljuka 43
## 3253 25:37.1 +2:34.6 <NA> 2015-2016 Pokljuka 43
## 3254 25:42.7 +2:40.2 <NA> 2015-2016 Pokljuka 43
## 3255 25:42.9 +2:40.4 <NA> 2015-2016 Pokljuka 43
## 3256 25:47.6 +2:45.1 <NA> 2015-2016 Pokljuka 43
## 3257 25:51.6 +2:49.1 <NA> 2015-2016 Pokljuka 43
## 3258 25:51.7 +2:49.2 <NA> 2015-2016 Pokljuka 43
## 3259 25:54.0 +2:51.5 <NA> 2015-2016 Pokljuka 43
## 3260 25:58.3 +2:55.8 <NA> 2015-2016 Pokljuka 43
## 3261 26:02.9 +3:00.4 <NA> 2015-2016 Pokljuka 43
## 3262 26:10.9 +3:08.4 <NA> 2015-2016 Pokljuka 43
## 3263 26:11.6 +3:09.1 <NA> 2015-2016 Pokljuka 43
## 3264 26:13.0 +3:10.5 <NA> 2015-2016 Pokljuka 43
## 3265 26:16.0 +3:13.5 <NA> 2015-2016 Pokljuka 43
## 3266 26:17.1 +3:14.6 <NA> 2015-2016 Pokljuka 43
## 3267 26:20.1 +3:17.6 <NA> 2015-2016 Pokljuka 43
## 3268 26:25.4 +3:22.9 <NA> 2015-2016 Pokljuka 43
## 3269 26:27.5 +3:25.0 <NA> 2015-2016 Pokljuka 43
## 3270 26:31.4 +3:28.9 <NA> 2015-2016 Pokljuka 43
## 3271 26:38.0 +3:35.5 <NA> 2015-2016 Pokljuka 43
## 3272 26:38.6 +3:36.1 <NA> 2015-2016 Pokljuka 43
## 3273 26:40.6 +3:38.1 <NA> 2015-2016 Pokljuka 43
## 3274 26:43.1 +3:40.6 <NA> 2015-2016 Pokljuka 43
## 3275 26:44.5 +3:42.0 <NA> 2015-2016 Pokljuka 43
## 3276 26:48.6 +3:46.1 <NA> 2015-2016 Pokljuka 43
## 3277 27:15.7 +4:13.2 <NA> 2015-2016 Pokljuka 43
## 3278 27:21.9 +4:19.4 <NA> 2015-2016 Pokljuka 43
## 3279 27:23.8 +4:21.3 <NA> 2015-2016 Pokljuka 43
## 3280 27:34.8 +4:32.3 <NA> 2015-2016 Pokljuka 43
## 3281 27:38.8 +4:36.3 <NA> 2015-2016 Pokljuka 43
## 3282 28:49.5 +5:47.0 <NA> 2015-2016 Pokljuka 43
## 3283 <NA> 2015-2016 Pokljuka 43
## 3284 <NA> 2015-2016 Pokljuka 43
## 3285 <NA> 2015-2016 Pokljuka 43
## 3286 <NA> 2015-2016 Pokljuka 43
## 3287 31:04.4 30:35.4 2015-2016 Presque_Isle 44
## 3288 31:29.2 +24.8 31:29.2 2015-2016 Presque_Isle 44
## 3289 32:15.9 +1:11.5 31:47.9 2015-2016 Presque_Isle 44
## 3290 32:44.1 +1:39.7 31:35.1 2015-2016 Presque_Isle 44
## 3291 33:02.0 +1:57.6 31:55.0 2015-2016 Presque_Isle 44
## 3292 33:07.1 +2:02.7 31:47.1 2015-2016 Presque_Isle 44
## 3293 33:09.3 +2:04.9 31:36.3 2015-2016 Presque_Isle 44
## 3294 33:13.1 +2:08.7 31:38.1 2015-2016 Presque_Isle 44
## 3295 33:18.4 +2:14.0 31:53.4 2015-2016 Presque_Isle 44
## 3296 33:32.5 +2:28.1 31:41.5 2015-2016 Presque_Isle 44
## 3297 33:41.4 +2:37.0 32:10.4 2015-2016 Presque_Isle 44
## 3298 33:46.8 +2:42.4 32:34.8 2015-2016 Presque_Isle 44
## 3299 33:47.2 +2:42.8 33:01.2 2015-2016 Presque_Isle 44
## 3300 33:47.6 +2:43.2 32:25.6 2015-2016 Presque_Isle 44
## 3301 33:49.2 +2:44.8 32:09.2 2015-2016 Presque_Isle 44
## 3302 34:02.3 +2:57.9 32:04.3 2015-2016 Presque_Isle 44
## 3303 34:03.8 +2:59.4 33:10.8 2015-2016 Presque_Isle 44
## 3304 34:04.7 +3:00.3 32:33.7 2015-2016 Presque_Isle 44
## 3305 34:06.0 +3:01.6 33:07.0 2015-2016 Presque_Isle 44
## 3306 34:09.7 +3:05.3 32:53.7 2015-2016 Presque_Isle 44
## 3307 34:26.1 +3:21.7 33:32.1 2015-2016 Presque_Isle 44
## 3308 34:31.8 +3:27.4 32:40.8 2015-2016 Presque_Isle 44
## 3309 34:47.1 +3:42.7 32:37.1 2015-2016 Presque_Isle 44
## 3310 34:49.3 +3:44.9 33:07.3 2015-2016 Presque_Isle 44
## 3311 34:52.6 +3:48.2 32:48.6 2015-2016 Presque_Isle 44
## 3312 34:57.2 +3:52.8 32:56.2 2015-2016 Presque_Isle 44
## 3313 34:58.5 +3:54.1 34:08.5 2015-2016 Presque_Isle 44
## 3314 34:58.6 +3:54.2 33:05.6 2015-2016 Presque_Isle 44
## 3315 34:59.8 +3:55.4 32:53.8 2015-2016 Presque_Isle 44
## 3316 35:06.4 +4:02.0 33:00.4 2015-2016 Presque_Isle 44
## 3317 35:08.3 +4:03.9 33:43.3 2015-2016 Presque_Isle 44
## 3318 35:37.1 +4:32.7 33:20.1 2015-2016 Presque_Isle 44
## 3319 35:39.6 +4:35.2 33:03.6 2015-2016 Presque_Isle 44
## 3320 35:47.4 +4:43.0 33:59.4 2015-2016 Presque_Isle 44
## 3321 35:56.5 +4:52.1 33:48.5 2015-2016 Presque_Isle 44
## 3322 35:58.5 +4:54.1 34:10.5 2015-2016 Presque_Isle 44
## 3323 36:00.9 +4:56.5 33:14.9 2015-2016 Presque_Isle 44
## 3324 36:07.1 +5:02.7 34:31.1 2015-2016 Presque_Isle 44
## 3325 36:29.4 +5:25.0 33:47.4 2015-2016 Presque_Isle 44
## 3326 36:36.8 +5:32.4 33:47.8 2015-2016 Presque_Isle 44
## 3327 36:37.8 +5:33.4 34:26.8 2015-2016 Presque_Isle 44
## 3328 36:38.2 +5:33.8 34:25.2 2015-2016 Presque_Isle 44
## 3329 36:46.5 +5:42.1 33:54.5 2015-2016 Presque_Isle 44
## 3330 36:57.6 +5:53.2 34:55.6 2015-2016 Presque_Isle 44
## 3331 36:59.4 +5:55.0 35:03.4 2015-2016 Presque_Isle 44
## 3332 37:13.4 +6:09.0 34:23.4 2015-2016 Presque_Isle 44
## 3333 37:21.8 +6:17.4 34:45.8 2015-2016 Presque_Isle 44
## 3334 37:28.1 +6:23.7 34:59.1 2015-2016 Presque_Isle 44
## 3335 37:30.5 +6:26.1 34:52.5 2015-2016 Presque_Isle 44
## 3336 37:33.8 +6:29.4 34:44.8 2015-2016 Presque_Isle 44
## 3337 37:34.6 +6:30.2 34:46.6 2015-2016 Presque_Isle 44
## 3338 38:17.5 +7:13.1 35:28.5 2015-2016 Presque_Isle 44
## 3339 38:39.7 +7:35.3 36:29.7 2015-2016 Presque_Isle 44
## 3340 2015-2016 Presque_Isle 44
## 3341 2015-2016 Presque_Isle 44
## 3342 2015-2016 Presque_Isle 44
## 3343 2015-2016 Presque_Isle 44
## 3344 2015-2016 Presque_Isle 44
## 3345 2015-2016 Presque_Isle 44
## 3346 2015-2016 Presque_Isle 44
## 3347 24:38.8 <NA> 2015-2016 Presque_Isle 45
## 3348 25:06.7 +27.9 <NA> 2015-2016 Presque_Isle 45
## 3349 25:07.7 +28.9 <NA> 2015-2016 Presque_Isle 45
## 3350 25:24.7 +45.9 <NA> 2015-2016 Presque_Isle 45
## 3351 25:29.1 +50.3 <NA> 2015-2016 Presque_Isle 45
## 3352 25:31.3 +52.5 <NA> 2015-2016 Presque_Isle 45
## 3353 25:32.8 +54.0 <NA> 2015-2016 Presque_Isle 45
## 3354 25:37.7 +58.9 <NA> 2015-2016 Presque_Isle 45
## 3355 25:45.2 +1:06.4 <NA> 2015-2016 Presque_Isle 45
## 3356 25:45.9 +1:07.1 <NA> 2015-2016 Presque_Isle 45
## 3357 25:48.2 +1:09.4 <NA> 2015-2016 Presque_Isle 45
## 3358 25:51.2 +1:12.4 <NA> 2015-2016 Presque_Isle 45
## 3359 25:55.0 +1:16.2 <NA> 2015-2016 Presque_Isle 45
## 3360 25:58.7 +1:19.9 <NA> 2015-2016 Presque_Isle 45
## 3361 26:01.2 +1:22.4 <NA> 2015-2016 Presque_Isle 45
## 3362 26:03.6 +1:24.8 <NA> 2015-2016 Presque_Isle 45
## 3363 26:03.8 +1:25.0 <NA> 2015-2016 Presque_Isle 45
## 3364 26:09.5 +1:30.7 <NA> 2015-2016 Presque_Isle 45
## 3365 26:10.1 +1:31.3 <NA> 2015-2016 Presque_Isle 45
## 3366 26:11.5 +1:32.7 <NA> 2015-2016 Presque_Isle 45
## 3367 26:14.2 +1:35.4 <NA> 2015-2016 Presque_Isle 45
## 3368 26:14.5 +1:35.7 <NA> 2015-2016 Presque_Isle 45
## 3369 26:19.0 +1:40.2 <NA> 2015-2016 Presque_Isle 45
## 3370 26:20.3 +1:41.5 <NA> 2015-2016 Presque_Isle 45
## 3371 26:26.9 +1:48.1 <NA> 2015-2016 Presque_Isle 45
## 3372 26:27.0 +1:48.2 <NA> 2015-2016 Presque_Isle 45
## 3373 26:29.3 +1:50.5 <NA> 2015-2016 Presque_Isle 45
## 3374 26:29.9 +1:51.1 <NA> 2015-2016 Presque_Isle 45
## 3375 26:32.2 +1:53.4 <NA> 2015-2016 Presque_Isle 45
## 3376 26:34.3 +1:55.5 <NA> 2015-2016 Presque_Isle 45
## 3377 26:36.6 +1:57.8 <NA> 2015-2016 Presque_Isle 45
## 3378 26:39.5 +2:00.7 <NA> 2015-2016 Presque_Isle 45
## 3379 26:40.2 +2:01.4 <NA> 2015-2016 Presque_Isle 45
## 3380 26:40.9 +2:02.1 <NA> 2015-2016 Presque_Isle 45
## 3381 26:42.7 +2:03.9 <NA> 2015-2016 Presque_Isle 45
## 3382 26:44.5 +2:05.7 <NA> 2015-2016 Presque_Isle 45
## 3383 26:45.1 +2:06.3 <NA> 2015-2016 Presque_Isle 45
## 3384 26:46.7 +2:07.9 <NA> 2015-2016 Presque_Isle 45
## 3385 26:48.7 +2:09.9 <NA> 2015-2016 Presque_Isle 45
## 3386 26:49.1 +2:10.3 <NA> 2015-2016 Presque_Isle 45
## 3387 26:50.1 +2:11.3 <NA> 2015-2016 Presque_Isle 45
## 3388 26:52.0 +2:13.2 <NA> 2015-2016 Presque_Isle 45
## 3389 26:54.9 +2:16.1 <NA> 2015-2016 Presque_Isle 45
## 3390 26:55.4 +2:16.6 <NA> 2015-2016 Presque_Isle 45
## 3391 26:59.2 +2:20.4 <NA> 2015-2016 Presque_Isle 45
## 3392 27:01.1 +2:22.3 <NA> 2015-2016 Presque_Isle 45
## 3393 27:07.7 +2:28.9 <NA> 2015-2016 Presque_Isle 45
## 3394 27:14.8 +2:36.0 <NA> 2015-2016 Presque_Isle 45
## 3395 27:15.1 +2:36.3 <NA> 2015-2016 Presque_Isle 45
## 3396 27:16.6 +2:37.8 <NA> 2015-2016 Presque_Isle 45
## 3397 27:19.1 +2:40.3 <NA> 2015-2016 Presque_Isle 45
## 3398 27:20.3 +2:41.5 <NA> 2015-2016 Presque_Isle 45
## 3399 27:21.1 +2:42.3 <NA> 2015-2016 Presque_Isle 45
## 3400 27:24.7 +2:45.9 <NA> 2015-2016 Presque_Isle 45
## 3401 27:26.8 +2:48.0 <NA> 2015-2016 Presque_Isle 45
## 3402 27:27.3 +2:48.5 <NA> 2015-2016 Presque_Isle 45
## 3403 27:27.3 +2:48.5 <NA> 2015-2016 Presque_Isle 45
## 3404 27:27.9 +2:49.1 <NA> 2015-2016 Presque_Isle 45
## 3405 27:28.6 +2:49.8 <NA> 2015-2016 Presque_Isle 45
## 3406 27:30.3 +2:51.5 <NA> 2015-2016 Presque_Isle 45
## 3407 27:33.3 +2:54.5 <NA> 2015-2016 Presque_Isle 45
## 3408 27:34.4 +2:55.6 <NA> 2015-2016 Presque_Isle 45
## 3409 27:35.8 +2:57.0 <NA> 2015-2016 Presque_Isle 45
## 3410 27:39.2 +3:00.4 <NA> 2015-2016 Presque_Isle 45
## 3411 27:41.4 +3:02.6 <NA> 2015-2016 Presque_Isle 45
## 3412 27:41.5 +3:02.7 <NA> 2015-2016 Presque_Isle 45
## 3413 27:47.6 +3:08.8 <NA> 2015-2016 Presque_Isle 45
## 3414 27:49.9 +3:11.1 <NA> 2015-2016 Presque_Isle 45
## 3415 27:56.9 +3:18.1 <NA> 2015-2016 Presque_Isle 45
## 3416 27:57.2 +3:18.4 <NA> 2015-2016 Presque_Isle 45
## 3417 27:59.9 +3:21.1 <NA> 2015-2016 Presque_Isle 45
## 3418 28:05.3 +3:26.5 <NA> 2015-2016 Presque_Isle 45
## 3419 28:07.2 +3:28.4 <NA> 2015-2016 Presque_Isle 45
## 3420 28:14.4 +3:35.6 <NA> 2015-2016 Presque_Isle 45
## 3421 28:16.2 +3:37.4 <NA> 2015-2016 Presque_Isle 45
## 3422 28:18.9 +3:40.1 <NA> 2015-2016 Presque_Isle 45
## 3423 28:22.8 +3:44.0 <NA> 2015-2016 Presque_Isle 45
## 3424 28:24.7 +3:45.9 <NA> 2015-2016 Presque_Isle 45
## 3425 28:29.4 +3:50.6 <NA> 2015-2016 Presque_Isle 45
## 3426 28:39.2 +4:00.4 <NA> 2015-2016 Presque_Isle 45
## 3427 28:48.4 +4:09.6 <NA> 2015-2016 Presque_Isle 45
## 3428 28:55.4 +4:16.6 <NA> 2015-2016 Presque_Isle 45
## 3429 29:02.7 +4:23.9 <NA> 2015-2016 Presque_Isle 45
## 3430 29:16.8 +4:38.0 <NA> 2015-2016 Presque_Isle 45
## 3431 29:17.6 +4:38.8 <NA> 2015-2016 Presque_Isle 45
## 3432 29:19.0 +4:40.2 <NA> 2015-2016 Presque_Isle 45
## 3433 29:32.9 +4:54.1 <NA> 2015-2016 Presque_Isle 45
## 3434 29:57.4 +5:18.6 <NA> 2015-2016 Presque_Isle 45
## 3435 <NA> 2015-2016 Presque_Isle 45
## 3436 <NA> 2015-2016 Presque_Isle 45
## 3437 <NA> 2015-2016 Presque_Isle 45
## 3438 <NA> 2015-2016 Presque_Isle 45
## 3439 50:53.9 <NA> 2015-2016 Ruhpolding 46
## 3440 51:11.4 +17.5 <NA> 2015-2016 Ruhpolding 46
## 3441 51:22.8 +28.9 <NA> 2015-2016 Ruhpolding 46
## 3442 51:30.9 +37.0 <NA> 2015-2016 Ruhpolding 46
## 3443 51:51.9 +58.0 <NA> 2015-2016 Ruhpolding 46
## 3444 52:00.9 +1:07.0 <NA> 2015-2016 Ruhpolding 46
## 3445 52:35.8 +1:41.9 <NA> 2015-2016 Ruhpolding 46
## 3446 52:47.9 +1:54.0 <NA> 2015-2016 Ruhpolding 46
## 3447 52:58.4 +2:04.5 <NA> 2015-2016 Ruhpolding 46
## 3448 53:12.9 +2:19.0 <NA> 2015-2016 Ruhpolding 46
## 3449 53:14.0 +2:20.1 <NA> 2015-2016 Ruhpolding 46
## 3450 53:19.8 +2:25.9 <NA> 2015-2016 Ruhpolding 46
## 3451 53:27.8 +2:33.9 <NA> 2015-2016 Ruhpolding 46
## 3452 53:40.9 +2:47.0 <NA> 2015-2016 Ruhpolding 46
## 3453 53:49.3 +2:55.4 <NA> 2015-2016 Ruhpolding 46
## 3454 53:50.5 +2:56.6 <NA> 2015-2016 Ruhpolding 46
## 3455 54:02.4 +3:08.5 <NA> 2015-2016 Ruhpolding 46
## 3456 54:04.2 +3:10.3 <NA> 2015-2016 Ruhpolding 46
## 3457 54:04.9 +3:11.0 <NA> 2015-2016 Ruhpolding 46
## 3458 54:10.1 +3:16.2 <NA> 2015-2016 Ruhpolding 46
## 3459 54:11.3 +3:17.4 <NA> 2015-2016 Ruhpolding 46
## 3460 54:12.3 +3:18.4 <NA> 2015-2016 Ruhpolding 46
## 3461 54:14.1 +3:20.2 <NA> 2015-2016 Ruhpolding 46
## 3462 54:15.0 +3:21.1 <NA> 2015-2016 Ruhpolding 46
## 3463 54:18.6 +3:24.7 <NA> 2015-2016 Ruhpolding 46
## 3464 54:23.7 +3:29.8 <NA> 2015-2016 Ruhpolding 46
## 3465 54:26.7 +3:32.8 <NA> 2015-2016 Ruhpolding 46
## 3466 54:29.8 +3:35.9 <NA> 2015-2016 Ruhpolding 46
## 3467 54:38.9 +3:45.0 <NA> 2015-2016 Ruhpolding 46
## 3468 54:39.1 +3:45.2 <NA> 2015-2016 Ruhpolding 46
## 3469 54:41.9 +3:48.0 <NA> 2015-2016 Ruhpolding 46
## 3470 54:49.0 +3:55.1 <NA> 2015-2016 Ruhpolding 46
## 3471 54:50.0 +3:56.1 <NA> 2015-2016 Ruhpolding 46
## 3472 54:50.3 +3:56.4 <NA> 2015-2016 Ruhpolding 46
## 3473 55:00.6 +4:06.7 <NA> 2015-2016 Ruhpolding 46
## 3474 55:00.9 +4:07.0 <NA> 2015-2016 Ruhpolding 46
## 3475 55:02.8 +4:08.9 <NA> 2015-2016 Ruhpolding 46
## 3476 55:05.4 +4:11.5 <NA> 2015-2016 Ruhpolding 46
## 3477 55:07.2 +4:13.3 <NA> 2015-2016 Ruhpolding 46
## 3478 55:07.3 +4:13.4 <NA> 2015-2016 Ruhpolding 46
## 3479 55:07.7 +4:13.8 <NA> 2015-2016 Ruhpolding 46
## 3480 55:07.9 +4:14.0 <NA> 2015-2016 Ruhpolding 46
## 3481 55:09.2 +4:15.3 <NA> 2015-2016 Ruhpolding 46
## 3482 55:24.3 +4:30.4 <NA> 2015-2016 Ruhpolding 46
## 3483 55:24.9 +4:31.0 <NA> 2015-2016 Ruhpolding 46
## 3484 55:25.9 +4:32.0 <NA> 2015-2016 Ruhpolding 46
## 3485 55:29.6 +4:35.7 <NA> 2015-2016 Ruhpolding 46
## 3486 55:31.4 +4:37.5 <NA> 2015-2016 Ruhpolding 46
## 3487 55:35.9 +4:42.0 <NA> 2015-2016 Ruhpolding 46
## 3488 55:36.6 +4:42.7 <NA> 2015-2016 Ruhpolding 46
## 3489 55:38.4 +4:44.5 <NA> 2015-2016 Ruhpolding 46
## 3490 55:40.2 +4:46.3 <NA> 2015-2016 Ruhpolding 46
## 3491 55:41.6 +4:47.7 <NA> 2015-2016 Ruhpolding 46
## 3492 55:43.8 +4:49.9 <NA> 2015-2016 Ruhpolding 46
## 3493 55:58.0 +5:04.1 <NA> 2015-2016 Ruhpolding 46
## 3494 55:59.6 +5:05.7 <NA> 2015-2016 Ruhpolding 46
## 3495 56:00.1 +5:06.2 <NA> 2015-2016 Ruhpolding 46
## 3496 56:06.0 +5:12.1 <NA> 2015-2016 Ruhpolding 46
## 3497 56:09.0 +5:15.1 <NA> 2015-2016 Ruhpolding 46
## 3498 56:09.7 +5:15.8 <NA> 2015-2016 Ruhpolding 46
## 3499 56:16.2 +5:22.3 <NA> 2015-2016 Ruhpolding 46
## 3500 56:45.4 +5:51.5 <NA> 2015-2016 Ruhpolding 46
## 3501 56:59.1 +6:05.2 <NA> 2015-2016 Ruhpolding 46
## 3502 57:02.7 +6:08.8 <NA> 2015-2016 Ruhpolding 46
## 3503 57:05.4 +6:11.5 <NA> 2015-2016 Ruhpolding 46
## 3504 57:13.8 +6:19.9 <NA> 2015-2016 Ruhpolding 46
## 3505 57:20.0 +6:26.1 <NA> 2015-2016 Ruhpolding 46
## 3506 57:20.8 +6:26.9 <NA> 2015-2016 Ruhpolding 46
## 3507 57:23.2 +6:29.3 <NA> 2015-2016 Ruhpolding 46
## 3508 57:28.3 +6:34.4 <NA> 2015-2016 Ruhpolding 46
## 3509 57:40.6 +6:46.7 <NA> 2015-2016 Ruhpolding 46
## 3510 57:44.1 +6:50.2 <NA> 2015-2016 Ruhpolding 46
## 3511 57:52.3 +6:58.4 <NA> 2015-2016 Ruhpolding 46
## 3512 57:56.0 +7:02.1 <NA> 2015-2016 Ruhpolding 46
## 3513 57:57.3 +7:03.4 <NA> 2015-2016 Ruhpolding 46
## 3514 58:03.7 +7:09.8 <NA> 2015-2016 Ruhpolding 46
## 3515 58:04.0 +7:10.1 <NA> 2015-2016 Ruhpolding 46
## 3516 58:15.4 +7:21.5 <NA> 2015-2016 Ruhpolding 46
## 3517 58:20.7 +7:26.8 <NA> 2015-2016 Ruhpolding 46
## 3518 58:30.6 +7:36.7 <NA> 2015-2016 Ruhpolding 46
## 3519 58:43.7 +7:49.8 <NA> 2015-2016 Ruhpolding 46
## 3520 58:49.0 +7:55.1 <NA> 2015-2016 Ruhpolding 46
## 3521 58:51.9 +7:58.0 <NA> 2015-2016 Ruhpolding 46
## 3522 58:54.9 +8:01.0 <NA> 2015-2016 Ruhpolding 46
## 3523 58:55.0 +8:01.1 <NA> 2015-2016 Ruhpolding 46
## 3524 59:10.6 +8:16.7 <NA> 2015-2016 Ruhpolding 46
## 3525 59:30.0 +8:36.1 <NA> 2015-2016 Ruhpolding 46
## 3526 59:37.2 +8:43.3 <NA> 2015-2016 Ruhpolding 46
## 3527 59:46.7 +8:52.8 <NA> 2015-2016 Ruhpolding 46
## 3528 59:50.8 +8:56.9 <NA> 2015-2016 Ruhpolding 46
## 3529 59:57.1 +9:03.2 <NA> 2015-2016 Ruhpolding 46
## 3530 1:00:06.8 +9:12.9 <NA> 2015-2016 Ruhpolding 46
## 3531 1:00:22.8 +9:28.9 <NA> 2015-2016 Ruhpolding 46
## 3532 1:00:31.3 +9:37.4 <NA> 2015-2016 Ruhpolding 46
## 3533 1:01:04.2 +10:10.3 <NA> 2015-2016 Ruhpolding 46
## 3534 1:01:29.5 +10:35.6 <NA> 2015-2016 Ruhpolding 46
## 3535 1:01:31.0 +10:37.1 <NA> 2015-2016 Ruhpolding 46
## 3536 1:01:43.2 +10:49.3 <NA> 2015-2016 Ruhpolding 46
## 3537 1:02:11.9 +11:18.0 <NA> 2015-2016 Ruhpolding 46
## 3538 1:02:20.9 +11:27.0 <NA> 2015-2016 Ruhpolding 46
## 3539 1:04:03.4 +13:09.5 <NA> 2015-2016 Ruhpolding 46
## 3540 1:04:08.5 +13:14.6 <NA> 2015-2016 Ruhpolding 46
## 3541 1:04:29.2 +13:35.3 <NA> 2015-2016 Ruhpolding 46
## 3542 <NA> 2015-2016 Ruhpolding 46
## 3543 <NA> 2015-2016 Ruhpolding 46
## 3544 <NA> 2015-2016 Ruhpolding 46
## 3545 40:29.3 <NA> 2015-2016 Ruhpolding 47
## 3546 40:39.1 +9.8 <NA> 2015-2016 Ruhpolding 47
## 3547 40:42.4 +13.1 <NA> 2015-2016 Ruhpolding 47
## 3548 41:11.8 +42.5 <NA> 2015-2016 Ruhpolding 47
## 3549 41:16.5 +47.2 <NA> 2015-2016 Ruhpolding 47
## 3550 41:17.3 +48.0 <NA> 2015-2016 Ruhpolding 47
## 3551 41:19.5 +50.2 <NA> 2015-2016 Ruhpolding 47
## 3552 41:21.5 +52.2 <NA> 2015-2016 Ruhpolding 47
## 3553 41:23.9 +54.6 <NA> 2015-2016 Ruhpolding 47
## 3554 41:27.9 +58.6 <NA> 2015-2016 Ruhpolding 47
## 3555 41:36.3 +1:07.0 <NA> 2015-2016 Ruhpolding 47
## 3556 41:43.1 +1:13.8 <NA> 2015-2016 Ruhpolding 47
## 3557 41:47.6 +1:18.3 <NA> 2015-2016 Ruhpolding 47
## 3558 41:48.0 +1:18.7 <NA> 2015-2016 Ruhpolding 47
## 3559 41:50.1 +1:20.8 <NA> 2015-2016 Ruhpolding 47
## 3560 41:55.0 +1:25.7 <NA> 2015-2016 Ruhpolding 47
## 3561 41:57.1 +1:27.8 <NA> 2015-2016 Ruhpolding 47
## 3562 42:16.3 +1:47.0 <NA> 2015-2016 Ruhpolding 47
## 3563 42:18.3 +1:49.0 <NA> 2015-2016 Ruhpolding 47
## 3564 42:23.7 +1:54.4 <NA> 2015-2016 Ruhpolding 47
## 3565 42:37.7 +2:08.4 <NA> 2015-2016 Ruhpolding 47
## 3566 42:51.8 +2:22.5 <NA> 2015-2016 Ruhpolding 47
## 3567 43:13.8 +2:44.5 <NA> 2015-2016 Ruhpolding 47
## 3568 43:14.3 +2:45.0 <NA> 2015-2016 Ruhpolding 47
## 3569 43:14.5 +2:45.2 <NA> 2015-2016 Ruhpolding 47
## 3570 43:15.0 +2:45.7 <NA> 2015-2016 Ruhpolding 47
## 3571 43:36.9 +3:07.6 <NA> 2015-2016 Ruhpolding 47
## 3572 44:05.2 +3:35.9 <NA> 2015-2016 Ruhpolding 47
## 3573 44:31.2 +4:01.9 <NA> 2015-2016 Ruhpolding 47
## 3574 46:11.9 +5:42.6 <NA> 2015-2016 Ruhpolding 47
## 3575 34:07.2 <NA> 2015-2016 Ruhpolding 48
## 3576 34:20.9 +13.7 <NA> 2015-2016 Ruhpolding 48
## 3577 34:36.9 +29.7 <NA> 2015-2016 Ruhpolding 48
## 3578 34:38.6 +31.4 <NA> 2015-2016 Ruhpolding 48
## 3579 34:40.5 +33.3 <NA> 2015-2016 Ruhpolding 48
## 3580 34:44.1 +36.9 <NA> 2015-2016 Ruhpolding 48
## 3581 34:45.6 +38.4 <NA> 2015-2016 Ruhpolding 48
## 3582 34:53.6 +46.4 <NA> 2015-2016 Ruhpolding 48
## 3583 34:55.9 +48.7 <NA> 2015-2016 Ruhpolding 48
## 3584 34:56.1 +48.9 <NA> 2015-2016 Ruhpolding 48
## 3585 34:57.3 +50.1 <NA> 2015-2016 Ruhpolding 48
## 3586 34:57.6 +50.4 <NA> 2015-2016 Ruhpolding 48
## 3587 35:19.5 +1:12.3 <NA> 2015-2016 Ruhpolding 48
## 3588 35:20.6 +1:13.4 <NA> 2015-2016 Ruhpolding 48
## 3589 35:21.8 +1:14.6 <NA> 2015-2016 Ruhpolding 48
## 3590 35:22.4 +1:15.2 <NA> 2015-2016 Ruhpolding 48
## 3591 35:23.1 +1:15.9 <NA> 2015-2016 Ruhpolding 48
## 3592 35:25.2 +1:18.0 <NA> 2015-2016 Ruhpolding 48
## 3593 35:30.0 +1:22.8 <NA> 2015-2016 Ruhpolding 48
## 3594 35:35.9 +1:28.7 <NA> 2015-2016 Ruhpolding 48
## 3595 35:39.3 +1:32.1 <NA> 2015-2016 Ruhpolding 48
## 3596 35:46.6 +1:39.4 <NA> 2015-2016 Ruhpolding 48
## 3597 36:04.3 +1:57.1 <NA> 2015-2016 Ruhpolding 48
## 3598 36:09.6 +2:02.4 <NA> 2015-2016 Ruhpolding 48
## 3599 36:30.6 +2:23.4 <NA> 2015-2016 Ruhpolding 48
## 3600 36:31.1 +2:23.9 <NA> 2015-2016 Ruhpolding 48
## 3601 36:50.4 +2:43.2 <NA> 2015-2016 Ruhpolding 48
## 3602 37:08.2 +3:01.0 <NA> 2015-2016 Ruhpolding 48
## 3603 37:09.4 +3:02.2 <NA> 2015-2016 Ruhpolding 48
## 3604 37:45.7 +3:38.5 <NA> 2015-2016 Ruhpolding 48
## 3605 33:19.1 32:51.1 2015-2016 Ruhpolding 49
## 3606 33:23.3 +4.2 33:12.3 2015-2016 Ruhpolding 49
## 3607 33:24.2 +5.1 32:39.2 2015-2016 Ruhpolding 49
## 3608 33:27.1 +8.0 33:24.1 2015-2016 Ruhpolding 49
## 3609 33:45.3 +26.2 33:37.3 2015-2016 Ruhpolding 49
## 3610 34:04.1 +45.0 33:04.1 2015-2016 Ruhpolding 49
## 3611 34:04.2 +45.1 34:04.2 2015-2016 Ruhpolding 49
## 3612 34:09.1 +50.0 33:10.1 2015-2016 Ruhpolding 49
## 3613 34:10.9 +51.8 32:31.9 2015-2016 Ruhpolding 49
## 3614 34:11.8 +52.7 33:18.8 2015-2016 Ruhpolding 49
## 3615 34:18.2 +59.1 33:38.2 2015-2016 Ruhpolding 49
## 3616 34:18.6 +59.5 33:18.6 2015-2016 Ruhpolding 49
## 3617 34:24.9 +1:05.8 32:59.9 2015-2016 Ruhpolding 49
## 3618 34:26.0 +1:06.9 34:02.0 2015-2016 Ruhpolding 49
## 3619 34:26.3 +1:07.2 33:41.3 2015-2016 Ruhpolding 49
## 3620 34:30.3 +1:11.2 33:20.3 2015-2016 Ruhpolding 49
## 3621 34:33.0 +1:13.9 33:07.0 2015-2016 Ruhpolding 49
## 3622 34:41.4 +1:22.3 33:40.4 2015-2016 Ruhpolding 49
## 3623 34:50.2 +1:31.1 33:22.2 2015-2016 Ruhpolding 49
## 3624 34:53.3 +1:34.2 33:30.3 2015-2016 Ruhpolding 49
## 3625 35:03.3 +1:44.2 34:07.3 2015-2016 Ruhpolding 49
## 3626 35:04.4 +1:45.3 33:34.4 2015-2016 Ruhpolding 49
## 3627 35:05.4 +1:46.3 34:02.4 2015-2016 Ruhpolding 49
## 3628 35:10.1 +1:51.0 33:46.1 2015-2016 Ruhpolding 49
## 3629 35:22.9 +2:03.8 34:16.9 2015-2016 Ruhpolding 49
## 3630 35:29.2 +2:10.1 34:28.2 2015-2016 Ruhpolding 49
## 3631 35:29.4 +2:10.3 34:28.4 2015-2016 Ruhpolding 49
## 3632 35:31.9 +2:12.8 34:36.9 2015-2016 Ruhpolding 49
## 3633 35:32.5 +2:13.4 34:09.5 2015-2016 Ruhpolding 49
## 3634 35:33.6 +2:14.5 34:03.6 2015-2016 Ruhpolding 49
## 3635 35:53.4 +2:34.3 34:01.4 2015-2016 Ruhpolding 49
## 3636 35:54.0 +2:34.9 34:08.0 2015-2016 Ruhpolding 49
## 3637 36:04.3 +2:45.2 34:52.3 2015-2016 Ruhpolding 49
## 3638 36:06.3 +2:47.2 34:27.3 2015-2016 Ruhpolding 49
## 3639 36:06.5 +2:47.4 34:44.5 2015-2016 Ruhpolding 49
## 3640 36:09.9 +2:50.8 34:34.9 2015-2016 Ruhpolding 49
## 3641 36:21.7 +3:02.6 34:32.7 2015-2016 Ruhpolding 49
## 3642 36:33.0 +3:13.9 34:48.0 2015-2016 Ruhpolding 49
## 3643 36:33.1 +3:14.0 34:59.1 2015-2016 Ruhpolding 49
## 3644 36:38.7 +3:19.6 35:28.7 2015-2016 Ruhpolding 49
## 3645 36:42.6 +3:23.5 34:47.6 2015-2016 Ruhpolding 49
## 3646 36:47.8 +3:28.7 34:51.8 2015-2016 Ruhpolding 49
## 3647 36:49.1 +3:30.0 35:00.1 2015-2016 Ruhpolding 49
## 3648 36:57.9 +3:38.8 35:15.9 2015-2016 Ruhpolding 49
## 3649 37:04.6 +3:45.5 35:27.6 2015-2016 Ruhpolding 49
## 3650 37:12.0 +3:52.9 35:32.0 2015-2016 Ruhpolding 49
## 3651 37:22.1 +4:03.0 35:27.1 2015-2016 Ruhpolding 49
## 3652 37:22.6 +4:03.5 35:47.6 2015-2016 Ruhpolding 49
## 3653 37:26.4 +4:07.3 35:33.4 2015-2016 Ruhpolding 49
## 3654 37:32.5 +4:13.4 35:38.5 2015-2016 Ruhpolding 49
## 3655 37:46.4 +4:27.3 35:51.4 2015-2016 Ruhpolding 49
## 3656 38:05.6 +4:46.5 36:12.6 2015-2016 Ruhpolding 49
## 3657 38:13.1 +4:54.0 36:41.1 2015-2016 Ruhpolding 49
## 3658 38:13.1 +4:54.0 36:25.1 2015-2016 Ruhpolding 49
## 3659 38:33.9 +5:14.8 36:35.9 2015-2016 Ruhpolding 49
## 3660 39:39.9 +6:20.8 38:04.9 2015-2016 Ruhpolding 49
## 3661 39:40.4 +6:21.3 37:53.4 2015-2016 Ruhpolding 49
## 3662 40:22.6 +7:03.5 38:31.6 2015-2016 Ruhpolding 49
## 3663 2015-2016 Ruhpolding 49
## 3664 2015-2016 Ruhpolding 49
## 3665 21:57.5 <NA> 2015-2016 Ruhpolding 50
## 3666 22:00.5 +3.0 <NA> 2015-2016 Ruhpolding 50
## 3667 22:05.1 +7.6 <NA> 2015-2016 Ruhpolding 50
## 3668 22:08.4 +10.9 <NA> 2015-2016 Ruhpolding 50
## 3669 22:21.9 +24.4 <NA> 2015-2016 Ruhpolding 50
## 3670 22:25.0 +27.5 <NA> 2015-2016 Ruhpolding 50
## 3671 22:37.3 +39.8 <NA> 2015-2016 Ruhpolding 50
## 3672 22:42.5 +45.0 <NA> 2015-2016 Ruhpolding 50
## 3673 22:42.8 +45.3 <NA> 2015-2016 Ruhpolding 50
## 3674 22:50.2 +52.7 <NA> 2015-2016 Ruhpolding 50
## 3675 22:52.5 +55.0 <NA> 2015-2016 Ruhpolding 50
## 3676 22:53.9 +56.4 <NA> 2015-2016 Ruhpolding 50
## 3677 22:56.8 +59.3 <NA> 2015-2016 Ruhpolding 50
## 3678 22:57.0 +59.5 <NA> 2015-2016 Ruhpolding 50
## 3679 22:57.4 +59.9 <NA> 2015-2016 Ruhpolding 50
## 3680 22:58.4 +1:00.9 <NA> 2015-2016 Ruhpolding 50
## 3681 22:58.6 +1:01.1 <NA> 2015-2016 Ruhpolding 50
## 3682 22:58.8 +1:01.3 <NA> 2015-2016 Ruhpolding 50
## 3683 23:00.4 +1:02.9 <NA> 2015-2016 Ruhpolding 50
## 3684 23:01.9 +1:04.4 <NA> 2015-2016 Ruhpolding 50
## 3685 23:03.5 +1:06.0 <NA> 2015-2016 Ruhpolding 50
## 3686 23:07.4 +1:09.9 <NA> 2015-2016 Ruhpolding 50
## 3687 23:07.7 +1:10.2 <NA> 2015-2016 Ruhpolding 50
## 3688 23:09.0 +1:11.5 <NA> 2015-2016 Ruhpolding 50
## 3689 23:19.5 +1:22.0 <NA> 2015-2016 Ruhpolding 50
## 3690 23:20.4 +1:22.9 <NA> 2015-2016 Ruhpolding 50
## 3691 23:20.4 +1:22.9 <NA> 2015-2016 Ruhpolding 50
## 3692 23:21.7 +1:24.2 <NA> 2015-2016 Ruhpolding 50
## 3693 23:22.7 +1:25.2 <NA> 2015-2016 Ruhpolding 50
## 3694 23:23.8 +1:26.3 <NA> 2015-2016 Ruhpolding 50
## 3695 23:25.0 +1:27.5 <NA> 2015-2016 Ruhpolding 50
## 3696 23:27.7 +1:30.2 <NA> 2015-2016 Ruhpolding 50
## 3697 23:27.9 +1:30.4 <NA> 2015-2016 Ruhpolding 50
## 3698 23:29.5 +1:32.0 <NA> 2015-2016 Ruhpolding 50
## 3699 23:31.4 +1:33.9 <NA> 2015-2016 Ruhpolding 50
## 3700 23:32.3 +1:34.8 <NA> 2015-2016 Ruhpolding 50
## 3701 23:32.6 +1:35.1 <NA> 2015-2016 Ruhpolding 50
## 3702 23:32.7 +1:35.2 <NA> 2015-2016 Ruhpolding 50
## 3703 23:34.3 +1:36.8 <NA> 2015-2016 Ruhpolding 50
## 3704 23:36.4 +1:38.9 <NA> 2015-2016 Ruhpolding 50
## 3705 23:36.8 +1:39.3 <NA> 2015-2016 Ruhpolding 50
## 3706 23:37.6 +1:40.1 <NA> 2015-2016 Ruhpolding 50
## 3707 23:39.3 +1:41.8 <NA> 2015-2016 Ruhpolding 50
## 3708 23:42.8 +1:45.3 <NA> 2015-2016 Ruhpolding 50
## 3709 23:43.4 +1:45.9 <NA> 2015-2016 Ruhpolding 50
## 3710 23:44.6 +1:47.1 <NA> 2015-2016 Ruhpolding 50
## 3711 23:45.6 +1:48.1 <NA> 2015-2016 Ruhpolding 50
## 3712 23:46.0 +1:48.5 <NA> 2015-2016 Ruhpolding 50
## 3713 23:46.0 +1:48.5 <NA> 2015-2016 Ruhpolding 50
## 3714 23:48.4 +1:50.9 <NA> 2015-2016 Ruhpolding 50
## 3715 23:49.5 +1:52.0 <NA> 2015-2016 Ruhpolding 50
## 3716 23:49.6 +1:52.1 <NA> 2015-2016 Ruhpolding 50
## 3717 23:50.1 +1:52.6 <NA> 2015-2016 Ruhpolding 50
## 3718 23:50.3 +1:52.8 <NA> 2015-2016 Ruhpolding 50
## 3719 23:51.0 +1:53.5 <NA> 2015-2016 Ruhpolding 50
## 3720 23:52.0 +1:54.5 <NA> 2015-2016 Ruhpolding 50
## 3721 23:52.1 +1:54.6 <NA> 2015-2016 Ruhpolding 50
## 3722 23:52.8 +1:55.3 <NA> 2015-2016 Ruhpolding 50
## 3723 23:53.2 +1:55.7 <NA> 2015-2016 Ruhpolding 50
## 3724 23:55.7 +1:58.2 <NA> 2015-2016 Ruhpolding 50
## 3725 23:57.6 +2:00.1 <NA> 2015-2016 Ruhpolding 50
## 3726 23:58.0 +2:00.5 <NA> 2015-2016 Ruhpolding 50
## 3727 24:00.1 +2:02.6 <NA> 2015-2016 Ruhpolding 50
## 3728 24:07.2 +2:09.7 <NA> 2015-2016 Ruhpolding 50
## 3729 24:10.1 +2:12.6 <NA> 2015-2016 Ruhpolding 50
## 3730 24:11.9 +2:14.4 <NA> 2015-2016 Ruhpolding 50
## 3731 24:14.6 +2:17.1 <NA> 2015-2016 Ruhpolding 50
## 3732 24:15.9 +2:18.4 <NA> 2015-2016 Ruhpolding 50
## 3733 24:19.6 +2:22.1 <NA> 2015-2016 Ruhpolding 50
## 3734 24:19.7 +2:22.2 <NA> 2015-2016 Ruhpolding 50
## 3735 24:23.2 +2:25.7 <NA> 2015-2016 Ruhpolding 50
## 3736 24:25.0 +2:27.5 <NA> 2015-2016 Ruhpolding 50
## 3737 24:25.0 +2:27.5 <NA> 2015-2016 Ruhpolding 50
## 3738 24:25.5 +2:28.0 <NA> 2015-2016 Ruhpolding 50
## 3739 24:27.0 +2:29.5 <NA> 2015-2016 Ruhpolding 50
## 3740 24:28.7 +2:31.2 <NA> 2015-2016 Ruhpolding 50
## 3741 24:30.7 +2:33.2 <NA> 2015-2016 Ruhpolding 50
## 3742 24:31.0 +2:33.5 <NA> 2015-2016 Ruhpolding 50
## 3743 24:31.9 +2:34.4 <NA> 2015-2016 Ruhpolding 50
## 3744 24:34.0 +2:36.5 <NA> 2015-2016 Ruhpolding 50
## 3745 24:38.5 +2:41.0 <NA> 2015-2016 Ruhpolding 50
## 3746 24:42.6 +2:45.1 <NA> 2015-2016 Ruhpolding 50
## 3747 24:43.3 +2:45.8 <NA> 2015-2016 Ruhpolding 50
## 3748 24:43.8 +2:46.3 <NA> 2015-2016 Ruhpolding 50
## 3749 24:49.6 +2:52.1 <NA> 2015-2016 Ruhpolding 50
## 3750 24:50.5 +2:53.0 <NA> 2015-2016 Ruhpolding 50
## 3751 24:53.8 +2:56.3 <NA> 2015-2016 Ruhpolding 50
## 3752 24:56.7 +2:59.2 <NA> 2015-2016 Ruhpolding 50
## 3753 24:58.5 +3:01.0 <NA> 2015-2016 Ruhpolding 50
## 3754 24:59.3 +3:01.8 <NA> 2015-2016 Ruhpolding 50
## 3755 25:13.7 +3:16.2 <NA> 2015-2016 Ruhpolding 50
## 3756 25:20.8 +3:23.3 <NA> 2015-2016 Ruhpolding 50
## 3757 25:21.2 +3:23.7 <NA> 2015-2016 Ruhpolding 50
## 3758 25:22.4 +3:24.9 <NA> 2015-2016 Ruhpolding 50
## 3759 25:29.3 +3:31.8 <NA> 2015-2016 Ruhpolding 50
## 3760 25:36.4 +3:38.9 <NA> 2015-2016 Ruhpolding 50
## 3761 25:47.6 +3:50.1 <NA> 2015-2016 Ruhpolding 50
## 3762 25:52.9 +3:55.4 <NA> 2015-2016 Ruhpolding 50
## 3763 26:02.1 +4:04.6 <NA> 2015-2016 Ruhpolding 50
## 3764 26:06.7 +4:09.2 <NA> 2015-2016 Ruhpolding 50
## 3765 26:29.3 +4:31.8 <NA> 2015-2016 Ruhpolding 50
## 3766 26:49.9 +4:52.4 <NA> 2015-2016 Ruhpolding 50
## 3767 <NA> 2015-2016 Ruhpolding 50
## 3768 <NA> 2015-2016 Ruhpolding 50
## 3769 50:38.1 <NA> 2016-2017 Anterselva 51
## 3770 51:19.1 +41.0 <NA> 2016-2017 Anterselva 51
## 3771 51:34.9 +56.8 <NA> 2016-2017 Anterselva 51
## 3772 51:43.0 +1:04.9 <NA> 2016-2017 Anterselva 51
## 3773 51:47.9 +1:09.8 <NA> 2016-2017 Anterselva 51
## 3774 51:53.7 +1:15.6 <NA> 2016-2017 Anterselva 51
## 3775 52:06.8 +1:28.7 <NA> 2016-2017 Anterselva 51
## 3776 52:07.9 +1:29.8 <NA> 2016-2017 Anterselva 51
## 3777 52:08.5 +1:30.4 <NA> 2016-2017 Anterselva 51
## 3778 52:17.2 +1:39.1 <NA> 2016-2017 Anterselva 51
## 3779 52:18.9 +1:40.8 <NA> 2016-2017 Anterselva 51
## 3780 52:24.8 +1:46.7 <NA> 2016-2017 Anterselva 51
## 3781 52:33.9 +1:55.8 <NA> 2016-2017 Anterselva 51
## 3782 52:59.9 +2:21.8 <NA> 2016-2017 Anterselva 51
## 3783 53:06.5 +2:28.4 <NA> 2016-2017 Anterselva 51
## 3784 53:10.2 +2:32.1 <NA> 2016-2017 Anterselva 51
## 3785 53:15.8 +2:37.7 <NA> 2016-2017 Anterselva 51
## 3786 53:42.7 +3:04.6 <NA> 2016-2017 Anterselva 51
## 3787 53:48.3 +3:10.2 <NA> 2016-2017 Anterselva 51
## 3788 53:49.3 +3:11.2 <NA> 2016-2017 Anterselva 51
## 3789 53:52.5 +3:14.4 <NA> 2016-2017 Anterselva 51
## 3790 53:58.4 +3:20.3 <NA> 2016-2017 Anterselva 51
## 3791 54:01.1 +3:23.0 <NA> 2016-2017 Anterselva 51
## 3792 54:08.0 +3:29.9 <NA> 2016-2017 Anterselva 51
## 3793 54:16.8 +3:38.7 <NA> 2016-2017 Anterselva 51
## 3794 54:21.2 +3:43.1 <NA> 2016-2017 Anterselva 51
## 3795 54:26.2 +3:48.1 <NA> 2016-2017 Anterselva 51
## 3796 54:38.0 +3:59.9 <NA> 2016-2017 Anterselva 51
## 3797 54:38.2 +4:00.1 <NA> 2016-2017 Anterselva 51
## 3798 54:44.9 +4:06.8 <NA> 2016-2017 Anterselva 51
## 3799 54:49.4 +4:11.3 <NA> 2016-2017 Anterselva 51
## 3800 54:52.9 +4:14.8 <NA> 2016-2017 Anterselva 51
## 3801 54:54.7 +4:16.6 <NA> 2016-2017 Anterselva 51
## 3802 55:14.6 +4:36.5 <NA> 2016-2017 Anterselva 51
## 3803 55:18.5 +4:40.4 <NA> 2016-2017 Anterselva 51
## 3804 55:19.7 +4:41.6 <NA> 2016-2017 Anterselva 51
## 3805 55:20.6 +4:42.5 <NA> 2016-2017 Anterselva 51
## 3806 55:23.2 +4:45.1 <NA> 2016-2017 Anterselva 51
## 3807 55:27.6 +4:49.5 <NA> 2016-2017 Anterselva 51
## 3808 55:29.3 +4:51.2 <NA> 2016-2017 Anterselva 51
## 3809 55:40.7 +5:02.6 <NA> 2016-2017 Anterselva 51
## 3810 55:44.7 +5:06.6 <NA> 2016-2017 Anterselva 51
## 3811 55:45.1 +5:07.0 <NA> 2016-2017 Anterselva 51
## 3812 55:46.1 +5:08.0 <NA> 2016-2017 Anterselva 51
## 3813 55:46.2 +5:08.1 <NA> 2016-2017 Anterselva 51
## 3814 55:46.3 +5:08.2 <NA> 2016-2017 Anterselva 51
## 3815 55:50.2 +5:12.1 <NA> 2016-2017 Anterselva 51
## 3816 55:55.4 +5:17.3 <NA> 2016-2017 Anterselva 51
## 3817 55:59.1 +5:21.0 <NA> 2016-2017 Anterselva 51
## 3818 56:00.3 +5:22.2 <NA> 2016-2017 Anterselva 51
## 3819 56:02.1 +5:24.0 <NA> 2016-2017 Anterselva 51
## 3820 56:11.6 +5:33.5 <NA> 2016-2017 Anterselva 51
## 3821 56:19.3 +5:41.2 <NA> 2016-2017 Anterselva 51
## 3822 56:23.9 +5:45.8 <NA> 2016-2017 Anterselva 51
## 3823 56:24.8 +5:46.7 <NA> 2016-2017 Anterselva 51
## 3824 56:26.6 +5:48.5 <NA> 2016-2017 Anterselva 51
## 3825 56:29.7 +5:51.6 <NA> 2016-2017 Anterselva 51
## 3826 56:32.0 +5:53.9 <NA> 2016-2017 Anterselva 51
## 3827 56:39.7 +6:01.6 <NA> 2016-2017 Anterselva 51
## 3828 56:43.3 +6:05.2 <NA> 2016-2017 Anterselva 51
## 3829 56:47.9 +6:09.8 <NA> 2016-2017 Anterselva 51
## 3830 56:48.8 +6:10.7 <NA> 2016-2017 Anterselva 51
## 3831 56:55.5 +6:17.4 <NA> 2016-2017 Anterselva 51
## 3832 56:57.3 +6:19.2 <NA> 2016-2017 Anterselva 51
## 3833 56:59.4 +6:21.3 <NA> 2016-2017 Anterselva 51
## 3834 57:00.6 +6:22.5 <NA> 2016-2017 Anterselva 51
## 3835 57:02.1 +6:24.0 <NA> 2016-2017 Anterselva 51
## 3836 57:03.5 +6:25.4 <NA> 2016-2017 Anterselva 51
## 3837 57:05.6 +6:27.5 <NA> 2016-2017 Anterselva 51
## 3838 57:17.4 +6:39.3 <NA> 2016-2017 Anterselva 51
## 3839 57:22.9 +6:44.8 <NA> 2016-2017 Anterselva 51
## 3840 57:30.5 +6:52.4 <NA> 2016-2017 Anterselva 51
## 3841 57:40.3 +7:02.2 <NA> 2016-2017 Anterselva 51
## 3842 57:44.4 +7:06.3 <NA> 2016-2017 Anterselva 51
## 3843 57:47.7 +7:09.6 <NA> 2016-2017 Anterselva 51
## 3844 57:47.7 +7:09.6 <NA> 2016-2017 Anterselva 51
## 3845 57:54.6 +7:16.5 <NA> 2016-2017 Anterselva 51
## 3846 58:03.7 +7:25.6 <NA> 2016-2017 Anterselva 51
## 3847 58:06.0 +7:27.9 <NA> 2016-2017 Anterselva 51
## 3848 58:12.7 +7:34.6 <NA> 2016-2017 Anterselva 51
## 3849 58:17.7 +7:39.6 <NA> 2016-2017 Anterselva 51
## 3850 58:35.1 +7:57.0 <NA> 2016-2017 Anterselva 51
## 3851 58:36.2 +7:58.1 <NA> 2016-2017 Anterselva 51
## 3852 58:47.3 +8:09.2 <NA> 2016-2017 Anterselva 51
## 3853 58:55.3 +8:17.2 <NA> 2016-2017 Anterselva 51
## 3854 58:59.7 +8:21.6 <NA> 2016-2017 Anterselva 51
## 3855 59:00.7 +8:22.6 <NA> 2016-2017 Anterselva 51
## 3856 59:18.4 +8:40.3 <NA> 2016-2017 Anterselva 51
## 3857 59:20.9 +8:42.8 <NA> 2016-2017 Anterselva 51
## 3858 59:27.6 +8:49.5 <NA> 2016-2017 Anterselva 51
## 3859 59:35.6 +8:57.5 <NA> 2016-2017 Anterselva 51
## 3860 59:39.4 +9:01.3 <NA> 2016-2017 Anterselva 51
## 3861 59:43.2 +9:05.1 <NA> 2016-2017 Anterselva 51
## 3862 59:43.7 +9:05.6 <NA> 2016-2017 Anterselva 51
## 3863 59:53.0 +9:14.9 <NA> 2016-2017 Anterselva 51
## 3864 1:00:12.4 +9:34.3 <NA> 2016-2017 Anterselva 51
## 3865 1:00:16.4 +9:38.3 <NA> 2016-2017 Anterselva 51
## 3866 1:00:37.7 +9:59.6 <NA> 2016-2017 Anterselva 51
## 3867 1:00:38.6 +10:00.5 <NA> 2016-2017 Anterselva 51
## 3868 1:00:44.5 +10:06.4 <NA> 2016-2017 Anterselva 51
## 3869 1:00:46.9 +10:08.8 <NA> 2016-2017 Anterselva 51
## 3870 1:01:28.6 +10:50.5 <NA> 2016-2017 Anterselva 51
## 3871 1:02:08.0 +11:29.9 <NA> 2016-2017 Anterselva 51
## 3872 1:02:21.5 +11:43.4 <NA> 2016-2017 Anterselva 51
## 3873 1:02:34.7 +11:56.6 <NA> 2016-2017 Anterselva 51
## 3874 <NA> 2016-2017 Anterselva 51
## 3875 <NA> 2016-2017 Anterselva 51
## 3876 <NA> 2016-2017 Anterselva 51
## 3877 37:04.3 <NA> 2016-2017 Anterselva 52
## 3878 37:08.0 +3.7 <NA> 2016-2017 Anterselva 52
## 3879 37:26.0 +21.7 <NA> 2016-2017 Anterselva 52
## 3880 37:29.5 +25.2 <NA> 2016-2017 Anterselva 52
## 3881 37:33.5 +29.2 <NA> 2016-2017 Anterselva 52
## 3882 37:37.7 +33.4 <NA> 2016-2017 Anterselva 52
## 3883 37:38.5 +34.2 <NA> 2016-2017 Anterselva 52
## 3884 37:58.5 +54.2 <NA> 2016-2017 Anterselva 52
## 3885 38:03.5 +59.2 <NA> 2016-2017 Anterselva 52
## 3886 38:04.1 +59.8 <NA> 2016-2017 Anterselva 52
## 3887 38:04.1 +59.8 <NA> 2016-2017 Anterselva 52
## 3888 38:23.0 +1:18.7 <NA> 2016-2017 Anterselva 52
## 3889 38:23.6 +1:19.3 <NA> 2016-2017 Anterselva 52
## 3890 38:27.5 +1:23.2 <NA> 2016-2017 Anterselva 52
## 3891 38:30.1 +1:25.8 <NA> 2016-2017 Anterselva 52
## 3892 38:37.7 +1:33.4 <NA> 2016-2017 Anterselva 52
## 3893 38:57.3 +1:53.0 <NA> 2016-2017 Anterselva 52
## 3894 39:01.6 +1:57.3 <NA> 2016-2017 Anterselva 52
## 3895 39:22.7 +2:18.4 <NA> 2016-2017 Anterselva 52
## 3896 39:31.3 +2:27.0 <NA> 2016-2017 Anterselva 52
## 3897 39:36.4 +2:32.1 <NA> 2016-2017 Anterselva 52
## 3898 39:41.7 +2:37.4 <NA> 2016-2017 Anterselva 52
## 3899 39:43.1 +2:38.8 <NA> 2016-2017 Anterselva 52
## 3900 39:49.9 +2:45.6 <NA> 2016-2017 Anterselva 52
## 3901 39:56.5 +2:52.2 <NA> 2016-2017 Anterselva 52
## 3902 40:00.8 +2:56.5 <NA> 2016-2017 Anterselva 52
## 3903 40:04.2 +2:59.9 <NA> 2016-2017 Anterselva 52
## 3904 40:24.0 +3:19.7 <NA> 2016-2017 Anterselva 52
## 3905 40:32.0 +3:27.7 <NA> 2016-2017 Anterselva 52
## 3906 41:14.2 +4:09.9 <NA> 2016-2017 Anterselva 52
## 3907 48:07.4 <NA> 2016-2017 Hochfilzen 53
## 3908 48:10.7 +3.3 <NA> 2016-2017 Hochfilzen 53
## 3909 48:28.6 +21.2 <NA> 2016-2017 Hochfilzen 53
## 3910 48:39.4 +32.0 <NA> 2016-2017 Hochfilzen 53
## 3911 48:46.0 +38.6 <NA> 2016-2017 Hochfilzen 53
## 3912 48:51.0 +43.6 <NA> 2016-2017 Hochfilzen 53
## 3913 48:51.3 +43.9 <NA> 2016-2017 Hochfilzen 53
## 3914 49:19.3 +1:11.9 <NA> 2016-2017 Hochfilzen 53
## 3915 49:21.7 +1:14.3 <NA> 2016-2017 Hochfilzen 53
## 3916 49:30.2 +1:22.8 <NA> 2016-2017 Hochfilzen 53
## 3917 49:36.1 +1:28.7 <NA> 2016-2017 Hochfilzen 53
## 3918 49:39.0 +1:31.6 <NA> 2016-2017 Hochfilzen 53
## 3919 49:47.9 +1:40.5 <NA> 2016-2017 Hochfilzen 53
## 3920 50:05.3 +1:57.9 <NA> 2016-2017 Hochfilzen 53
## 3921 50:05.7 +1:58.3 <NA> 2016-2017 Hochfilzen 53
## 3922 50:14.2 +2:06.8 <NA> 2016-2017 Hochfilzen 53
## 3923 50:30.4 +2:23.0 <NA> 2016-2017 Hochfilzen 53
## 3924 50:33.9 +2:26.5 <NA> 2016-2017 Hochfilzen 53
## 3925 50:34.7 +2:27.3 <NA> 2016-2017 Hochfilzen 53
## 3926 50:41.1 +2:33.7 <NA> 2016-2017 Hochfilzen 53
## 3927 50:44.9 +2:37.5 <NA> 2016-2017 Hochfilzen 53
## 3928 50:48.1 +2:40.7 <NA> 2016-2017 Hochfilzen 53
## 3929 51:01.0 +2:53.6 <NA> 2016-2017 Hochfilzen 53
## 3930 51:09.0 +3:01.6 <NA> 2016-2017 Hochfilzen 53
## 3931 51:12.5 +3:05.1 <NA> 2016-2017 Hochfilzen 53
## 3932 51:14.1 +3:06.7 <NA> 2016-2017 Hochfilzen 53
## 3933 51:29.9 +3:22.5 <NA> 2016-2017 Hochfilzen 53
## 3934 51:34.7 +3:27.3 <NA> 2016-2017 Hochfilzen 53
## 3935 51:40.7 +3:33.3 <NA> 2016-2017 Hochfilzen 53
## 3936 51:50.5 +3:43.1 <NA> 2016-2017 Hochfilzen 53
## 3937 52:09.3 +4:01.9 <NA> 2016-2017 Hochfilzen 53
## 3938 52:19.1 +4:11.7 <NA> 2016-2017 Hochfilzen 53
## 3939 52:21.0 +4:13.6 <NA> 2016-2017 Hochfilzen 53
## 3940 52:21.4 +4:14.0 <NA> 2016-2017 Hochfilzen 53
## 3941 52:21.4 +4:14.0 <NA> 2016-2017 Hochfilzen 53
## 3942 52:21.8 +4:14.4 <NA> 2016-2017 Hochfilzen 53
## 3943 52:22.9 +4:15.5 <NA> 2016-2017 Hochfilzen 53
## 3944 52:27.5 +4:20.1 <NA> 2016-2017 Hochfilzen 53
## 3945 52:28.8 +4:21.4 <NA> 2016-2017 Hochfilzen 53
## 3946 52:29.4 +4:22.0 <NA> 2016-2017 Hochfilzen 53
## 3947 52:30.1 +4:22.7 <NA> 2016-2017 Hochfilzen 53
## 3948 52:32.6 +4:25.2 <NA> 2016-2017 Hochfilzen 53
## 3949 52:36.5 +4:29.1 <NA> 2016-2017 Hochfilzen 53
## 3950 52:39.7 +4:32.3 <NA> 2016-2017 Hochfilzen 53
## 3951 52:47.2 +4:39.8 <NA> 2016-2017 Hochfilzen 53
## 3952 52:50.5 +4:43.1 <NA> 2016-2017 Hochfilzen 53
## 3953 52:57.2 +4:49.8 <NA> 2016-2017 Hochfilzen 53
## 3954 52:58.7 +4:51.3 <NA> 2016-2017 Hochfilzen 53
## 3955 53:02.3 +4:54.9 <NA> 2016-2017 Hochfilzen 53
## 3956 53:12.1 +5:04.7 <NA> 2016-2017 Hochfilzen 53
## 3957 53:12.7 +5:05.3 <NA> 2016-2017 Hochfilzen 53
## 3958 53:22.5 +5:15.1 <NA> 2016-2017 Hochfilzen 53
## 3959 53:41.2 +5:33.8 <NA> 2016-2017 Hochfilzen 53
## 3960 53:59.3 +5:51.9 <NA> 2016-2017 Hochfilzen 53
## 3961 53:59.9 +5:52.5 <NA> 2016-2017 Hochfilzen 53
## 3962 54:01.0 +5:53.6 <NA> 2016-2017 Hochfilzen 53
## 3963 54:04.2 +5:56.8 <NA> 2016-2017 Hochfilzen 53
## 3964 54:11.8 +6:04.4 <NA> 2016-2017 Hochfilzen 53
## 3965 54:13.7 +6:06.3 <NA> 2016-2017 Hochfilzen 53
## 3966 54:18.0 +6:10.6 <NA> 2016-2017 Hochfilzen 53
## 3967 54:18.8 +6:11.4 <NA> 2016-2017 Hochfilzen 53
## 3968 54:19.4 +6:12.0 <NA> 2016-2017 Hochfilzen 53
## 3969 54:21.5 +6:14.1 <NA> 2016-2017 Hochfilzen 53
## 3970 54:22.4 +6:15.0 <NA> 2016-2017 Hochfilzen 53
## 3971 54:32.2 +6:24.8 <NA> 2016-2017 Hochfilzen 53
## 3972 54:32.8 +6:25.4 <NA> 2016-2017 Hochfilzen 53
## 3973 55:06.4 +6:59.0 <NA> 2016-2017 Hochfilzen 53
## 3974 55:06.9 +6:59.5 <NA> 2016-2017 Hochfilzen 53
## 3975 55:18.3 +7:10.9 <NA> 2016-2017 Hochfilzen 53
## 3976 55:19.5 +7:12.1 <NA> 2016-2017 Hochfilzen 53
## 3977 55:26.8 +7:19.4 <NA> 2016-2017 Hochfilzen 53
## 3978 55:35.0 +7:27.6 <NA> 2016-2017 Hochfilzen 53
## 3979 56:00.9 +7:53.5 <NA> 2016-2017 Hochfilzen 53
## 3980 56:02.1 +7:54.7 <NA> 2016-2017 Hochfilzen 53
## 3981 56:02.8 +7:55.4 <NA> 2016-2017 Hochfilzen 53
## 3982 56:09.0 +8:01.6 <NA> 2016-2017 Hochfilzen 53
## 3983 56:17.1 +8:09.7 <NA> 2016-2017 Hochfilzen 53
## 3984 56:33.1 +8:25.7 <NA> 2016-2017 Hochfilzen 53
## 3985 56:35.4 +8:28.0 <NA> 2016-2017 Hochfilzen 53
## 3986 56:39.5 +8:32.1 <NA> 2016-2017 Hochfilzen 53
## 3987 56:52.1 +8:44.7 <NA> 2016-2017 Hochfilzen 53
## 3988 57:25.3 +9:17.9 <NA> 2016-2017 Hochfilzen 53
## 3989 57:27.2 +9:19.8 <NA> 2016-2017 Hochfilzen 53
## 3990 57:35.2 +9:27.8 <NA> 2016-2017 Hochfilzen 53
## 3991 57:40.9 +9:33.5 <NA> 2016-2017 Hochfilzen 53
## 3992 57:41.3 +9:33.9 <NA> 2016-2017 Hochfilzen 53
## 3993 57:58.6 +9:51.2 <NA> 2016-2017 Hochfilzen 53
## 3994 58:04.1 +9:56.7 <NA> 2016-2017 Hochfilzen 53
## 3995 58:13.9 +10:06.5 <NA> 2016-2017 Hochfilzen 53
## 3996 58:19.7 +10:12.3 <NA> 2016-2017 Hochfilzen 53
## 3997 58:37.7 +10:30.3 <NA> 2016-2017 Hochfilzen 53
## 3998 58:52.1 +10:44.7 <NA> 2016-2017 Hochfilzen 53
## 3999 59:25.7 +11:18.3 <NA> 2016-2017 Hochfilzen 53
## 4000 59:28.7 +11:21.3 <NA> 2016-2017 Hochfilzen 53
## 4001 59:38.4 +11:31.0 <NA> 2016-2017 Hochfilzen 53
## 4002 1:00:34.2 +12:26.8 <NA> 2016-2017 Hochfilzen 53
## 4003 1:01:32.6 +13:25.2 <NA> 2016-2017 Hochfilzen 53
## 4004 1:02:27.5 +14:20.1 <NA> 2016-2017 Hochfilzen 53
## 4005 1:04:26.9 +16:19.5 <NA> 2016-2017 Hochfilzen 53
## 4006 1:05:06.5 +16:59.1 <NA> 2016-2017 Hochfilzen 53
## 4007 <NA> 2016-2017 Hochfilzen 53
## 4008 <NA> 2016-2017 Hochfilzen 53
## 4009 35:38.3 <NA> 2016-2017 Hochfilzen 54
## 4010 35:47.3 +9.0 <NA> 2016-2017 Hochfilzen 54
## 4011 35:48.4 +10.1 <NA> 2016-2017 Hochfilzen 54
## 4012 36:03.6 +25.3 <NA> 2016-2017 Hochfilzen 54
## 4013 36:09.6 +31.3 <NA> 2016-2017 Hochfilzen 54
## 4014 36:11.8 +33.5 <NA> 2016-2017 Hochfilzen 54
## 4015 36:16.3 +38.0 <NA> 2016-2017 Hochfilzen 54
## 4016 36:18.0 +39.7 <NA> 2016-2017 Hochfilzen 54
## 4017 36:21.2 +42.9 <NA> 2016-2017 Hochfilzen 54
## 4018 36:24.4 +46.1 <NA> 2016-2017 Hochfilzen 54
## 4019 36:29.0 +50.7 <NA> 2016-2017 Hochfilzen 54
## 4020 36:31.3 +53.0 <NA> 2016-2017 Hochfilzen 54
## 4021 36:32.4 +54.1 <NA> 2016-2017 Hochfilzen 54
## 4022 36:35.2 +56.9 <NA> 2016-2017 Hochfilzen 54
## 4023 36:41.7 +1:03.4 <NA> 2016-2017 Hochfilzen 54
## 4024 36:46.0 +1:07.7 <NA> 2016-2017 Hochfilzen 54
## 4025 36:54.3 +1:16.0 <NA> 2016-2017 Hochfilzen 54
## 4026 36:57.0 +1:18.7 <NA> 2016-2017 Hochfilzen 54
## 4027 36:59.2 +1:20.9 <NA> 2016-2017 Hochfilzen 54
## 4028 37:00.2 +1:21.9 <NA> 2016-2017 Hochfilzen 54
## 4029 37:09.7 +1:31.4 <NA> 2016-2017 Hochfilzen 54
## 4030 37:20.3 +1:42.0 <NA> 2016-2017 Hochfilzen 54
## 4031 37:22.8 +1:44.5 <NA> 2016-2017 Hochfilzen 54
## 4032 37:34.2 +1:55.9 <NA> 2016-2017 Hochfilzen 54
## 4033 37:34.9 +1:56.6 <NA> 2016-2017 Hochfilzen 54
## 4034 37:39.8 +2:01.5 <NA> 2016-2017 Hochfilzen 54
## 4035 37:48.0 +2:09.7 <NA> 2016-2017 Hochfilzen 54
## 4036 38:18.6 +2:40.3 <NA> 2016-2017 Hochfilzen 54
## 4037 38:29.9 +2:51.6 <NA> 2016-2017 Hochfilzen 54
## 4038 39:05.6 +3:27.3 <NA> 2016-2017 Hochfilzen 54
## 4039 30:16.9 29:53.9 2016-2017 Hochfilzen 55
## 4040 30:39.7 +22.8 30:38.7 2016-2017 Hochfilzen 55
## 4041 30:42.5 +25.6 30:04.5 2016-2017 Hochfilzen 55
## 4042 30:50.5 +33.6 29:35.5 2016-2017 Hochfilzen 55
## 4043 30:50.9 +34.0 30:19.9 2016-2017 Hochfilzen 55
## 4044 30:51.6 +34.7 30:21.6 2016-2017 Hochfilzen 55
## 4045 30:55.2 +38.3 30:21.2 2016-2017 Hochfilzen 55
## 4046 31:05.0 +48.1 30:30.0 2016-2017 Hochfilzen 55
## 4047 31:09.2 +52.3 30:19.2 2016-2017 Hochfilzen 55
## 4048 31:09.3 +52.4 30:29.3 2016-2017 Hochfilzen 55
## 4049 31:22.0 +1:05.1 31:22.0 2016-2017 Hochfilzen 55
## 4050 31:50.6 +1:33.7 30:33.6 2016-2017 Hochfilzen 55
## 4051 31:56.2 +1:39.3 30:31.2 2016-2017 Hochfilzen 55
## 4052 32:00.1 +1:43.2 30:34.1 2016-2017 Hochfilzen 55
## 4053 32:00.5 +1:43.6 30:20.5 2016-2017 Hochfilzen 55
## 4054 32:01.2 +1:44.3 30:29.2 2016-2017 Hochfilzen 55
## 4055 32:01.2 +1:44.3 30:34.2 2016-2017 Hochfilzen 55
## 4056 32:01.6 +1:44.7 31:13.6 2016-2017 Hochfilzen 55
## 4057 32:03.3 +1:46.4 31:15.3 2016-2017 Hochfilzen 55
## 4058 32:05.8 +1:48.9 31:20.8 2016-2017 Hochfilzen 55
## 4059 32:06.2 +1:49.3 30:54.2 2016-2017 Hochfilzen 55
## 4060 32:14.1 +1:57.2 30:33.1 2016-2017 Hochfilzen 55
## 4061 32:14.2 +1:57.3 30:43.2 2016-2017 Hochfilzen 55
## 4062 32:14.5 +1:57.6 30:26.5 2016-2017 Hochfilzen 55
## 4063 32:16.4 +1:59.5 31:04.4 2016-2017 Hochfilzen 55
## 4064 32:36.5 +2:19.6 31:24.5 2016-2017 Hochfilzen 55
## 4065 32:37.2 +2:20.3 31:03.2 2016-2017 Hochfilzen 55
## 4066 32:37.9 +2:21.0 31:01.9 2016-2017 Hochfilzen 55
## 4067 32:42.3 +2:25.4 31:37.3 2016-2017 Hochfilzen 55
## 4068 32:56.8 +2:39.9 31:16.8 2016-2017 Hochfilzen 55
## 4069 32:59.8 +2:42.9 31:00.8 2016-2017 Hochfilzen 55
## 4070 33:02.3 +2:45.4 31:23.3 2016-2017 Hochfilzen 55
## 4071 33:03.1 +2:46.2 31:41.1 2016-2017 Hochfilzen 55
## 4072 33:06.8 +2:49.9 31:24.8 2016-2017 Hochfilzen 55
## 4073 33:10.9 +2:54.0 31:44.9 2016-2017 Hochfilzen 55
## 4074 33:19.7 +3:02.8 31:30.7 2016-2017 Hochfilzen 55
## 4075 33:20.1 +3:03.2 31:12.1 2016-2017 Hochfilzen 55
## 4076 33:20.2 +3:03.3 32:06.2 2016-2017 Hochfilzen 55
## 4077 33:21.9 +3:05.0 31:32.9 2016-2017 Hochfilzen 55
## 4078 33:23.8 +3:06.9 31:37.8 2016-2017 Hochfilzen 55
## 4079 33:35.8 +3:18.9 32:04.8 2016-2017 Hochfilzen 55
## 4080 33:36.7 +3:19.8 32:17.7 2016-2017 Hochfilzen 55
## 4081 33:54.1 +3:37.2 32:47.1 2016-2017 Hochfilzen 55
## 4082 33:55.3 +3:38.4 31:45.3 2016-2017 Hochfilzen 55
## 4083 34:03.5 +3:46.6 31:53.5 2016-2017 Hochfilzen 55
## 4084 34:12.7 +3:55.8 31:51.7 2016-2017 Hochfilzen 55
## 4085 34:12.9 +3:56.0 32:50.9 2016-2017 Hochfilzen 55
## 4086 34:14.5 +3:57.6 32:28.5 2016-2017 Hochfilzen 55
## 4087 34:28.0 +4:11.1 33:04.0 2016-2017 Hochfilzen 55
## 4088 34:28.6 +4:11.7 32:30.6 2016-2017 Hochfilzen 55
## 4089 34:30.5 +4:13.6 32:31.5 2016-2017 Hochfilzen 55
## 4090 34:36.4 +4:19.5 33:00.4 2016-2017 Hochfilzen 55
## 4091 35:03.1 +4:46.2 32:59.1 2016-2017 Hochfilzen 55
## 4092 35:10.1 +4:53.2 33:36.1 2016-2017 Hochfilzen 55
## 4093 35:32.1 +5:15.2 33:54.1 2016-2017 Hochfilzen 55
## 4094 35:47.8 +5:30.9 33:45.8 2016-2017 Hochfilzen 55
## 4095 36:08.3 +5:51.4 34:08.3 2016-2017 Hochfilzen 55
## 4096 2016-2017 Hochfilzen 55
## 4097 2016-2017 Hochfilzen 55
## 4098 2016-2017 Hochfilzen 55
## 4099 23:27.4 <NA> 2016-2017 Hochfilzen 56
## 4100 23:28.1 +0.7 <NA> 2016-2017 Hochfilzen 56
## 4101 23:50.5 +23.1 <NA> 2016-2017 Hochfilzen 56
## 4102 23:56.9 +29.5 <NA> 2016-2017 Hochfilzen 56
## 4103 23:58.1 +30.7 <NA> 2016-2017 Hochfilzen 56
## 4104 24:00.9 +33.5 <NA> 2016-2017 Hochfilzen 56
## 4105 24:02.7 +35.3 <NA> 2016-2017 Hochfilzen 56
## 4106 24:05.8 +38.4 <NA> 2016-2017 Hochfilzen 56
## 4107 24:07.4 +40.0 <NA> 2016-2017 Hochfilzen 56
## 4108 24:12.5 +45.1 <NA> 2016-2017 Hochfilzen 56
## 4109 24:15.1 +47.7 <NA> 2016-2017 Hochfilzen 56
## 4110 24:15.6 +48.2 <NA> 2016-2017 Hochfilzen 56
## 4111 24:15.7 +48.3 <NA> 2016-2017 Hochfilzen 56
## 4112 24:17.2 +49.8 <NA> 2016-2017 Hochfilzen 56
## 4113 24:31.9 +1:04.5 <NA> 2016-2017 Hochfilzen 56
## 4114 24:34.3 +1:06.9 <NA> 2016-2017 Hochfilzen 56
## 4115 24:38.9 +1:11.5 <NA> 2016-2017 Hochfilzen 56
## 4116 24:39.8 +1:12.4 <NA> 2016-2017 Hochfilzen 56
## 4117 24:39.8 +1:12.4 <NA> 2016-2017 Hochfilzen 56
## 4118 24:41.0 +1:13.6 <NA> 2016-2017 Hochfilzen 56
## 4119 24:42.1 +1:14.7 <NA> 2016-2017 Hochfilzen 56
## 4120 24:44.4 +1:17.0 <NA> 2016-2017 Hochfilzen 56
## 4121 24:46.8 +1:19.4 <NA> 2016-2017 Hochfilzen 56
## 4122 24:49.6 +1:22.2 <NA> 2016-2017 Hochfilzen 56
## 4123 24:49.8 +1:22.4 <NA> 2016-2017 Hochfilzen 56
## 4124 24:51.7 +1:24.3 <NA> 2016-2017 Hochfilzen 56
## 4125 24:52.2 +1:24.8 <NA> 2016-2017 Hochfilzen 56
## 4126 24:53.5 +1:26.1 <NA> 2016-2017 Hochfilzen 56
## 4127 24:53.8 +1:26.4 <NA> 2016-2017 Hochfilzen 56
## 4128 24:54.2 +1:26.8 <NA> 2016-2017 Hochfilzen 56
## 4129 24:57.9 +1:30.5 <NA> 2016-2017 Hochfilzen 56
## 4130 24:58.0 +1:30.6 <NA> 2016-2017 Hochfilzen 56
## 4131 24:58.9 +1:31.5 <NA> 2016-2017 Hochfilzen 56
## 4132 25:01.2 +1:33.8 <NA> 2016-2017 Hochfilzen 56
## 4133 25:01.2 +1:33.8 <NA> 2016-2017 Hochfilzen 56
## 4134 25:01.3 +1:33.9 <NA> 2016-2017 Hochfilzen 56
## 4135 25:02.9 +1:35.5 <NA> 2016-2017 Hochfilzen 56
## 4136 25:03.8 +1:36.4 <NA> 2016-2017 Hochfilzen 56
## 4137 25:05.1 +1:37.7 <NA> 2016-2017 Hochfilzen 56
## 4138 25:06.0 +1:38.6 <NA> 2016-2017 Hochfilzen 56
## 4139 25:07.7 +1:40.3 <NA> 2016-2017 Hochfilzen 56
## 4140 25:07.8 +1:40.4 <NA> 2016-2017 Hochfilzen 56
## 4141 25:08.8 +1:41.4 <NA> 2016-2017 Hochfilzen 56
## 4142 25:09.0 +1:41.6 <NA> 2016-2017 Hochfilzen 56
## 4143 25:13.0 +1:45.6 <NA> 2016-2017 Hochfilzen 56
## 4144 25:13.8 +1:46.4 <NA> 2016-2017 Hochfilzen 56
## 4145 25:15.4 +1:48.0 <NA> 2016-2017 Hochfilzen 56
## 4146 25:16.0 +1:48.6 <NA> 2016-2017 Hochfilzen 56
## 4147 25:16.4 +1:49.0 <NA> 2016-2017 Hochfilzen 56
## 4148 25:24.9 +1:57.5 <NA> 2016-2017 Hochfilzen 56
## 4149 25:26.1 +1:58.7 <NA> 2016-2017 Hochfilzen 56
## 4150 25:26.7 +1:59.3 <NA> 2016-2017 Hochfilzen 56
## 4151 25:27.7 +2:00.3 <NA> 2016-2017 Hochfilzen 56
## 4152 25:28.9 +2:01.5 <NA> 2016-2017 Hochfilzen 56
## 4153 25:31.8 +2:04.4 <NA> 2016-2017 Hochfilzen 56
## 4154 25:32.6 +2:05.2 <NA> 2016-2017 Hochfilzen 56
## 4155 25:35.2 +2:07.8 <NA> 2016-2017 Hochfilzen 56
## 4156 25:37.2 +2:09.8 <NA> 2016-2017 Hochfilzen 56
## 4157 25:37.7 +2:10.3 <NA> 2016-2017 Hochfilzen 56
## 4158 25:48.6 +2:21.2 <NA> 2016-2017 Hochfilzen 56
## 4159 25:49.7 +2:22.3 <NA> 2016-2017 Hochfilzen 56
## 4160 25:50.0 +2:22.6 <NA> 2016-2017 Hochfilzen 56
## 4161 25:52.2 +2:24.8 <NA> 2016-2017 Hochfilzen 56
## 4162 25:52.4 +2:25.0 <NA> 2016-2017 Hochfilzen 56
## 4163 25:53.1 +2:25.7 <NA> 2016-2017 Hochfilzen 56
## 4164 25:56.0 +2:28.6 <NA> 2016-2017 Hochfilzen 56
## 4165 25:56.4 +2:29.0 <NA> 2016-2017 Hochfilzen 56
## 4166 25:57.8 +2:30.4 <NA> 2016-2017 Hochfilzen 56
## 4167 26:00.8 +2:33.4 <NA> 2016-2017 Hochfilzen 56
## 4168 26:01.0 +2:33.6 <NA> 2016-2017 Hochfilzen 56
## 4169 26:06.1 +2:38.7 <NA> 2016-2017 Hochfilzen 56
## 4170 26:08.6 +2:41.2 <NA> 2016-2017 Hochfilzen 56
## 4171 26:11.1 +2:43.7 <NA> 2016-2017 Hochfilzen 56
## 4172 26:12.7 +2:45.3 <NA> 2016-2017 Hochfilzen 56
## 4173 26:13.7 +2:46.3 <NA> 2016-2017 Hochfilzen 56
## 4174 26:17.5 +2:50.1 <NA> 2016-2017 Hochfilzen 56
## 4175 26:18.8 +2:51.4 <NA> 2016-2017 Hochfilzen 56
## 4176 26:19.6 +2:52.2 <NA> 2016-2017 Hochfilzen 56
## 4177 26:20.8 +2:53.4 <NA> 2016-2017 Hochfilzen 56
## 4178 26:25.6 +2:58.2 <NA> 2016-2017 Hochfilzen 56
## 4179 26:25.9 +2:58.5 <NA> 2016-2017 Hochfilzen 56
## 4180 26:26.6 +2:59.2 <NA> 2016-2017 Hochfilzen 56
## 4181 26:30.8 +3:03.4 <NA> 2016-2017 Hochfilzen 56
## 4182 26:32.5 +3:05.1 <NA> 2016-2017 Hochfilzen 56
## 4183 26:32.6 +3:05.2 <NA> 2016-2017 Hochfilzen 56
## 4184 26:35.1 +3:07.7 <NA> 2016-2017 Hochfilzen 56
## 4185 26:46.9 +3:19.5 <NA> 2016-2017 Hochfilzen 56
## 4186 26:53.7 +3:26.3 <NA> 2016-2017 Hochfilzen 56
## 4187 27:01.9 +3:34.5 <NA> 2016-2017 Hochfilzen 56
## 4188 27:16.4 +3:49.0 <NA> 2016-2017 Hochfilzen 56
## 4189 27:22.0 +3:54.6 <NA> 2016-2017 Hochfilzen 56
## 4190 27:28.8 +4:01.4 <NA> 2016-2017 Hochfilzen 56
## 4191 27:33.0 +4:05.6 <NA> 2016-2017 Hochfilzen 56
## 4192 27:41.0 +4:13.6 <NA> 2016-2017 Hochfilzen 56
## 4193 27:49.6 +4:22.2 <NA> 2016-2017 Hochfilzen 56
## 4194 27:56.9 +4:29.5 <NA> 2016-2017 Hochfilzen 56
## 4195 28:06.6 +4:39.2 <NA> 2016-2017 Hochfilzen 56
## 4196 28:11.2 +4:43.8 <NA> 2016-2017 Hochfilzen 56
## 4197 28:27.3 +4:59.9 <NA> 2016-2017 Hochfilzen 56
## 4198 28:30.9 +5:03.5 <NA> 2016-2017 Hochfilzen 56
## 4199 29:06.0 +5:38.6 <NA> 2016-2017 Hochfilzen 56
## 4200 29:15.0 +5:47.6 <NA> 2016-2017 Hochfilzen 56
## 4201 <NA> 2016-2017 Hochfilzen 56
## 4202 30:35.0 30:13.0 2016-2017 Kontiolahti 57
## 4203 30:35.3 +0.3 30:12.3 2016-2017 Kontiolahti 57
## 4204 30:37.3 +2.3 30:28.3 2016-2017 Kontiolahti 57
## 4205 30:44.8 +9.8 30:43.8 2016-2017 Kontiolahti 57
## 4206 31:00.5 +25.5 31:00.5 2016-2017 Kontiolahti 57
## 4207 31:02.7 +27.7 30:08.7 2016-2017 Kontiolahti 57
## 4208 31:08.2 +33.2 30:56.2 2016-2017 Kontiolahti 57
## 4209 31:13.4 +38.4 30:25.4 2016-2017 Kontiolahti 57
## 4210 31:13.7 +38.7 30:48.7 2016-2017 Kontiolahti 57
## 4211 31:25.9 +50.9 30:11.9 2016-2017 Kontiolahti 57
## 4212 31:33.2 +58.2 30:15.2 2016-2017 Kontiolahti 57
## 4213 31:33.3 +58.3 30:26.3 2016-2017 Kontiolahti 57
## 4214 31:33.3 +58.3 30:24.3 2016-2017 Kontiolahti 57
## 4215 31:43.0 +1:08.0 30:58.0 2016-2017 Kontiolahti 57
## 4216 31:51.3 +1:16.3 30:47.3 2016-2017 Kontiolahti 57
## 4217 31:51.7 +1:16.7 30:44.7 2016-2017 Kontiolahti 57
## 4218 31:54.1 +1:19.1 30:47.1 2016-2017 Kontiolahti 57
## 4219 31:54.5 +1:19.5 30:15.5 2016-2017 Kontiolahti 57
## 4220 31:59.8 +1:24.8 30:48.8 2016-2017 Kontiolahti 57
## 4221 32:01.3 +1:26.3 30:45.3 2016-2017 Kontiolahti 57
## 4222 32:04.9 +1:29.9 30:54.9 2016-2017 Kontiolahti 57
## 4223 32:05.3 +1:30.3 31:23.3 2016-2017 Kontiolahti 57
## 4224 32:23.0 +1:48.0 31:39.0 2016-2017 Kontiolahti 57
## 4225 32:25.4 +1:50.4 31:22.4 2016-2017 Kontiolahti 57
## 4226 32:28.2 +1:53.2 31:24.2 2016-2017 Kontiolahti 57
## 4227 32:31.5 +1:56.5 31:22.5 2016-2017 Kontiolahti 57
## 4228 32:32.2 +1:57.2 31:31.2 2016-2017 Kontiolahti 57
## 4229 32:39.8 +2:04.8 31:22.8 2016-2017 Kontiolahti 57
## 4230 32:41.5 +2:06.5 32:11.5 2016-2017 Kontiolahti 57
## 4231 32:41.6 +2:06.6 31:22.6 2016-2017 Kontiolahti 57
## 4232 32:55.7 +2:20.7 31:21.7 2016-2017 Kontiolahti 57
## 4233 32:57.2 +2:22.2 32:05.2 2016-2017 Kontiolahti 57
## 4234 32:57.4 +2:22.4 31:35.4 2016-2017 Kontiolahti 57
## 4235 33:04.1 +2:29.1 31:42.1 2016-2017 Kontiolahti 57
## 4236 33:06.1 +2:31.1 31:31.1 2016-2017 Kontiolahti 57
## 4237 33:09.8 +2:34.8 31:33.8 2016-2017 Kontiolahti 57
## 4238 33:11.0 +2:36.0 31:16.0 2016-2017 Kontiolahti 57
## 4239 33:19.6 +2:44.6 31:24.6 2016-2017 Kontiolahti 57
## 4240 33:26.6 +2:51.6 31:40.6 2016-2017 Kontiolahti 57
## 4241 33:29.9 +2:54.9 32:24.9 2016-2017 Kontiolahti 57
## 4242 33:37.8 +3:02.8 31:45.8 2016-2017 Kontiolahti 57
## 4243 33:46.9 +3:11.9 32:25.9 2016-2017 Kontiolahti 57
## 4244 33:59.4 +3:24.4 32:22.4 2016-2017 Kontiolahti 57
## 4245 34:13.4 +3:38.4 33:01.4 2016-2017 Kontiolahti 57
## 4246 34:26.8 +3:51.8 32:16.8 2016-2017 Kontiolahti 57
## 4247 34:27.0 +3:52.0 32:19.0 2016-2017 Kontiolahti 57
## 4248 34:31.4 +3:56.4 32:32.4 2016-2017 Kontiolahti 57
## 4249 34:43.5 +4:08.5 32:34.5 2016-2017 Kontiolahti 57
## 4250 35:01.5 +4:26.5 32:49.5 2016-2017 Kontiolahti 57
## 4251 35:22.3 +4:47.3 33:41.3 2016-2017 Kontiolahti 57
## 4252 35:29.9 +4:54.9 33:17.9 2016-2017 Kontiolahti 57
## 4253 35:32.8 +4:57.8 33:26.8 2016-2017 Kontiolahti 57
## 4254 36:44.1 +6:09.1 35:12.1 2016-2017 Kontiolahti 57
## 4255 36:51.3 +6:16.3 34:36.3 2016-2017 Kontiolahti 57
## 4256 2016-2017 Kontiolahti 57
## 4257 2016-2017 Kontiolahti 57
## 4258 2016-2017 Kontiolahti 57
## 4259 2016-2017 Kontiolahti 57
## 4260 2016-2017 Kontiolahti 57
## 4261 2016-2017 Kontiolahti 57
## 4262 22:17.0 <NA> 2016-2017 Kontiolahti 58
## 4263 22:17.6 +0.6 <NA> 2016-2017 Kontiolahti 58
## 4264 22:26.4 +9.4 <NA> 2016-2017 Kontiolahti 58
## 4265 22:29.1 +12.1 <NA> 2016-2017 Kontiolahti 58
## 4266 22:39.3 +22.3 <NA> 2016-2017 Kontiolahti 58
## 4267 22:40.0 +23.0 <NA> 2016-2017 Kontiolahti 58
## 4268 22:42.1 +25.1 <NA> 2016-2017 Kontiolahti 58
## 4269 22:47.2 +30.2 <NA> 2016-2017 Kontiolahti 58
## 4270 22:59.0 +42.0 <NA> 2016-2017 Kontiolahti 58
## 4271 22:59.3 +42.3 <NA> 2016-2017 Kontiolahti 58
## 4272 23:00.8 +43.8 <NA> 2016-2017 Kontiolahti 58
## 4273 23:02.4 +45.4 <NA> 2016-2017 Kontiolahti 58
## 4274 23:04.9 +47.9 <NA> 2016-2017 Kontiolahti 58
## 4275 23:08.6 +51.6 <NA> 2016-2017 Kontiolahti 58
## 4276 23:10.8 +53.8 <NA> 2016-2017 Kontiolahti 58
## 4277 23:18.1 +1:01.1 <NA> 2016-2017 Kontiolahti 58
## 4278 23:20.2 +1:03.2 <NA> 2016-2017 Kontiolahti 58
## 4279 23:21.2 +1:04.2 <NA> 2016-2017 Kontiolahti 58
## 4280 23:21.4 +1:04.4 <NA> 2016-2017 Kontiolahti 58
## 4281 23:21.7 +1:04.7 <NA> 2016-2017 Kontiolahti 58
## 4282 23:23.8 +1:06.8 <NA> 2016-2017 Kontiolahti 58
## 4283 23:23.8 +1:06.8 <NA> 2016-2017 Kontiolahti 58
## 4284 23:24.3 +1:07.3 <NA> 2016-2017 Kontiolahti 58
## 4285 23:26.0 +1:09.0 <NA> 2016-2017 Kontiolahti 58
## 4286 23:26.4 +1:09.4 <NA> 2016-2017 Kontiolahti 58
## 4287 23:27.4 +1:10.4 <NA> 2016-2017 Kontiolahti 58
## 4288 23:28.3 +1:11.3 <NA> 2016-2017 Kontiolahti 58
## 4289 23:28.7 +1:11.7 <NA> 2016-2017 Kontiolahti 58
## 4290 23:31.3 +1:14.3 <NA> 2016-2017 Kontiolahti 58
## 4291 23:33.0 +1:16.0 <NA> 2016-2017 Kontiolahti 58
## 4292 23:33.6 +1:16.6 <NA> 2016-2017 Kontiolahti 58
## 4293 23:35.1 +1:18.1 <NA> 2016-2017 Kontiolahti 58
## 4294 23:36.2 +1:19.2 <NA> 2016-2017 Kontiolahti 58
## 4295 23:37.7 +1:20.7 <NA> 2016-2017 Kontiolahti 58
## 4296 23:38.5 +1:21.5 <NA> 2016-2017 Kontiolahti 58
## 4297 23:39.4 +1:22.4 <NA> 2016-2017 Kontiolahti 58
## 4298 23:40.5 +1:23.5 <NA> 2016-2017 Kontiolahti 58
## 4299 23:45.4 +1:28.4 <NA> 2016-2017 Kontiolahti 58
## 4300 23:49.0 +1:32.0 <NA> 2016-2017 Kontiolahti 58
## 4301 23:50.5 +1:33.5 <NA> 2016-2017 Kontiolahti 58
## 4302 23:52.0 +1:35.0 <NA> 2016-2017 Kontiolahti 58
## 4303 23:53.0 +1:36.0 <NA> 2016-2017 Kontiolahti 58
## 4304 23:53.8 +1:36.8 <NA> 2016-2017 Kontiolahti 58
## 4305 23:55.5 +1:38.5 <NA> 2016-2017 Kontiolahti 58
## 4306 23:58.4 +1:41.4 <NA> 2016-2017 Kontiolahti 58
## 4307 24:03.1 +1:46.1 <NA> 2016-2017 Kontiolahti 58
## 4308 24:08.9 +1:51.9 <NA> 2016-2017 Kontiolahti 58
## 4309 24:09.5 +1:52.5 <NA> 2016-2017 Kontiolahti 58
## 4310 24:11.8 +1:54.8 <NA> 2016-2017 Kontiolahti 58
## 4311 24:12.0 +1:55.0 <NA> 2016-2017 Kontiolahti 58
## 4312 24:15.6 +1:58.6 <NA> 2016-2017 Kontiolahti 58
## 4313 24:22.7 +2:05.7 <NA> 2016-2017 Kontiolahti 58
## 4314 24:23.1 +2:06.1 <NA> 2016-2017 Kontiolahti 58
## 4315 24:25.3 +2:08.3 <NA> 2016-2017 Kontiolahti 58
## 4316 24:26.2 +2:09.2 <NA> 2016-2017 Kontiolahti 58
## 4317 24:27.0 +2:10.0 <NA> 2016-2017 Kontiolahti 58
## 4318 24:28.5 +2:11.5 <NA> 2016-2017 Kontiolahti 58
## 4319 24:29.1 +2:12.1 <NA> 2016-2017 Kontiolahti 58
## 4320 24:32.1 +2:15.1 <NA> 2016-2017 Kontiolahti 58
## 4321 24:32.9 +2:15.9 <NA> 2016-2017 Kontiolahti 58
## 4322 24:33.0 +2:16.0 <NA> 2016-2017 Kontiolahti 58
## 4323 24:33.5 +2:16.5 <NA> 2016-2017 Kontiolahti 58
## 4324 24:35.0 +2:18.0 <NA> 2016-2017 Kontiolahti 58
## 4325 24:36.1 +2:19.1 <NA> 2016-2017 Kontiolahti 58
## 4326 24:37.1 +2:20.1 <NA> 2016-2017 Kontiolahti 58
## 4327 24:38.5 +2:21.5 <NA> 2016-2017 Kontiolahti 58
## 4328 24:38.9 +2:21.9 <NA> 2016-2017 Kontiolahti 58
## 4329 24:40.5 +2:23.5 <NA> 2016-2017 Kontiolahti 58
## 4330 24:41.4 +2:24.4 <NA> 2016-2017 Kontiolahti 58
## 4331 24:46.3 +2:29.3 <NA> 2016-2017 Kontiolahti 58
## 4332 24:49.1 +2:32.1 <NA> 2016-2017 Kontiolahti 58
## 4333 24:52.2 +2:35.2 <NA> 2016-2017 Kontiolahti 58
## 4334 24:54.9 +2:37.9 <NA> 2016-2017 Kontiolahti 58
## 4335 24:57.6 +2:40.6 <NA> 2016-2017 Kontiolahti 58
## 4336 24:59.3 +2:42.3 <NA> 2016-2017 Kontiolahti 58
## 4337 24:59.6 +2:42.6 <NA> 2016-2017 Kontiolahti 58
## 4338 25:01.3 +2:44.3 <NA> 2016-2017 Kontiolahti 58
## 4339 25:01.6 +2:44.6 <NA> 2016-2017 Kontiolahti 58
## 4340 25:01.9 +2:44.9 <NA> 2016-2017 Kontiolahti 58
## 4341 25:07.0 +2:50.0 <NA> 2016-2017 Kontiolahti 58
## 4342 25:07.8 +2:50.8 <NA> 2016-2017 Kontiolahti 58
## 4343 25:08.2 +2:51.2 <NA> 2016-2017 Kontiolahti 58
## 4344 25:09.1 +2:52.1 <NA> 2016-2017 Kontiolahti 58
## 4345 25:19.5 +3:02.5 <NA> 2016-2017 Kontiolahti 58
## 4346 25:26.0 +3:09.0 <NA> 2016-2017 Kontiolahti 58
## 4347 25:27.5 +3:10.5 <NA> 2016-2017 Kontiolahti 58
## 4348 25:27.8 +3:10.8 <NA> 2016-2017 Kontiolahti 58
## 4349 25:28.9 +3:11.9 <NA> 2016-2017 Kontiolahti 58
## 4350 25:29.9 +3:12.9 <NA> 2016-2017 Kontiolahti 58
## 4351 25:31.9 +3:14.9 <NA> 2016-2017 Kontiolahti 58
## 4352 25:34.6 +3:17.6 <NA> 2016-2017 Kontiolahti 58
## 4353 25:37.9 +3:20.9 <NA> 2016-2017 Kontiolahti 58
## 4354 25:42.4 +3:25.4 <NA> 2016-2017 Kontiolahti 58
## 4355 25:47.4 +3:30.4 <NA> 2016-2017 Kontiolahti 58
## 4356 25:48.7 +3:31.7 <NA> 2016-2017 Kontiolahti 58
## 4357 25:51.5 +3:34.5 <NA> 2016-2017 Kontiolahti 58
## 4358 25:53.7 +3:36.7 <NA> 2016-2017 Kontiolahti 58
## 4359 26:00.6 +3:43.6 <NA> 2016-2017 Kontiolahti 58
## 4360 26:32.2 +4:15.2 <NA> 2016-2017 Kontiolahti 58
## 4361 27:03.6 +4:46.6 <NA> 2016-2017 Kontiolahti 58
## 4362 27:25.9 +5:08.9 <NA> 2016-2017 Kontiolahti 58
## 4363 36:18.9 <NA> 2016-2017 Nove_Mesto 59
## 4364 36:27.2 +8.3 <NA> 2016-2017 Nove_Mesto 59
## 4365 36:28.3 +9.4 <NA> 2016-2017 Nove_Mesto 59
## 4366 36:28.6 +9.7 <NA> 2016-2017 Nove_Mesto 59
## 4367 36:29.1 +10.2 <NA> 2016-2017 Nove_Mesto 59
## 4368 36:29.9 +11.0 <NA> 2016-2017 Nove_Mesto 59
## 4369 36:30.2 +11.3 <NA> 2016-2017 Nove_Mesto 59
## 4370 36:32.6 +13.7 <NA> 2016-2017 Nove_Mesto 59
## 4371 36:38.7 +19.8 <NA> 2016-2017 Nove_Mesto 59
## 4372 36:47.7 +28.8 <NA> 2016-2017 Nove_Mesto 59
## 4373 36:48.8 +29.9 <NA> 2016-2017 Nove_Mesto 59
## 4374 36:58.9 +40.0 <NA> 2016-2017 Nove_Mesto 59
## 4375 37:00.7 +41.8 <NA> 2016-2017 Nove_Mesto 59
## 4376 37:04.3 +45.4 <NA> 2016-2017 Nove_Mesto 59
## 4377 37:12.9 +54.0 <NA> 2016-2017 Nove_Mesto 59
## 4378 37:15.4 +56.5 <NA> 2016-2017 Nove_Mesto 59
## 4379 37:16.1 +57.2 <NA> 2016-2017 Nove_Mesto 59
## 4380 37:17.3 +58.4 <NA> 2016-2017 Nove_Mesto 59
## 4381 37:25.8 +1:06.9 <NA> 2016-2017 Nove_Mesto 59
## 4382 37:26.0 +1:07.1 <NA> 2016-2017 Nove_Mesto 59
## 4383 37:36.0 +1:17.1 <NA> 2016-2017 Nove_Mesto 59
## 4384 37:44.6 +1:25.7 <NA> 2016-2017 Nove_Mesto 59
## 4385 37:48.3 +1:29.4 <NA> 2016-2017 Nove_Mesto 59
## 4386 37:54.7 +1:35.8 <NA> 2016-2017 Nove_Mesto 59
## 4387 38:01.7 +1:42.8 <NA> 2016-2017 Nove_Mesto 59
## 4388 38:12.1 +1:53.2 <NA> 2016-2017 Nove_Mesto 59
## 4389 38:19.2 +2:00.3 <NA> 2016-2017 Nove_Mesto 59
## 4390 38:33.6 +2:14.7 <NA> 2016-2017 Nove_Mesto 59
## 4391 38:36.6 +2:17.7 <NA> 2016-2017 Nove_Mesto 59
## 4392 38:49.9 +2:31.0 <NA> 2016-2017 Nove_Mesto 59
## 4393 32:53.6 32:53.6 2016-2017 Nove_Mesto 60
## 4394 33:23.8 +30.2 33:21.8 2016-2017 Nove_Mesto 60
## 4395 33:31.9 +38.3 32:49.9 2016-2017 Nove_Mesto 60
## 4396 33:32.0 +38.4 32:47.0 2016-2017 Nove_Mesto 60
## 4397 33:56.3 +1:02.7 33:45.3 2016-2017 Nove_Mesto 60
## 4398 33:57.2 +1:03.6 32:48.2 2016-2017 Nove_Mesto 60
## 4399 33:57.4 +1:03.8 33:41.4 2016-2017 Nove_Mesto 60
## 4400 34:14.5 +1:20.9 33:05.5 2016-2017 Nove_Mesto 60
## 4401 34:15.7 +1:22.1 33:27.7 2016-2017 Nove_Mesto 60
## 4402 34:20.9 +1:27.3 33:13.9 2016-2017 Nove_Mesto 60
## 4403 34:21.9 +1:28.3 32:52.9 2016-2017 Nove_Mesto 60
## 4404 34:24.5 +1:30.9 33:44.5 2016-2017 Nove_Mesto 60
## 4405 34:34.1 +1:40.5 34:05.1 2016-2017 Nove_Mesto 60
## 4406 34:34.6 +1:41.0 33:59.6 2016-2017 Nove_Mesto 60
## 4407 34:34.7 +1:41.1 33:31.7 2016-2017 Nove_Mesto 60
## 4408 34:38.6 +1:45.0 34:08.6 2016-2017 Nove_Mesto 60
## 4409 34:39.6 +1:46.0 33:49.6 2016-2017 Nove_Mesto 60
## 4410 34:42.8 +1:49.2 34:04.8 2016-2017 Nove_Mesto 60
## 4411 34:48.4 +1:54.8 33:16.4 2016-2017 Nove_Mesto 60
## 4412 34:48.5 +1:54.9 34:01.5 2016-2017 Nove_Mesto 60
## 4413 34:56.1 +2:02.5 34:37.1 2016-2017 Nove_Mesto 60
## 4414 34:57.0 +2:03.4 34:41.0 2016-2017 Nove_Mesto 60
## 4415 34:58.5 +2:04.9 33:44.5 2016-2017 Nove_Mesto 60
## 4416 34:58.5 +2:04.9 34:17.5 2016-2017 Nove_Mesto 60
## 4417 34:59.6 +2:06.0 34:10.6 2016-2017 Nove_Mesto 60
## 4418 35:02.0 +2:08.4 34:30.0 2016-2017 Nove_Mesto 60
## 4419 35:02.4 +2:08.8 34:05.4 2016-2017 Nove_Mesto 60
## 4420 35:11.2 +2:17.6 34:06.2 2016-2017 Nove_Mesto 60
## 4421 35:27.5 +2:33.9 34:24.5 2016-2017 Nove_Mesto 60
## 4422 35:29.6 +2:36.0 34:18.6 2016-2017 Nove_Mesto 60
## 4423 35:30.5 +2:36.9 33:49.5 2016-2017 Nove_Mesto 60
## 4424 35:30.9 +2:37.3 33:54.9 2016-2017 Nove_Mesto 60
## 4425 35:32.3 +2:38.7 34:20.3 2016-2017 Nove_Mesto 60
## 4426 35:49.3 +2:55.7 34:06.3 2016-2017 Nove_Mesto 60
## 4427 35:59.1 +3:05.5 34:44.1 2016-2017 Nove_Mesto 60
## 4428 36:07.1 +3:13.5 34:33.1 2016-2017 Nove_Mesto 60
## 4429 36:07.4 +3:13.8 34:44.4 2016-2017 Nove_Mesto 60
## 4430 36:09.8 +3:16.2 34:45.8 2016-2017 Nove_Mesto 60
## 4431 36:24.5 +3:30.9 34:50.5 2016-2017 Nove_Mesto 60
## 4432 36:24.8 +3:31.2 35:37.8 2016-2017 Nove_Mesto 60
## 4433 36:26.4 +3:32.8 34:53.4 2016-2017 Nove_Mesto 60
## 4434 36:31.9 +3:38.3 35:03.9 2016-2017 Nove_Mesto 60
## 4435 36:43.3 +3:49.7 35:14.3 2016-2017 Nove_Mesto 60
## 4436 36:45.0 +3:51.4 34:58.0 2016-2017 Nove_Mesto 60
## 4437 36:51.2 +3:57.6 35:45.2 2016-2017 Nove_Mesto 60
## 4438 36:55.8 +4:02.2 35:38.8 2016-2017 Nove_Mesto 60
## 4439 37:01.5 +4:07.9 34:55.5 2016-2017 Nove_Mesto 60
## 4440 37:02.2 +4:08.6 35:49.2 2016-2017 Nove_Mesto 60
## 4441 37:23.3 +4:29.7 36:15.3 2016-2017 Nove_Mesto 60
## 4442 38:01.0 +5:07.4 37:34.0 2016-2017 Nove_Mesto 60
## 4443 38:01.5 +5:07.9 36:30.5 2016-2017 Nove_Mesto 60
## 4444 38:24.2 +5:30.6 36:36.2 2016-2017 Nove_Mesto 60
## 4445 38:46.5 +5:52.9 37:01.5 2016-2017 Nove_Mesto 60
## 4446 39:16.3 +6:22.7 37:20.3 2016-2017 Nove_Mesto 60
## 4447 39:27.7 +6:34.1 37:22.7 2016-2017 Nove_Mesto 60
## 4448 40:05.5 +7:11.9 38:19.5 2016-2017 Nove_Mesto 60
## 4449 40:10.8 +7:17.2 38:09.8 2016-2017 Nove_Mesto 60
## 4450 2016-2017 Nove_Mesto 60
## 4451 2016-2017 Nove_Mesto 60
## 4452 2016-2017 Nove_Mesto 60
## 4453 23:48.0 <NA> 2016-2017 Nove_Mesto 61
## 4454 23:49.6 +1.6 <NA> 2016-2017 Nove_Mesto 61
## 4455 23:54.4 +6.4 <NA> 2016-2017 Nove_Mesto 61
## 4456 23:58.5 +10.5 <NA> 2016-2017 Nove_Mesto 61
## 4457 24:03.8 +15.8 <NA> 2016-2017 Nove_Mesto 61
## 4458 24:04.3 +16.3 <NA> 2016-2017 Nove_Mesto 61
## 4459 24:06.8 +18.8 <NA> 2016-2017 Nove_Mesto 61
## 4460 24:14.5 +26.5 <NA> 2016-2017 Nove_Mesto 61
## 4461 24:16.6 +28.6 <NA> 2016-2017 Nove_Mesto 61
## 4462 24:18.1 +30.1 <NA> 2016-2017 Nove_Mesto 61
## 4463 24:20.2 +32.2 <NA> 2016-2017 Nove_Mesto 61
## 4464 24:23.1 +35.1 <NA> 2016-2017 Nove_Mesto 61
## 4465 24:26.2 +38.2 <NA> 2016-2017 Nove_Mesto 61
## 4466 24:27.9 +39.9 <NA> 2016-2017 Nove_Mesto 61
## 4467 24:29.1 +41.1 <NA> 2016-2017 Nove_Mesto 61
## 4468 24:30.2 +42.2 <NA> 2016-2017 Nove_Mesto 61
## 4469 24:32.9 +44.9 <NA> 2016-2017 Nove_Mesto 61
## 4470 24:34.5 +46.5 <NA> 2016-2017 Nove_Mesto 61
## 4471 24:35.1 +47.1 <NA> 2016-2017 Nove_Mesto 61
## 4472 24:35.5 +47.5 <NA> 2016-2017 Nove_Mesto 61
## 4473 24:37.0 +49.0 <NA> 2016-2017 Nove_Mesto 61
## 4474 24:38.2 +50.2 <NA> 2016-2017 Nove_Mesto 61
## 4475 24:45.2 +57.2 <NA> 2016-2017 Nove_Mesto 61
## 4476 24:50.5 +1:02.5 <NA> 2016-2017 Nove_Mesto 61
## 4477 24:50.9 +1:02.9 <NA> 2016-2017 Nove_Mesto 61
## 4478 24:53.3 +1:05.3 <NA> 2016-2017 Nove_Mesto 61
## 4479 24:53.5 +1:05.5 <NA> 2016-2017 Nove_Mesto 61
## 4480 24:54.7 +1:06.7 <NA> 2016-2017 Nove_Mesto 61
## 4481 24:56.2 +1:08.2 <NA> 2016-2017 Nove_Mesto 61
## 4482 24:56.7 +1:08.7 <NA> 2016-2017 Nove_Mesto 61
## 4483 24:57.2 +1:09.2 <NA> 2016-2017 Nove_Mesto 61
## 4484 24:58.6 +1:10.6 <NA> 2016-2017 Nove_Mesto 61
## 4485 24:59.7 +1:11.7 <NA> 2016-2017 Nove_Mesto 61
## 4486 25:00.8 +1:12.8 <NA> 2016-2017 Nove_Mesto 61
## 4487 25:01.5 +1:13.5 <NA> 2016-2017 Nove_Mesto 61
## 4488 25:03.1 +1:15.1 <NA> 2016-2017 Nove_Mesto 61
## 4489 25:04.5 +1:16.5 <NA> 2016-2017 Nove_Mesto 61
## 4490 25:10.9 +1:22.9 <NA> 2016-2017 Nove_Mesto 61
## 4491 25:12.2 +1:24.2 <NA> 2016-2017 Nove_Mesto 61
## 4492 25:15.9 +1:27.9 <NA> 2016-2017 Nove_Mesto 61
## 4493 25:16.9 +1:28.9 <NA> 2016-2017 Nove_Mesto 61
## 4494 25:17.2 +1:29.2 <NA> 2016-2017 Nove_Mesto 61
## 4495 25:19.4 +1:31.4 <NA> 2016-2017 Nove_Mesto 61
## 4496 25:19.9 +1:31.9 <NA> 2016-2017 Nove_Mesto 61
## 4497 25:20.5 +1:32.5 <NA> 2016-2017 Nove_Mesto 61
## 4498 25:22.0 +1:34.0 <NA> 2016-2017 Nove_Mesto 61
## 4499 25:22.1 +1:34.1 <NA> 2016-2017 Nove_Mesto 61
## 4500 25:23.6 +1:35.6 <NA> 2016-2017 Nove_Mesto 61
## 4501 25:29.4 +1:41.4 <NA> 2016-2017 Nove_Mesto 61
## 4502 25:31.1 +1:43.1 <NA> 2016-2017 Nove_Mesto 61
## 4503 25:33.2 +1:45.2 <NA> 2016-2017 Nove_Mesto 61
## 4504 25:34.4 +1:46.4 <NA> 2016-2017 Nove_Mesto 61
## 4505 25:35.3 +1:47.3 <NA> 2016-2017 Nove_Mesto 61
## 4506 25:36.1 +1:48.1 <NA> 2016-2017 Nove_Mesto 61
## 4507 25:40.8 +1:52.8 <NA> 2016-2017 Nove_Mesto 61
## 4508 25:43.8 +1:55.8 <NA> 2016-2017 Nove_Mesto 61
## 4509 25:48.0 +2:00.0 <NA> 2016-2017 Nove_Mesto 61
## 4510 25:49.2 +2:01.2 <NA> 2016-2017 Nove_Mesto 61
## 4511 25:52.5 +2:04.5 <NA> 2016-2017 Nove_Mesto 61
## 4512 25:54.2 +2:06.2 <NA> 2016-2017 Nove_Mesto 61
## 4513 25:55.8 +2:07.8 <NA> 2016-2017 Nove_Mesto 61
## 4514 25:57.9 +2:09.9 <NA> 2016-2017 Nove_Mesto 61
## 4515 25:58.5 +2:10.5 <NA> 2016-2017 Nove_Mesto 61
## 4516 25:59.3 +2:11.3 <NA> 2016-2017 Nove_Mesto 61
## 4517 26:02.5 +2:14.5 <NA> 2016-2017 Nove_Mesto 61
## 4518 26:03.4 +2:15.4 <NA> 2016-2017 Nove_Mesto 61
## 4519 26:05.7 +2:17.7 <NA> 2016-2017 Nove_Mesto 61
## 4520 26:05.9 +2:17.9 <NA> 2016-2017 Nove_Mesto 61
## 4521 26:07.0 +2:19.0 <NA> 2016-2017 Nove_Mesto 61
## 4522 26:10.7 +2:22.7 <NA> 2016-2017 Nove_Mesto 61
## 4523 26:16.6 +2:28.6 <NA> 2016-2017 Nove_Mesto 61
## 4524 26:17.9 +2:29.9 <NA> 2016-2017 Nove_Mesto 61
## 4525 26:20.3 +2:32.3 <NA> 2016-2017 Nove_Mesto 61
## 4526 26:21.2 +2:33.2 <NA> 2016-2017 Nove_Mesto 61
## 4527 26:24.6 +2:36.6 <NA> 2016-2017 Nove_Mesto 61
## 4528 26:26.3 +2:38.3 <NA> 2016-2017 Nove_Mesto 61
## 4529 26:28.9 +2:40.9 <NA> 2016-2017 Nove_Mesto 61
## 4530 26:29.5 +2:41.5 <NA> 2016-2017 Nove_Mesto 61
## 4531 26:30.6 +2:42.6 <NA> 2016-2017 Nove_Mesto 61
## 4532 26:31.5 +2:43.5 <NA> 2016-2017 Nove_Mesto 61
## 4533 26:35.0 +2:47.0 <NA> 2016-2017 Nove_Mesto 61
## 4534 26:39.9 +2:51.9 <NA> 2016-2017 Nove_Mesto 61
## 4535 26:40.8 +2:52.8 <NA> 2016-2017 Nove_Mesto 61
## 4536 26:41.9 +2:53.9 <NA> 2016-2017 Nove_Mesto 61
## 4537 26:46.8 +2:58.8 <NA> 2016-2017 Nove_Mesto 61
## 4538 26:47.2 +2:59.2 <NA> 2016-2017 Nove_Mesto 61
## 4539 26:47.7 +2:59.7 <NA> 2016-2017 Nove_Mesto 61
## 4540 26:51.2 +3:03.2 <NA> 2016-2017 Nove_Mesto 61
## 4541 26:52.1 +3:04.1 <NA> 2016-2017 Nove_Mesto 61
## 4542 26:53.6 +3:05.6 <NA> 2016-2017 Nove_Mesto 61
## 4543 26:58.0 +3:10.0 <NA> 2016-2017 Nove_Mesto 61
## 4544 27:04.8 +3:16.8 <NA> 2016-2017 Nove_Mesto 61
## 4545 27:11.1 +3:23.1 <NA> 2016-2017 Nove_Mesto 61
## 4546 27:15.0 +3:27.0 <NA> 2016-2017 Nove_Mesto 61
## 4547 27:15.1 +3:27.1 <NA> 2016-2017 Nove_Mesto 61
## 4548 27:30.2 +3:42.2 <NA> 2016-2017 Nove_Mesto 61
## 4549 27:41.5 +3:53.5 <NA> 2016-2017 Nove_Mesto 61
## 4550 28:05.3 +4:17.3 <NA> 2016-2017 Nove_Mesto 61
## 4551 28:06.9 +4:18.9 <NA> 2016-2017 Nove_Mesto 61
## 4552 28:23.0 +4:35.0 <NA> 2016-2017 Nove_Mesto 61
## 4553 28:26.3 +4:38.3 <NA> 2016-2017 Nove_Mesto 61
## 4554 <NA> 2016-2017 Nove_Mesto 61
## 4555 <NA> 2016-2017 Nove_Mesto 61
## 4556 <NA> 2016-2017 Nove_Mesto 61
## 4557 38:30.9 <NA> 2016-2017 Oberhof 62
## 4558 38:31.3 +0.4 <NA> 2016-2017 Oberhof 62
## 4559 38:31.3 +0.4 <NA> 2016-2017 Oberhof 62
## 4560 38:44.1 +13.2 <NA> 2016-2017 Oberhof 62
## 4561 38:50.4 +19.5 <NA> 2016-2017 Oberhof 62
## 4562 39:18.7 +47.8 <NA> 2016-2017 Oberhof 62
## 4563 39:23.7 +52.8 <NA> 2016-2017 Oberhof 62
## 4564 39:24.0 +53.1 <NA> 2016-2017 Oberhof 62
## 4565 39:29.8 +58.9 <NA> 2016-2017 Oberhof 62
## 4566 39:31.7 +1:00.8 <NA> 2016-2017 Oberhof 62
## 4567 39:31.9 +1:01.0 <NA> 2016-2017 Oberhof 62
## 4568 39:39.6 +1:08.7 <NA> 2016-2017 Oberhof 62
## 4569 39:44.2 +1:13.3 <NA> 2016-2017 Oberhof 62
## 4570 39:55.0 +1:24.1 <NA> 2016-2017 Oberhof 62
## 4571 40:06.2 +1:35.3 <NA> 2016-2017 Oberhof 62
## 4572 40:08.4 +1:37.5 <NA> 2016-2017 Oberhof 62
## 4573 40:09.5 +1:38.6 <NA> 2016-2017 Oberhof 62
## 4574 40:10.2 +1:39.3 <NA> 2016-2017 Oberhof 62
## 4575 40:10.8 +1:39.9 <NA> 2016-2017 Oberhof 62
## 4576 40:11.5 +1:40.6 <NA> 2016-2017 Oberhof 62
## 4577 40:12.0 +1:41.1 <NA> 2016-2017 Oberhof 62
## 4578 40:41.6 +2:10.7 <NA> 2016-2017 Oberhof 62
## 4579 40:46.1 +2:15.2 <NA> 2016-2017 Oberhof 62
## 4580 40:48.4 +2:17.5 <NA> 2016-2017 Oberhof 62
## 4581 40:51.2 +2:20.3 <NA> 2016-2017 Oberhof 62
## 4582 41:07.0 +2:36.1 <NA> 2016-2017 Oberhof 62
## 4583 41:14.2 +2:43.3 <NA> 2016-2017 Oberhof 62
## 4584 41:21.9 +2:51.0 <NA> 2016-2017 Oberhof 62
## 4585 42:31.3 +4:00.4 <NA> 2016-2017 Oberhof 62
## 4586 <NA> 2016-2017 Oberhof 62
## 4587 36:45.7 35:54.7 2016-2017 Oberhof 63
## 4588 37:55.6 +1:09.9 36:44.6 2016-2017 Oberhof 63
## 4589 38:18.1 +1:32.4 37:38.1 2016-2017 Oberhof 63
## 4590 38:18.3 +1:32.6 37:30.3 2016-2017 Oberhof 63
## 4591 38:21.8 +1:36.1 37:40.8 2016-2017 Oberhof 63
## 4592 38:26.4 +1:40.7 37:10.4 2016-2017 Oberhof 63
## 4593 38:39.7 +1:54.0 38:28.7 2016-2017 Oberhof 63
## 4594 38:41.0 +1:55.3 37:20.0 2016-2017 Oberhof 63
## 4595 38:41.0 +1:55.3 36:13.0 2016-2017 Oberhof 63
## 4596 38:49.6 +2:03.9 37:43.6 2016-2017 Oberhof 63
## 4597 38:53.2 +2:07.5 38:01.2 2016-2017 Oberhof 63
## 4598 38:53.6 +2:07.9 38:13.6 2016-2017 Oberhof 63
## 4599 38:53.9 +2:08.2 37:13.9 2016-2017 Oberhof 63
## 4600 39:04.3 +2:18.6 37:11.3 2016-2017 Oberhof 63
## 4601 39:08.2 +2:22.5 37:53.2 2016-2017 Oberhof 63
## 4602 39:14.6 +2:28.9 37:39.6 2016-2017 Oberhof 63
## 4603 39:16.1 +2:30.4 38:18.1 2016-2017 Oberhof 63
## 4604 39:16.5 +2:30.8 38:14.5 2016-2017 Oberhof 63
## 4605 39:34.7 +2:49.0 39:34.7 2016-2017 Oberhof 63
## 4606 39:34.7 +2:49.0 38:48.7 2016-2017 Oberhof 63
## 4607 39:35.8 +2:50.1 38:17.8 2016-2017 Oberhof 63
## 4608 39:36.0 +2:50.3 38:00.0 2016-2017 Oberhof 63
## 4609 39:37.6 +2:51.9 37:33.6 2016-2017 Oberhof 63
## 4610 39:39.8 +2:54.1 37:26.8 2016-2017 Oberhof 63
## 4611 39:39.9 +2:54.2 38:00.9 2016-2017 Oberhof 63
## 4612 40:04.6 +3:18.9 38:12.6 2016-2017 Oberhof 63
## 4613 40:10.3 +3:24.6 38:22.3 2016-2017 Oberhof 63
## 4614 40:23.1 +3:37.4 38:57.1 2016-2017 Oberhof 63
## 4615 40:24.8 +3:39.1 39:14.8 2016-2017 Oberhof 63
## 4616 40:47.0 +4:01.3 39:45.0 2016-2017 Oberhof 63
## 4617 40:56.6 +4:10.9 39:07.6 2016-2017 Oberhof 63
## 4618 41:08.4 +4:22.7 39:13.4 2016-2017 Oberhof 63
## 4619 41:09.3 +4:23.6 39:54.3 2016-2017 Oberhof 63
## 4620 41:15.5 +4:29.8 39:00.5 2016-2017 Oberhof 63
## 4621 41:20.8 +4:35.1 39:52.8 2016-2017 Oberhof 63
## 4622 41:22.5 +4:36.8 38:57.5 2016-2017 Oberhof 63
## 4623 41:22.9 +4:37.2 39:34.9 2016-2017 Oberhof 63
## 4624 41:36.6 +4:50.9 39:02.6 2016-2017 Oberhof 63
## 4625 41:36.8 +4:51.1 39:08.8 2016-2017 Oberhof 63
## 4626 42:10.6 +5:24.9 40:27.6 2016-2017 Oberhof 63
## 4627 42:12.0 +5:26.3 40:08.0 2016-2017 Oberhof 63
## 4628 42:13.8 +5:28.1 40:22.8 2016-2017 Oberhof 63
## 4629 42:14.3 +5:28.6 39:51.3 2016-2017 Oberhof 63
## 4630 42:28.8 +5:43.1 40:31.8 2016-2017 Oberhof 63
## 4631 42:31.4 +5:45.7 40:19.4 2016-2017 Oberhof 63
## 4632 42:43.4 +5:57.7 40:29.4 2016-2017 Oberhof 63
## 4633 42:46.2 +6:00.5 40:15.2 2016-2017 Oberhof 63
## 4634 43:11.3 +6:25.6 41:37.3 2016-2017 Oberhof 63
## 4635 43:26.8 +6:41.1 41:09.8 2016-2017 Oberhof 63
## 4636 43:46.5 +7:00.8 42:04.5 2016-2017 Oberhof 63
## 4637 44:00.8 +7:15.1 42:04.8 2016-2017 Oberhof 63
## 4638 44:02.5 +7:16.8 41:37.5 2016-2017 Oberhof 63
## 4639 44:26.6 +7:40.9 42:47.6 2016-2017 Oberhof 63
## 4640 44:31.2 +7:45.5 42:14.2 2016-2017 Oberhof 63
## 4641 46:31.6 +9:45.9 44:04.6 2016-2017 Oberhof 63
## 4642 47:01.8 +10:16.1 44:42.8 2016-2017 Oberhof 63
## 4643 2016-2017 Oberhof 63
## 4644 2016-2017 Oberhof 63
## 4645 2016-2017 Oberhof 63
## 4646 2016-2017 Oberhof 63
## 4647 27:26.8 <NA> 2016-2017 Oberhof 64
## 4648 27:37.6 +10.8 <NA> 2016-2017 Oberhof 64
## 4649 28:07.1 +40.3 <NA> 2016-2017 Oberhof 64
## 4650 28:07.2 +40.4 <NA> 2016-2017 Oberhof 64
## 4651 28:08.0 +41.2 <NA> 2016-2017 Oberhof 64
## 4652 28:13.0 +46.2 <NA> 2016-2017 Oberhof 64
## 4653 28:15.2 +48.4 <NA> 2016-2017 Oberhof 64
## 4654 28:18.1 +51.3 <NA> 2016-2017 Oberhof 64
## 4655 28:18.6 +51.8 <NA> 2016-2017 Oberhof 64
## 4656 28:25.2 +58.4 <NA> 2016-2017 Oberhof 64
## 4657 28:28.5 +1:01.7 <NA> 2016-2017 Oberhof 64
## 4658 28:28.5 +1:01.7 <NA> 2016-2017 Oberhof 64
## 4659 28:32.3 +1:05.5 <NA> 2016-2017 Oberhof 64
## 4660 28:36.3 +1:09.5 <NA> 2016-2017 Oberhof 64
## 4661 28:37.6 +1:10.8 <NA> 2016-2017 Oberhof 64
## 4662 28:41.6 +1:14.8 <NA> 2016-2017 Oberhof 64
## 4663 28:41.7 +1:14.9 <NA> 2016-2017 Oberhof 64
## 4664 28:42.4 +1:15.6 <NA> 2016-2017 Oberhof 64
## 4665 28:45.2 +1:18.4 <NA> 2016-2017 Oberhof 64
## 4666 28:47.3 +1:20.5 <NA> 2016-2017 Oberhof 64
## 4667 28:53.1 +1:26.3 <NA> 2016-2017 Oberhof 64
## 4668 28:54.5 +1:27.7 <NA> 2016-2017 Oberhof 64
## 4669 29:00.5 +1:33.7 <NA> 2016-2017 Oberhof 64
## 4670 29:01.3 +1:34.5 <NA> 2016-2017 Oberhof 64
## 4671 29:03.0 +1:36.2 <NA> 2016-2017 Oberhof 64
## 4672 29:05.8 +1:39.0 <NA> 2016-2017 Oberhof 64
## 4673 29:06.2 +1:39.4 <NA> 2016-2017 Oberhof 64
## 4674 29:06.9 +1:40.1 <NA> 2016-2017 Oberhof 64
## 4675 29:09.1 +1:42.3 <NA> 2016-2017 Oberhof 64
## 4676 29:09.5 +1:42.7 <NA> 2016-2017 Oberhof 64
## 4677 29:14.5 +1:47.7 <NA> 2016-2017 Oberhof 64
## 4678 29:14.8 +1:48.0 <NA> 2016-2017 Oberhof 64
## 4679 29:15.8 +1:49.0 <NA> 2016-2017 Oberhof 64
## 4680 29:17.3 +1:50.5 <NA> 2016-2017 Oberhof 64
## 4681 29:18.6 +1:51.8 <NA> 2016-2017 Oberhof 64
## 4682 29:19.4 +1:52.6 <NA> 2016-2017 Oberhof 64
## 4683 29:21.7 +1:54.9 <NA> 2016-2017 Oberhof 64
## 4684 29:21.8 +1:55.0 <NA> 2016-2017 Oberhof 64
## 4685 29:22.9 +1:56.1 <NA> 2016-2017 Oberhof 64
## 4686 29:23.6 +1:56.8 <NA> 2016-2017 Oberhof 64
## 4687 29:30.8 +2:04.0 <NA> 2016-2017 Oberhof 64
## 4688 29:31.0 +2:04.2 <NA> 2016-2017 Oberhof 64
## 4689 29:38.7 +2:11.9 <NA> 2016-2017 Oberhof 64
## 4690 29:40.0 +2:13.2 <NA> 2016-2017 Oberhof 64
## 4691 29:40.5 +2:13.7 <NA> 2016-2017 Oberhof 64
## 4692 29:41.9 +2:15.1 <NA> 2016-2017 Oberhof 64
## 4693 29:42.0 +2:15.2 <NA> 2016-2017 Oberhof 64
## 4694 29:43.5 +2:16.7 <NA> 2016-2017 Oberhof 64
## 4695 29:43.7 +2:16.9 <NA> 2016-2017 Oberhof 64
## 4696 29:45.6 +2:18.8 <NA> 2016-2017 Oberhof 64
## 4697 29:45.8 +2:19.0 <NA> 2016-2017 Oberhof 64
## 4698 29:49.9 +2:23.1 <NA> 2016-2017 Oberhof 64
## 4699 29:51.8 +2:25.0 <NA> 2016-2017 Oberhof 64
## 4700 29:52.0 +2:25.2 <NA> 2016-2017 Oberhof 64
## 4701 29:53.7 +2:26.9 <NA> 2016-2017 Oberhof 64
## 4702 29:54.3 +2:27.5 <NA> 2016-2017 Oberhof 64
## 4703 29:54.9 +2:28.1 <NA> 2016-2017 Oberhof 64
## 4704 29:57.6 +2:30.8 <NA> 2016-2017 Oberhof 64
## 4705 29:58.8 +2:32.0 <NA> 2016-2017 Oberhof 64
## 4706 30:01.0 +2:34.2 <NA> 2016-2017 Oberhof 64
## 4707 30:01.8 +2:35.0 <NA> 2016-2017 Oberhof 64
## 4708 30:02.3 +2:35.5 <NA> 2016-2017 Oberhof 64
## 4709 30:05.4 +2:38.6 <NA> 2016-2017 Oberhof 64
## 4710 30:08.4 +2:41.6 <NA> 2016-2017 Oberhof 64
## 4711 30:10.3 +2:43.5 <NA> 2016-2017 Oberhof 64
## 4712 30:12.3 +2:45.5 <NA> 2016-2017 Oberhof 64
## 4713 30:16.0 +2:49.2 <NA> 2016-2017 Oberhof 64
## 4714 30:17.9 +2:51.1 <NA> 2016-2017 Oberhof 64
## 4715 30:24.6 +2:57.8 <NA> 2016-2017 Oberhof 64
## 4716 30:27.8 +3:01.0 <NA> 2016-2017 Oberhof 64
## 4717 30:28.1 +3:01.3 <NA> 2016-2017 Oberhof 64
## 4718 30:29.6 +3:02.8 <NA> 2016-2017 Oberhof 64
## 4719 30:31.3 +3:04.5 <NA> 2016-2017 Oberhof 64
## 4720 30:31.3 +3:04.5 <NA> 2016-2017 Oberhof 64
## 4721 30:38.4 +3:11.6 <NA> 2016-2017 Oberhof 64
## 4722 30:38.7 +3:11.9 <NA> 2016-2017 Oberhof 64
## 4723 30:43.0 +3:16.2 <NA> 2016-2017 Oberhof 64
## 4724 30:43.4 +3:16.6 <NA> 2016-2017 Oberhof 64
## 4725 30:46.0 +3:19.2 <NA> 2016-2017 Oberhof 64
## 4726 30:47.0 +3:20.2 <NA> 2016-2017 Oberhof 64
## 4727 30:49.5 +3:22.7 <NA> 2016-2017 Oberhof 64
## 4728 30:51.2 +3:24.4 <NA> 2016-2017 Oberhof 64
## 4729 30:57.5 +3:30.7 <NA> 2016-2017 Oberhof 64
## 4730 30:58.2 +3:31.4 <NA> 2016-2017 Oberhof 64
## 4731 31:00.4 +3:33.6 <NA> 2016-2017 Oberhof 64
## 4732 31:03.8 +3:37.0 <NA> 2016-2017 Oberhof 64
## 4733 31:08.2 +3:41.4 <NA> 2016-2017 Oberhof 64
## 4734 31:11.4 +3:44.6 <NA> 2016-2017 Oberhof 64
## 4735 31:13.0 +3:46.2 <NA> 2016-2017 Oberhof 64
## 4736 31:17.6 +3:50.8 <NA> 2016-2017 Oberhof 64
## 4737 31:19.1 +3:52.3 <NA> 2016-2017 Oberhof 64
## 4738 31:21.5 +3:54.7 <NA> 2016-2017 Oberhof 64
## 4739 31:27.0 +4:00.2 <NA> 2016-2017 Oberhof 64
## 4740 31:42.7 +4:15.9 <NA> 2016-2017 Oberhof 64
## 4741 31:49.3 +4:22.5 <NA> 2016-2017 Oberhof 64
## 4742 31:52.2 +4:25.4 <NA> 2016-2017 Oberhof 64
## 4743 31:57.7 +4:30.9 <NA> 2016-2017 Oberhof 64
## 4744 32:12.9 +4:46.1 <NA> 2016-2017 Oberhof 64
## 4745 32:31.6 +5:04.8 <NA> 2016-2017 Oberhof 64
## 4746 32:42.5 +5:15.7 <NA> 2016-2017 Oberhof 64
## 4747 32:44.4 +5:17.6 <NA> 2016-2017 Oberhof 64
## 4748 33:40.4 +6:13.6 <NA> 2016-2017 Oberhof 64
## 4749 <NA> 2016-2017 Oberhof 64
## 4750 <NA> 2016-2017 Oberhof 64
## 4751 <NA> 2016-2017 Oberhof 64
## 4752 <NA> 2016-2017 Oberhof 64
## 4753 51:33.8 <NA> 2016-2017 Oestersund 65
## 4754 52:03.3 +29.5 <NA> 2016-2017 Oestersund 65
## 4755 52:58.1 +1:24.3 <NA> 2016-2017 Oestersund 65
## 4756 53:44.3 +2:10.5 <NA> 2016-2017 Oestersund 65
## 4757 53:50.5 +2:16.7 <NA> 2016-2017 Oestersund 65
## 4758 54:02.1 +2:28.3 <NA> 2016-2017 Oestersund 65
## 4759 54:03.1 +2:29.3 <NA> 2016-2017 Oestersund 65
## 4760 54:07.4 +2:33.6 <NA> 2016-2017 Oestersund 65
## 4761 54:17.6 +2:43.8 <NA> 2016-2017 Oestersund 65
## 4762 54:32.8 +2:59.0 <NA> 2016-2017 Oestersund 65
## 4763 54:37.9 +3:04.1 <NA> 2016-2017 Oestersund 65
## 4764 54:40.6 +3:06.8 <NA> 2016-2017 Oestersund 65
## 4765 54:54.7 +3:20.9 <NA> 2016-2017 Oestersund 65
## 4766 55:07.3 +3:33.5 <NA> 2016-2017 Oestersund 65
## 4767 55:26.3 +3:52.5 <NA> 2016-2017 Oestersund 65
## 4768 55:28.4 +3:54.6 <NA> 2016-2017 Oestersund 65
## 4769 55:28.6 +3:54.8 <NA> 2016-2017 Oestersund 65
## 4770 55:36.3 +4:02.5 <NA> 2016-2017 Oestersund 65
## 4771 55:37.5 +4:03.7 <NA> 2016-2017 Oestersund 65
## 4772 55:43.3 +4:09.5 <NA> 2016-2017 Oestersund 65
## 4773 55:44.7 +4:10.9 <NA> 2016-2017 Oestersund 65
## 4774 55:46.0 +4:12.2 <NA> 2016-2017 Oestersund 65
## 4775 55:52.3 +4:18.5 <NA> 2016-2017 Oestersund 65
## 4776 55:54.6 +4:20.8 <NA> 2016-2017 Oestersund 65
## 4777 55:56.1 +4:22.3 <NA> 2016-2017 Oestersund 65
## 4778 55:57.0 +4:23.2 <NA> 2016-2017 Oestersund 65
## 4779 56:08.9 +4:35.1 <NA> 2016-2017 Oestersund 65
## 4780 56:12.9 +4:39.1 <NA> 2016-2017 Oestersund 65
## 4781 56:13.2 +4:39.4 <NA> 2016-2017 Oestersund 65
## 4782 56:17.0 +4:43.2 <NA> 2016-2017 Oestersund 65
## 4783 56:21.0 +4:47.2 <NA> 2016-2017 Oestersund 65
## 4784 56:22.2 +4:48.4 <NA> 2016-2017 Oestersund 65
## 4785 56:22.5 +4:48.7 <NA> 2016-2017 Oestersund 65
## 4786 56:27.4 +4:53.6 <NA> 2016-2017 Oestersund 65
## 4787 56:35.8 +5:02.0 <NA> 2016-2017 Oestersund 65
## 4788 56:42.4 +5:08.6 <NA> 2016-2017 Oestersund 65
## 4789 56:48.7 +5:14.9 <NA> 2016-2017 Oestersund 65
## 4790 56:55.0 +5:21.2 <NA> 2016-2017 Oestersund 65
## 4791 56:58.8 +5:25.0 <NA> 2016-2017 Oestersund 65
## 4792 56:58.9 +5:25.1 <NA> 2016-2017 Oestersund 65
## 4793 57:07.1 +5:33.3 <NA> 2016-2017 Oestersund 65
## 4794 57:08.8 +5:35.0 <NA> 2016-2017 Oestersund 65
## 4795 57:10.6 +5:36.8 <NA> 2016-2017 Oestersund 65
## 4796 57:23.4 +5:49.6 <NA> 2016-2017 Oestersund 65
## 4797 57:32.9 +5:59.1 <NA> 2016-2017 Oestersund 65
## 4798 57:33.7 +5:59.9 <NA> 2016-2017 Oestersund 65
## 4799 57:37.8 +6:04.0 <NA> 2016-2017 Oestersund 65
## 4800 57:40.5 +6:06.7 <NA> 2016-2017 Oestersund 65
## 4801 57:46.3 +6:12.5 <NA> 2016-2017 Oestersund 65
## 4802 57:50.2 +6:16.4 <NA> 2016-2017 Oestersund 65
## 4803 57:56.7 +6:22.9 <NA> 2016-2017 Oestersund 65
## 4804 58:13.5 +6:39.7 <NA> 2016-2017 Oestersund 65
## 4805 58:31.4 +6:57.6 <NA> 2016-2017 Oestersund 65
## 4806 58:38.3 +7:04.5 <NA> 2016-2017 Oestersund 65
## 4807 58:39.2 +7:05.4 <NA> 2016-2017 Oestersund 65
## 4808 58:40.0 +7:06.2 <NA> 2016-2017 Oestersund 65
## 4809 58:53.6 +7:19.8 <NA> 2016-2017 Oestersund 65
## 4810 58:58.4 +7:24.6 <NA> 2016-2017 Oestersund 65
## 4811 58:59.5 +7:25.7 <NA> 2016-2017 Oestersund 65
## 4812 59:04.2 +7:30.4 <NA> 2016-2017 Oestersund 65
## 4813 59:06.7 +7:32.9 <NA> 2016-2017 Oestersund 65
## 4814 59:08.4 +7:34.6 <NA> 2016-2017 Oestersund 65
## 4815 59:09.2 +7:35.4 <NA> 2016-2017 Oestersund 65
## 4816 59:12.1 +7:38.3 <NA> 2016-2017 Oestersund 65
## 4817 59:19.4 +7:45.6 <NA> 2016-2017 Oestersund 65
## 4818 59:27.5 +7:53.7 <NA> 2016-2017 Oestersund 65
## 4819 59:32.5 +7:58.7 <NA> 2016-2017 Oestersund 65
## 4820 59:36.6 +8:02.8 <NA> 2016-2017 Oestersund 65
## 4821 59:38.3 +8:04.5 <NA> 2016-2017 Oestersund 65
## 4822 59:45.9 +8:12.1 <NA> 2016-2017 Oestersund 65
## 4823 1:00:02.5 +8:28.7 <NA> 2016-2017 Oestersund 65
## 4824 1:00:02.6 +8:28.8 <NA> 2016-2017 Oestersund 65
## 4825 1:00:05.9 +8:32.1 <NA> 2016-2017 Oestersund 65
## 4826 1:00:06.2 +8:32.4 <NA> 2016-2017 Oestersund 65
## 4827 1:00:10.6 +8:36.8 <NA> 2016-2017 Oestersund 65
## 4828 1:00:13.4 +8:39.6 <NA> 2016-2017 Oestersund 65
## 4829 1:00:27.9 +8:54.1 <NA> 2016-2017 Oestersund 65
## 4830 1:00:37.1 +9:03.3 <NA> 2016-2017 Oestersund 65
## 4831 1:00:41.1 +9:07.3 <NA> 2016-2017 Oestersund 65
## 4832 1:00:41.9 +9:08.1 <NA> 2016-2017 Oestersund 65
## 4833 1:00:43.5 +9:09.7 <NA> 2016-2017 Oestersund 65
## 4834 1:00:44.1 +9:10.3 <NA> 2016-2017 Oestersund 65
## 4835 1:00:56.9 +9:23.1 <NA> 2016-2017 Oestersund 65
## 4836 1:01:03.8 +9:30.0 <NA> 2016-2017 Oestersund 65
## 4837 1:01:21.1 +9:47.3 <NA> 2016-2017 Oestersund 65
## 4838 1:01:27.9 +9:54.1 <NA> 2016-2017 Oestersund 65
## 4839 1:01:46.6 +10:12.8 <NA> 2016-2017 Oestersund 65
## 4840 1:01:48.9 +10:15.1 <NA> 2016-2017 Oestersund 65
## 4841 1:01:53.9 +10:20.1 <NA> 2016-2017 Oestersund 65
## 4842 1:02:07.3 +10:33.5 <NA> 2016-2017 Oestersund 65
## 4843 1:02:19.4 +10:45.6 <NA> 2016-2017 Oestersund 65
## 4844 1:02:28.0 +10:54.2 <NA> 2016-2017 Oestersund 65
## 4845 1:02:53.5 +11:19.7 <NA> 2016-2017 Oestersund 65
## 4846 1:03:16.0 +11:42.2 <NA> 2016-2017 Oestersund 65
## 4847 1:03:20.4 +11:46.6 <NA> 2016-2017 Oestersund 65
## 4848 1:03:33.0 +11:59.2 <NA> 2016-2017 Oestersund 65
## 4849 1:04:05.1 +12:31.3 <NA> 2016-2017 Oestersund 65
## 4850 1:04:12.3 +12:38.5 <NA> 2016-2017 Oestersund 65
## 4851 1:04:26.6 +12:52.8 <NA> 2016-2017 Oestersund 65
## 4852 1:05:54.4 +14:20.6 <NA> 2016-2017 Oestersund 65
## 4853 1:05:58.4 +14:24.6 <NA> 2016-2017 Oestersund 65
## 4854 1:06:02.7 +14:28.9 <NA> 2016-2017 Oestersund 65
## 4855 1:06:03.8 +14:30.0 <NA> 2016-2017 Oestersund 65
## 4856 <NA> 2016-2017 Oestersund 65
## 4857 <NA> 2016-2017 Oestersund 65
## 4858 <NA> 2016-2017 Oestersund 65
## 4859 31:22.3 30:26.3 2016-2017 Oestersund 66
## 4860 31:32.8 +10.5 30:35.8 2016-2017 Oestersund 66
## 4861 31:37.5 +15.2 31:37.5 2016-2017 Oestersund 66
## 4862 32:15.0 +52.7 31:31.0 2016-2017 Oestersund 66
## 4863 32:17.4 +55.1 31:12.4 2016-2017 Oestersund 66
## 4864 32:18.4 +56.1 31:21.4 2016-2017 Oestersund 66
## 4865 32:23.4 +1:01.1 30:33.4 2016-2017 Oestersund 66
## 4866 32:24.4 +1:02.1 30:59.4 2016-2017 Oestersund 66
## 4867 32:29.8 +1:07.5 31:15.8 2016-2017 Oestersund 66
## 4868 32:29.9 +1:07.6 30:55.9 2016-2017 Oestersund 66
## 4869 32:34.0 +1:11.7 31:18.0 2016-2017 Oestersund 66
## 4870 32:35.7 +1:13.4 31:38.7 2016-2017 Oestersund 66
## 4871 32:37.8 +1:15.5 31:40.8 2016-2017 Oestersund 66
## 4872 32:43.6 +1:21.3 31:47.6 2016-2017 Oestersund 66
## 4873 32:44.1 +1:21.8 31:45.1 2016-2017 Oestersund 66
## 4874 32:53.3 +1:31.0 31:52.3 2016-2017 Oestersund 66
## 4875 32:54.1 +1:31.8 31:48.1 2016-2017 Oestersund 66
## 4876 32:54.5 +1:32.2 31:07.5 2016-2017 Oestersund 66
## 4877 32:56.6 +1:34.3 30:33.6 2016-2017 Oestersund 66
## 4878 32:57.0 +1:34.7 31:48.0 2016-2017 Oestersund 66
## 4879 32:58.8 +1:36.5 31:19.8 2016-2017 Oestersund 66
## 4880 33:00.3 +1:38.0 31:53.3 2016-2017 Oestersund 66
## 4881 33:04.3 +1:42.0 31:44.3 2016-2017 Oestersund 66
## 4882 33:04.7 +1:42.4 31:50.7 2016-2017 Oestersund 66
## 4883 33:05.2 +1:42.9 32:14.2 2016-2017 Oestersund 66
## 4884 33:09.2 +1:46.9 31:30.2 2016-2017 Oestersund 66
## 4885 33:17.2 +1:54.9 32:31.2 2016-2017 Oestersund 66
## 4886 33:20.9 +1:58.6 31:55.9 2016-2017 Oestersund 66
## 4887 33:26.7 +2:04.4 31:32.7 2016-2017 Oestersund 66
## 4888 33:39.4 +2:17.1 31:27.4 2016-2017 Oestersund 66
## 4889 33:39.7 +2:17.4 32:31.7 2016-2017 Oestersund 66
## 4890 33:41.1 +2:18.8 31:36.1 2016-2017 Oestersund 66
## 4891 33:52.4 +2:30.1 33:08.4 2016-2017 Oestersund 66
## 4892 34:01.4 +2:39.1 32:14.4 2016-2017 Oestersund 66
## 4893 34:01.5 +2:39.2 32:33.5 2016-2017 Oestersund 66
## 4894 34:09.0 +2:46.7 31:46.0 2016-2017 Oestersund 66
## 4895 34:09.9 +2:47.6 32:53.9 2016-2017 Oestersund 66
## 4896 34:17.7 +2:55.4 33:35.7 2016-2017 Oestersund 66
## 4897 34:19.1 +2:56.8 32:17.1 2016-2017 Oestersund 66
## 4898 34:28.8 +3:06.5 32:30.8 2016-2017 Oestersund 66
## 4899 34:30.3 +3:08.0 32:07.3 2016-2017 Oestersund 66
## 4900 34:32.8 +3:10.5 32:11.8 2016-2017 Oestersund 66
## 4901 34:37.5 +3:15.2 32:30.5 2016-2017 Oestersund 66
## 4902 34:46.6 +3:24.3 32:41.6 2016-2017 Oestersund 66
## 4903 34:48.0 +3:25.7 32:31.0 2016-2017 Oestersund 66
## 4904 34:50.5 +3:28.2 32:47.5 2016-2017 Oestersund 66
## 4905 34:57.1 +3:34.8 32:42.1 2016-2017 Oestersund 66
## 4906 34:58.3 +3:36.0 33:34.3 2016-2017 Oestersund 66
## 4907 35:00.4 +3:38.1 33:16.4 2016-2017 Oestersund 66
## 4908 35:07.8 +3:45.5 33:28.8 2016-2017 Oestersund 66
## 4909 35:16.9 +3:54.6 32:58.9 2016-2017 Oestersund 66
## 4910 35:18.2 +3:55.9 33:29.2 2016-2017 Oestersund 66
## 4911 35:43.2 +4:20.9 33:20.2 2016-2017 Oestersund 66
## 4912 35:43.7 +4:21.4 33:34.7 2016-2017 Oestersund 66
## 4913 36:03.8 +4:41.5 33:51.8 2016-2017 Oestersund 66
## 4914 36:14.7 +4:52.4 34:52.7 2016-2017 Oestersund 66
## 4915 36:34.0 +5:11.7 34:12.0 2016-2017 Oestersund 66
## 4916 36:43.2 +5:20.9 34:25.2 2016-2017 Oestersund 66
## 4917 37:01.0 +5:38.7 34:53.0 2016-2017 Oestersund 66
## 4918 2016-2017 Oestersund 66
## 4919 23:31.9 <NA> 2016-2017 Oestersund 67
## 4920 24:13.4 +41.5 <NA> 2016-2017 Oestersund 67
## 4921 24:15.5 +43.6 <NA> 2016-2017 Oestersund 67
## 4922 24:16.0 +44.1 <NA> 2016-2017 Oestersund 67
## 4923 24:17.9 +46.0 <NA> 2016-2017 Oestersund 67
## 4924 24:22.5 +50.6 <NA> 2016-2017 Oestersund 67
## 4925 24:27.5 +55.6 <NA> 2016-2017 Oestersund 67
## 4926 24:27.9 +56.0 <NA> 2016-2017 Oestersund 67
## 4927 24:28.4 +56.5 <NA> 2016-2017 Oestersund 67
## 4928 24:29.2 +57.3 <NA> 2016-2017 Oestersund 67
## 4929 24:29.2 +57.3 <NA> 2016-2017 Oestersund 67
## 4930 24:29.3 +57.4 <NA> 2016-2017 Oestersund 67
## 4931 24:30.6 +58.7 <NA> 2016-2017 Oestersund 67
## 4932 24:33.3 +1:01.4 <NA> 2016-2017 Oestersund 67
## 4933 24:36.9 +1:05.0 <NA> 2016-2017 Oestersund 67
## 4934 24:37.9 +1:06.0 <NA> 2016-2017 Oestersund 67
## 4935 24:38.6 +1:06.7 <NA> 2016-2017 Oestersund 67
## 4936 24:39.6 +1:07.7 <NA> 2016-2017 Oestersund 67
## 4937 24:40.8 +1:08.9 <NA> 2016-2017 Oestersund 67
## 4938 24:46.0 +1:14.1 <NA> 2016-2017 Oestersund 67
## 4939 24:46.1 +1:14.2 <NA> 2016-2017 Oestersund 67
## 4940 24:47.6 +1:15.7 <NA> 2016-2017 Oestersund 67
## 4941 24:48.3 +1:16.4 <NA> 2016-2017 Oestersund 67
## 4942 24:51.5 +1:19.6 <NA> 2016-2017 Oestersund 67
## 4943 24:53.4 +1:21.5 <NA> 2016-2017 Oestersund 67
## 4944 24:55.8 +1:23.9 <NA> 2016-2017 Oestersund 67
## 4945 24:56.5 +1:24.6 <NA> 2016-2017 Oestersund 67
## 4946 24:57.3 +1:25.4 <NA> 2016-2017 Oestersund 67
## 4947 24:59.9 +1:28.0 <NA> 2016-2017 Oestersund 67
## 4948 25:05.4 +1:33.5 <NA> 2016-2017 Oestersund 67
## 4949 25:10.8 +1:38.9 <NA> 2016-2017 Oestersund 67
## 4950 25:11.0 +1:39.1 <NA> 2016-2017 Oestersund 67
## 4951 25:11.2 +1:39.3 <NA> 2016-2017 Oestersund 67
## 4952 25:16.3 +1:44.4 <NA> 2016-2017 Oestersund 67
## 4953 25:18.5 +1:46.6 <NA> 2016-2017 Oestersund 67
## 4954 25:18.6 +1:46.7 <NA> 2016-2017 Oestersund 67
## 4955 25:20.7 +1:48.8 <NA> 2016-2017 Oestersund 67
## 4956 25:22.1 +1:50.2 <NA> 2016-2017 Oestersund 67
## 4957 25:26.3 +1:54.4 <NA> 2016-2017 Oestersund 67
## 4958 25:30.2 +1:58.3 <NA> 2016-2017 Oestersund 67
## 4959 25:33.5 +2:01.6 <NA> 2016-2017 Oestersund 67
## 4960 25:34.5 +2:02.6 <NA> 2016-2017 Oestersund 67
## 4961 25:36.7 +2:04.8 <NA> 2016-2017 Oestersund 67
## 4962 25:37.2 +2:05.3 <NA> 2016-2017 Oestersund 67
## 4963 25:39.3 +2:07.4 <NA> 2016-2017 Oestersund 67
## 4964 25:39.4 +2:07.5 <NA> 2016-2017 Oestersund 67
## 4965 25:41.3 +2:09.4 <NA> 2016-2017 Oestersund 67
## 4966 25:43.6 +2:11.7 <NA> 2016-2017 Oestersund 67
## 4967 25:44.0 +2:12.1 <NA> 2016-2017 Oestersund 67
## 4968 25:46.7 +2:14.8 <NA> 2016-2017 Oestersund 67
## 4969 25:48.6 +2:16.7 <NA> 2016-2017 Oestersund 67
## 4970 25:49.5 +2:17.6 <NA> 2016-2017 Oestersund 67
## 4971 25:50.2 +2:18.3 <NA> 2016-2017 Oestersund 67
## 4972 25:51.0 +2:19.1 <NA> 2016-2017 Oestersund 67
## 4973 25:52.4 +2:20.5 <NA> 2016-2017 Oestersund 67
## 4974 25:53.4 +2:21.5 <NA> 2016-2017 Oestersund 67
## 4975 25:54.4 +2:22.5 <NA> 2016-2017 Oestersund 67
## 4976 25:54.6 +2:22.7 <NA> 2016-2017 Oestersund 67
## 4977 25:54.7 +2:22.8 <NA> 2016-2017 Oestersund 67
## 4978 25:55.3 +2:23.4 <NA> 2016-2017 Oestersund 67
## 4979 26:00.0 +2:28.1 <NA> 2016-2017 Oestersund 67
## 4980 26:01.1 +2:29.2 <NA> 2016-2017 Oestersund 67
## 4981 26:02.6 +2:30.7 <NA> 2016-2017 Oestersund 67
## 4982 26:03.1 +2:31.2 <NA> 2016-2017 Oestersund 67
## 4983 26:04.7 +2:32.8 <NA> 2016-2017 Oestersund 67
## 4984 26:07.4 +2:35.5 <NA> 2016-2017 Oestersund 67
## 4985 26:07.7 +2:35.8 <NA> 2016-2017 Oestersund 67
## 4986 26:11.0 +2:39.1 <NA> 2016-2017 Oestersund 67
## 4987 26:14.8 +2:42.9 <NA> 2016-2017 Oestersund 67
## 4988 26:16.2 +2:44.3 <NA> 2016-2017 Oestersund 67
## 4989 26:16.6 +2:44.7 <NA> 2016-2017 Oestersund 67
## 4990 26:20.7 +2:48.8 <NA> 2016-2017 Oestersund 67
## 4991 26:21.7 +2:49.8 <NA> 2016-2017 Oestersund 67
## 4992 26:24.6 +2:52.7 <NA> 2016-2017 Oestersund 67
## 4993 26:26.8 +2:54.9 <NA> 2016-2017 Oestersund 67
## 4994 26:27.2 +2:55.3 <NA> 2016-2017 Oestersund 67
## 4995 26:31.0 +2:59.1 <NA> 2016-2017 Oestersund 67
## 4996 26:31.5 +2:59.6 <NA> 2016-2017 Oestersund 67
## 4997 26:31.6 +2:59.7 <NA> 2016-2017 Oestersund 67
## 4998 26:32.7 +3:00.8 <NA> 2016-2017 Oestersund 67
## 4999 26:33.9 +3:02.0 <NA> 2016-2017 Oestersund 67
## 5000 26:36.2 +3:04.3 <NA> 2016-2017 Oestersund 67
## 5001 26:40.7 +3:08.8 <NA> 2016-2017 Oestersund 67
## 5002 26:48.3 +3:16.4 <NA> 2016-2017 Oestersund 67
## 5003 26:54.0 +3:22.1 <NA> 2016-2017 Oestersund 67
## 5004 26:56.2 +3:24.3 <NA> 2016-2017 Oestersund 67
## 5005 26:57.8 +3:25.9 <NA> 2016-2017 Oestersund 67
## 5006 26:59.3 +3:27.4 <NA> 2016-2017 Oestersund 67
## 5007 26:59.5 +3:27.6 <NA> 2016-2017 Oestersund 67
## 5008 27:01.2 +3:29.3 <NA> 2016-2017 Oestersund 67
## 5009 27:07.0 +3:35.1 <NA> 2016-2017 Oestersund 67
## 5010 27:10.5 +3:38.6 <NA> 2016-2017 Oestersund 67
## 5011 27:19.4 +3:47.5 <NA> 2016-2017 Oestersund 67
## 5012 27:25.7 +3:53.8 <NA> 2016-2017 Oestersund 67
## 5013 27:35.2 +4:03.3 <NA> 2016-2017 Oestersund 67
## 5014 27:44.1 +4:12.2 <NA> 2016-2017 Oestersund 67
## 5015 27:45.3 +4:13.4 <NA> 2016-2017 Oestersund 67
## 5016 27:45.4 +4:13.5 <NA> 2016-2017 Oestersund 67
## 5017 27:52.5 +4:20.6 <NA> 2016-2017 Oestersund 67
## 5018 28:03.9 +4:32.0 <NA> 2016-2017 Oestersund 67
## 5019 28:05.9 +4:34.0 <NA> 2016-2017 Oestersund 67
## 5020 28:13.9 +4:42.0 <NA> 2016-2017 Oestersund 67
## 5021 28:14.0 +4:42.1 <NA> 2016-2017 Oestersund 67
## 5022 28:20.4 +4:48.5 <NA> 2016-2017 Oestersund 67
## 5023 28:33.1 +5:01.2 <NA> 2016-2017 Oestersund 67
## 5024 37:32.2 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5025 37:49.6 +17.4 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5026 38:04.6 +32.4 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5027 38:14.4 +42.2 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5028 38:14.7 +42.5 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5029 38:15.1 +42.9 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5030 38:16.5 +44.3 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5031 38:17.8 +45.6 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5032 38:18.9 +46.7 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5033 38:24.1 +51.9 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5034 38:36.9 +1:04.7 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5035 38:38.2 +1:06.0 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5036 38:39.1 +1:06.9 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5037 38:39.4 +1:07.2 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5038 38:42.6 +1:10.4 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5039 38:46.3 +1:14.1 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5040 38:53.4 +1:21.2 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5041 38:55.3 +1:23.1 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5042 38:59.2 +1:27.0 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5043 39:00.7 +1:28.5 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5044 39:01.9 +1:29.7 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5045 39:17.0 +1:44.8 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5046 39:35.5 +2:03.3 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5047 39:55.4 +2:23.2 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5048 39:57.8 +2:25.6 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5049 40:35.8 +3:03.6 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5050 41:00.2 +3:28.0 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5051 41:05.3 +3:33.1 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5052 42:27.8 +4:55.6 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5053 42:27.8 +4:55.6 <NA> 2016-2017 Oslo_Holmenkollen 68
## 5054 32:11.9 31:50.9 2016-2017 Oslo_Holmenkollen 69
## 5055 32:17.6 +5.7 32:03.6 2016-2017 Oslo_Holmenkollen 69
## 5056 32:33.5 +21.6 32:33.5 2016-2017 Oslo_Holmenkollen 69
## 5057 32:56.6 +44.7 31:56.6 2016-2017 Oslo_Holmenkollen 69
## 5058 33:07.4 +55.5 32:02.4 2016-2017 Oslo_Holmenkollen 69
## 5059 33:07.5 +55.6 32:24.5 2016-2017 Oslo_Holmenkollen 69
## 5060 33:08.0 +56.1 32:18.0 2016-2017 Oslo_Holmenkollen 69
## 5061 33:09.2 +57.3 32:40.2 2016-2017 Oslo_Holmenkollen 69
## 5062 33:15.6 +1:03.7 32:45.6 2016-2017 Oslo_Holmenkollen 69
## 5063 33:31.8 +1:19.9 32:23.8 2016-2017 Oslo_Holmenkollen 69
## 5064 33:36.5 +1:24.6 32:24.5 2016-2017 Oslo_Holmenkollen 69
## 5065 33:45.9 +1:34.0 33:23.9 2016-2017 Oslo_Holmenkollen 69
## 5066 33:47.0 +1:35.1 32:29.0 2016-2017 Oslo_Holmenkollen 69
## 5067 33:47.4 +1:35.5 33:19.4 2016-2017 Oslo_Holmenkollen 69
## 5068 33:54.3 +1:42.4 32:13.3 2016-2017 Oslo_Holmenkollen 69
## 5069 33:57.4 +1:45.5 32:53.4 2016-2017 Oslo_Holmenkollen 69
## 5070 34:01.4 +1:49.5 33:37.4 2016-2017 Oslo_Holmenkollen 69
## 5071 34:27.4 +2:15.5 33:38.4 2016-2017 Oslo_Holmenkollen 69
## 5072 34:31.7 +2:19.8 33:06.7 2016-2017 Oslo_Holmenkollen 69
## 5073 34:35.0 +2:23.1 33:22.0 2016-2017 Oslo_Holmenkollen 69
## 5074 34:35.8 +2:23.9 32:55.8 2016-2017 Oslo_Holmenkollen 69
## 5075 34:38.1 +2:26.2 33:37.1 2016-2017 Oslo_Holmenkollen 69
## 5076 34:44.2 +2:32.3 32:52.2 2016-2017 Oslo_Holmenkollen 69
## 5077 34:44.3 +2:32.4 32:59.3 2016-2017 Oslo_Holmenkollen 69
## 5078 34:45.3 +2:33.4 33:13.3 2016-2017 Oslo_Holmenkollen 69
## 5079 34:45.8 +2:33.9 33:45.8 2016-2017 Oslo_Holmenkollen 69
## 5080 34:47.3 +2:35.4 33:47.3 2016-2017 Oslo_Holmenkollen 69
## 5081 34:47.7 +2:35.8 32:48.7 2016-2017 Oslo_Holmenkollen 69
## 5082 34:48.4 +2:36.5 32:27.4 2016-2017 Oslo_Holmenkollen 69
## 5083 35:01.1 +2:49.2 32:51.1 2016-2017 Oslo_Holmenkollen 69
## 5084 35:01.2 +2:49.3 33:44.2 2016-2017 Oslo_Holmenkollen 69
## 5085 35:11.5 +2:59.6 33:48.5 2016-2017 Oslo_Holmenkollen 69
## 5086 35:13.3 +3:01.4 33:43.3 2016-2017 Oslo_Holmenkollen 69
## 5087 35:18.1 +3:06.2 34:20.1 2016-2017 Oslo_Holmenkollen 69
## 5088 35:18.8 +3:06.9 33:19.8 2016-2017 Oslo_Holmenkollen 69
## 5089 35:19.3 +3:07.4 33:41.3 2016-2017 Oslo_Holmenkollen 69
## 5090 35:19.5 +3:07.6 33:06.5 2016-2017 Oslo_Holmenkollen 69
## 5091 35:35.0 +3:23.1 34:34.0 2016-2017 Oslo_Holmenkollen 69
## 5092 35:41.2 +3:29.3 33:30.2 2016-2017 Oslo_Holmenkollen 69
## 5093 35:49.2 +3:37.3 34:46.2 2016-2017 Oslo_Holmenkollen 69
## 5094 35:57.6 +3:45.7 33:36.6 2016-2017 Oslo_Holmenkollen 69
## 5095 36:00.7 +3:48.8 34:08.7 2016-2017 Oslo_Holmenkollen 69
## 5096 36:02.7 +3:50.8 34:25.7 2016-2017 Oslo_Holmenkollen 69
## 5097 36:02.8 +3:50.9 33:58.8 2016-2017 Oslo_Holmenkollen 69
## 5098 36:16.4 +4:04.5 33:57.4 2016-2017 Oslo_Holmenkollen 69
## 5099 36:17.5 +4:05.6 34:44.5 2016-2017 Oslo_Holmenkollen 69
## 5100 36:21.7 +4:09.8 35:14.7 2016-2017 Oslo_Holmenkollen 69
## 5101 36:28.0 +4:16.1 34:55.0 2016-2017 Oslo_Holmenkollen 69
## 5102 36:42.8 +4:30.9 34:39.8 2016-2017 Oslo_Holmenkollen 69
## 5103 36:50.6 +4:38.7 34:56.6 2016-2017 Oslo_Holmenkollen 69
## 5104 37:05.3 +4:53.4 35:39.3 2016-2017 Oslo_Holmenkollen 69
## 5105 37:08.0 +4:56.1 35:35.0 2016-2017 Oslo_Holmenkollen 69
## 5106 37:17.5 +5:05.6 35:36.5 2016-2017 Oslo_Holmenkollen 69
## 5107 37:24.7 +5:12.8 35:22.7 2016-2017 Oslo_Holmenkollen 69
## 5108 38:03.1 +5:51.2 36:02.1 2016-2017 Oslo_Holmenkollen 69
## 5109 38:32.7 +6:20.8 36:09.7 2016-2017 Oslo_Holmenkollen 69
## 5110 2016-2017 Oslo_Holmenkollen 69
## 5111 2016-2017 Oslo_Holmenkollen 69
## 5112 2016-2017 Oslo_Holmenkollen 69
## 5113 2016-2017 Oslo_Holmenkollen 69
## 5114 24:53.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5115 25:06.9 +13.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5116 25:14.6 +21.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5117 25:14.8 +21.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5118 25:17.7 +24.4 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5119 25:21.7 +28.4 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5120 25:22.4 +29.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5121 25:23.5 +30.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5122 25:28.2 +34.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5123 25:36.5 +43.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5124 25:42.0 +48.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5125 25:43.5 +50.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5126 25:51.1 +57.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5127 25:52.8 +59.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5128 25:53.0 +59.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5129 25:53.1 +59.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5130 25:54.3 +1:01.0 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5131 25:54.7 +1:01.4 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5132 25:56.1 +1:02.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5133 25:56.8 +1:03.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5134 25:57.9 +1:04.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5135 25:59.8 +1:06.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5136 26:01.5 +1:08.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5137 26:05.4 +1:12.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5138 26:06.2 +1:12.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5139 26:07.2 +1:13.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5140 26:09.8 +1:16.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5141 26:11.1 +1:17.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5142 26:16.6 +1:23.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5143 26:18.5 +1:25.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5144 26:19.0 +1:25.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5145 26:23.1 +1:29.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5146 26:25.5 +1:32.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5147 26:26.1 +1:32.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5148 26:26.3 +1:33.0 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5149 26:26.7 +1:33.4 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5150 26:29.9 +1:36.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5151 26:31.6 +1:38.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5152 26:33.2 +1:39.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5153 26:34.0 +1:40.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5154 26:34.0 +1:40.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5155 26:38.2 +1:44.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5156 26:44.8 +1:51.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5157 26:44.9 +1:51.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5158 26:47.4 +1:54.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5159 26:51.6 +1:58.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5160 26:52.0 +1:58.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5161 26:52.4 +1:59.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5162 26:53.9 +2:00.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5163 26:55.4 +2:02.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5164 26:56.4 +2:03.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5165 26:57.1 +2:03.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5166 27:02.8 +2:09.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5167 27:04.5 +2:11.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5168 27:06.5 +2:13.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5169 27:12.5 +2:19.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5170 27:13.9 +2:20.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5171 27:14.0 +2:20.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5172 27:16.7 +2:23.4 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5173 27:17.8 +2:24.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5174 27:19.1 +2:25.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5175 27:19.1 +2:25.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5176 27:22.2 +2:28.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5177 27:22.5 +2:29.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5178 27:25.2 +2:31.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5179 27:27.0 +2:33.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5180 27:27.6 +2:34.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5181 27:29.1 +2:35.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5182 27:29.8 +2:36.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5183 27:30.8 +2:37.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5184 27:33.9 +2:40.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5185 27:34.2 +2:40.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5186 27:38.0 +2:44.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5187 27:38.9 +2:45.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5188 27:39.2 +2:45.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5189 27:43.2 +2:49.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5190 27:43.5 +2:50.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5191 27:44.2 +2:50.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5192 27:45.9 +2:52.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5193 27:46.0 +2:52.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5194 27:49.2 +2:55.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5195 27:51.2 +2:57.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5196 27:51.4 +2:58.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5197 27:51.5 +2:58.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5198 27:51.9 +2:58.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5199 27:56.7 +3:03.4 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5200 27:58.5 +3:05.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5201 27:59.0 +3:05.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5202 27:59.6 +3:06.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5203 28:01.0 +3:07.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5204 28:03.6 +3:10.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5205 28:06.1 +3:12.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5206 28:12.2 +3:18.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5207 28:14.8 +3:21.5 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5208 28:18.4 +3:25.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5209 28:20.0 +3:26.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5210 28:27.6 +3:34.3 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5211 28:35.2 +3:41.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5212 28:53.4 +4:00.1 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5213 29:01.2 +4:07.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5214 29:17.0 +4:23.7 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5215 29:19.1 +4:25.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5216 29:28.1 +4:34.8 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5217 30:20.5 +5:27.2 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5218 30:23.2 +5:29.9 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5219 30:45.9 +5:52.6 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5220 31:02.3 +6:09.0 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5221 <NA> 2016-2017 Oslo_Holmenkollen 70
## 5222 30:27.4 30:27.4 2016-2017 Pokljuka 71
## 5223 30:33.4 +6.0 30:12.4 2016-2017 Pokljuka 71
## 5224 30:33.6 +6.2 30:18.6 2016-2017 Pokljuka 71
## 5225 31:15.4 +48.0 31:01.4 2016-2017 Pokljuka 71
## 5226 31:27.2 +59.8 30:57.2 2016-2017 Pokljuka 71
## 5227 31:48.4 +1:21.0 30:37.4 2016-2017 Pokljuka 71
## 5228 31:54.9 +1:27.5 31:16.9 2016-2017 Pokljuka 71
## 5229 31:55.4 +1:28.0 31:03.4 2016-2017 Pokljuka 71
## 5230 31:58.9 +1:31.5 31:27.9 2016-2017 Pokljuka 71
## 5231 32:01.7 +1:34.3 31:25.7 2016-2017 Pokljuka 71
## 5232 32:04.4 +1:37.0 31:31.4 2016-2017 Pokljuka 71
## 5233 32:12.9 +1:45.5 30:58.9 2016-2017 Pokljuka 71
## 5234 32:22.3 +1:54.9 30:51.3 2016-2017 Pokljuka 71
## 5235 32:22.5 +1:55.1 30:52.5 2016-2017 Pokljuka 71
## 5236 32:22.8 +1:55.4 31:07.8 2016-2017 Pokljuka 71
## 5237 32:26.9 +1:59.5 31:47.9 2016-2017 Pokljuka 71
## 5238 32:27.1 +1:59.7 31:10.1 2016-2017 Pokljuka 71
## 5239 32:29.0 +2:01.6 31:16.0 2016-2017 Pokljuka 71
## 5240 32:32.2 +2:04.8 31:22.2 2016-2017 Pokljuka 71
## 5241 32:32.5 +2:05.1 32:05.5 2016-2017 Pokljuka 71
## 5242 32:32.6 +2:05.2 30:41.6 2016-2017 Pokljuka 71
## 5243 32:43.1 +2:15.7 31:26.1 2016-2017 Pokljuka 71
## 5244 32:50.2 +2:22.8 31:11.2 2016-2017 Pokljuka 71
## 5245 32:52.2 +2:24.8 31:34.2 2016-2017 Pokljuka 71
## 5246 32:56.0 +2:28.6 31:35.0 2016-2017 Pokljuka 71
## 5247 33:01.4 +2:34.0 31:28.4 2016-2017 Pokljuka 71
## 5248 33:03.6 +2:36.2 31:11.6 2016-2017 Pokljuka 71
## 5249 33:03.7 +2:36.3 31:17.7 2016-2017 Pokljuka 71
## 5250 33:06.0 +2:38.6 30:56.0 2016-2017 Pokljuka 71
## 5251 33:06.5 +2:39.1 31:16.5 2016-2017 Pokljuka 71
## 5252 33:09.1 +2:41.7 31:38.1 2016-2017 Pokljuka 71
## 5253 33:20.6 +2:53.2 31:44.6 2016-2017 Pokljuka 71
## 5254 33:21.7 +2:54.3 31:57.7 2016-2017 Pokljuka 71
## 5255 33:22.3 +2:54.9 32:05.3 2016-2017 Pokljuka 71
## 5256 33:25.5 +2:58.1 31:58.5 2016-2017 Pokljuka 71
## 5257 33:26.9 +2:59.5 31:51.9 2016-2017 Pokljuka 71
## 5258 33:38.2 +3:10.8 32:05.2 2016-2017 Pokljuka 71
## 5259 33:38.4 +3:11.0 31:46.4 2016-2017 Pokljuka 71
## 5260 34:09.4 +3:42.0 32:45.4 2016-2017 Pokljuka 71
## 5261 34:13.1 +3:45.7 32:10.1 2016-2017 Pokljuka 71
## 5262 34:24.8 +3:57.4 33:32.8 2016-2017 Pokljuka 71
## 5263 34:37.2 +4:09.8 32:39.2 2016-2017 Pokljuka 71
## 5264 34:38.1 +4:10.7 32:55.1 2016-2017 Pokljuka 71
## 5265 34:40.3 +4:12.9 32:53.3 2016-2017 Pokljuka 71
## 5266 34:50.2 +4:22.8 33:39.2 2016-2017 Pokljuka 71
## 5267 34:53.4 +4:26.0 33:48.4 2016-2017 Pokljuka 71
## 5268 35:00.3 +4:32.9 33:14.3 2016-2017 Pokljuka 71
## 5269 35:06.4 +4:39.0 33:49.4 2016-2017 Pokljuka 71
## 5270 35:08.2 +4:40.8 33:17.2 2016-2017 Pokljuka 71
## 5271 35:08.4 +4:41.0 33:16.4 2016-2017 Pokljuka 71
## 5272 35:09.5 +4:42.1 33:08.5 2016-2017 Pokljuka 71
## 5273 35:15.8 +4:48.4 33:25.8 2016-2017 Pokljuka 71
## 5274 35:18.3 +4:50.9 33:20.3 2016-2017 Pokljuka 71
## 5275 35:19.4 +4:52.0 33:12.4 2016-2017 Pokljuka 71
## 5276 35:22.0 +4:54.6 33:43.0 2016-2017 Pokljuka 71
## 5277 35:45.0 +5:17.6 34:21.0 2016-2017 Pokljuka 71
## 5278 36:03.8 +5:36.4 34:07.8 2016-2017 Pokljuka 71
## 5279 37:10.2 +6:42.8 35:38.2 2016-2017 Pokljuka 71
## 5280 2016-2017 Pokljuka 71
## 5281 2016-2017 Pokljuka 71
## 5282 23:11.7 <NA> 2016-2017 Pokljuka 72
## 5283 23:25.4 +13.7 <NA> 2016-2017 Pokljuka 72
## 5284 23:26.8 +15.1 <NA> 2016-2017 Pokljuka 72
## 5285 23:32.6 +20.9 <NA> 2016-2017 Pokljuka 72
## 5286 23:38.7 +27.0 <NA> 2016-2017 Pokljuka 72
## 5287 23:41.2 +29.5 <NA> 2016-2017 Pokljuka 72
## 5288 23:43.1 +31.4 <NA> 2016-2017 Pokljuka 72
## 5289 23:44.3 +32.6 <NA> 2016-2017 Pokljuka 72
## 5290 23:47.8 +36.1 <NA> 2016-2017 Pokljuka 72
## 5291 23:50.1 +38.4 <NA> 2016-2017 Pokljuka 72
## 5292 23:51.1 +39.4 <NA> 2016-2017 Pokljuka 72
## 5293 24:03.7 +52.0 <NA> 2016-2017 Pokljuka 72
## 5294 24:03.9 +52.2 <NA> 2016-2017 Pokljuka 72
## 5295 24:16.4 +1:04.7 <NA> 2016-2017 Pokljuka 72
## 5296 24:21.7 +1:10.0 <NA> 2016-2017 Pokljuka 72
## 5297 24:22.2 +1:10.5 <NA> 2016-2017 Pokljuka 72
## 5298 24:23.0 +1:11.3 <NA> 2016-2017 Pokljuka 72
## 5299 24:25.0 +1:13.3 <NA> 2016-2017 Pokljuka 72
## 5300 24:25.6 +1:13.9 <NA> 2016-2017 Pokljuka 72
## 5301 24:26.8 +1:15.1 <NA> 2016-2017 Pokljuka 72
## 5302 24:28.3 +1:16.6 <NA> 2016-2017 Pokljuka 72
## 5303 24:28.3 +1:16.6 <NA> 2016-2017 Pokljuka 72
## 5304 24:28.4 +1:16.7 <NA> 2016-2017 Pokljuka 72
## 5305 24:28.7 +1:17.0 <NA> 2016-2017 Pokljuka 72
## 5306 24:29.8 +1:18.1 <NA> 2016-2017 Pokljuka 72
## 5307 24:33.1 +1:21.4 <NA> 2016-2017 Pokljuka 72
## 5308 24:35.2 +1:23.5 <NA> 2016-2017 Pokljuka 72
## 5309 24:35.6 +1:23.9 <NA> 2016-2017 Pokljuka 72
## 5310 24:35.9 +1:24.2 <NA> 2016-2017 Pokljuka 72
## 5311 24:39.0 +1:27.3 <NA> 2016-2017 Pokljuka 72
## 5312 24:42.1 +1:30.4 <NA> 2016-2017 Pokljuka 72
## 5313 24:42.4 +1:30.7 <NA> 2016-2017 Pokljuka 72
## 5314 24:42.6 +1:30.9 <NA> 2016-2017 Pokljuka 72
## 5315 24:43.6 +1:31.9 <NA> 2016-2017 Pokljuka 72
## 5316 24:44.7 +1:33.0 <NA> 2016-2017 Pokljuka 72
## 5317 24:44.7 +1:33.0 <NA> 2016-2017 Pokljuka 72
## 5318 24:46.6 +1:34.9 <NA> 2016-2017 Pokljuka 72
## 5319 24:47.9 +1:36.2 <NA> 2016-2017 Pokljuka 72
## 5320 24:51.0 +1:39.3 <NA> 2016-2017 Pokljuka 72
## 5321 24:51.0 +1:39.3 <NA> 2016-2017 Pokljuka 72
## 5322 24:54.8 +1:43.1 <NA> 2016-2017 Pokljuka 72
## 5323 24:57.2 +1:45.5 <NA> 2016-2017 Pokljuka 72
## 5324 24:57.2 +1:45.5 <NA> 2016-2017 Pokljuka 72
## 5325 24:59.0 +1:47.3 <NA> 2016-2017 Pokljuka 72
## 5326 25:01.3 +1:49.6 <NA> 2016-2017 Pokljuka 72
## 5327 25:01.5 +1:49.8 <NA> 2016-2017 Pokljuka 72
## 5328 25:02.2 +1:50.5 <NA> 2016-2017 Pokljuka 72
## 5329 25:03.0 +1:51.3 <NA> 2016-2017 Pokljuka 72
## 5330 25:03.3 +1:51.6 <NA> 2016-2017 Pokljuka 72
## 5331 25:04.0 +1:52.3 <NA> 2016-2017 Pokljuka 72
## 5332 25:04.1 +1:52.4 <NA> 2016-2017 Pokljuka 72
## 5333 25:07.3 +1:55.6 <NA> 2016-2017 Pokljuka 72
## 5334 25:10.1 +1:58.4 <NA> 2016-2017 Pokljuka 72
## 5335 25:10.1 +1:58.4 <NA> 2016-2017 Pokljuka 72
## 5336 25:11.7 +2:00.0 <NA> 2016-2017 Pokljuka 72
## 5337 25:12.4 +2:00.7 <NA> 2016-2017 Pokljuka 72
## 5338 25:15.0 +2:03.3 <NA> 2016-2017 Pokljuka 72
## 5339 25:18.7 +2:07.0 <NA> 2016-2017 Pokljuka 72
## 5340 25:22.0 +2:10.3 <NA> 2016-2017 Pokljuka 72
## 5341 25:25.3 +2:13.6 <NA> 2016-2017 Pokljuka 72
## 5342 25:27.1 +2:15.4 <NA> 2016-2017 Pokljuka 72
## 5343 25:27.3 +2:15.6 <NA> 2016-2017 Pokljuka 72
## 5344 25:28.5 +2:16.8 <NA> 2016-2017 Pokljuka 72
## 5345 25:29.1 +2:17.4 <NA> 2016-2017 Pokljuka 72
## 5346 25:30.1 +2:18.4 <NA> 2016-2017 Pokljuka 72
## 5347 25:31.4 +2:19.7 <NA> 2016-2017 Pokljuka 72
## 5348 25:36.1 +2:24.4 <NA> 2016-2017 Pokljuka 72
## 5349 25:36.2 +2:24.5 <NA> 2016-2017 Pokljuka 72
## 5350 25:37.4 +2:25.7 <NA> 2016-2017 Pokljuka 72
## 5351 25:37.9 +2:26.2 <NA> 2016-2017 Pokljuka 72
## 5352 25:38.1 +2:26.4 <NA> 2016-2017 Pokljuka 72
## 5353 25:39.0 +2:27.3 <NA> 2016-2017 Pokljuka 72
## 5354 25:46.8 +2:35.1 <NA> 2016-2017 Pokljuka 72
## 5355 25:50.5 +2:38.8 <NA> 2016-2017 Pokljuka 72
## 5356 25:51.7 +2:40.0 <NA> 2016-2017 Pokljuka 72
## 5357 25:52.0 +2:40.3 <NA> 2016-2017 Pokljuka 72
## 5358 25:59.4 +2:47.7 <NA> 2016-2017 Pokljuka 72
## 5359 25:59.7 +2:48.0 <NA> 2016-2017 Pokljuka 72
## 5360 26:01.6 +2:49.9 <NA> 2016-2017 Pokljuka 72
## 5361 26:10.1 +2:58.4 <NA> 2016-2017 Pokljuka 72
## 5362 26:10.6 +2:58.9 <NA> 2016-2017 Pokljuka 72
## 5363 26:11.8 +3:00.1 <NA> 2016-2017 Pokljuka 72
## 5364 26:11.8 +3:00.1 <NA> 2016-2017 Pokljuka 72
## 5365 26:12.3 +3:00.6 <NA> 2016-2017 Pokljuka 72
## 5366 26:12.9 +3:01.2 <NA> 2016-2017 Pokljuka 72
## 5367 26:13.0 +3:01.3 <NA> 2016-2017 Pokljuka 72
## 5368 26:13.8 +3:02.1 <NA> 2016-2017 Pokljuka 72
## 5369 26:18.1 +3:06.4 <NA> 2016-2017 Pokljuka 72
## 5370 26:18.7 +3:07.0 <NA> 2016-2017 Pokljuka 72
## 5371 26:19.6 +3:07.9 <NA> 2016-2017 Pokljuka 72
## 5372 26:20.2 +3:08.5 <NA> 2016-2017 Pokljuka 72
## 5373 26:35.3 +3:23.6 <NA> 2016-2017 Pokljuka 72
## 5374 26:38.9 +3:27.2 <NA> 2016-2017 Pokljuka 72
## 5375 26:40.2 +3:28.5 <NA> 2016-2017 Pokljuka 72
## 5376 26:40.8 +3:29.1 <NA> 2016-2017 Pokljuka 72
## 5377 26:41.1 +3:29.4 <NA> 2016-2017 Pokljuka 72
## 5378 26:49.0 +3:37.3 <NA> 2016-2017 Pokljuka 72
## 5379 26:49.5 +3:37.8 <NA> 2016-2017 Pokljuka 72
## 5380 26:52.3 +3:40.6 <NA> 2016-2017 Pokljuka 72
## 5381 26:52.4 +3:40.7 <NA> 2016-2017 Pokljuka 72
## 5382 27:02.7 +3:51.0 <NA> 2016-2017 Pokljuka 72
## 5383 27:03.2 +3:51.5 <NA> 2016-2017 Pokljuka 72
## 5384 27:20.0 +4:08.3 <NA> 2016-2017 Pokljuka 72
## 5385 27:27.9 +4:16.2 <NA> 2016-2017 Pokljuka 72
## 5386 31:24.2 30:39.2 2016-2017 PyeongChang 73
## 5387 31:58.7 +34.5 30:28.7 2016-2017 PyeongChang 73
## 5388 32:00.9 +36.7 32:00.9 2016-2017 PyeongChang 73
## 5389 32:27.4 +1:03.2 31:21.4 2016-2017 PyeongChang 73
## 5390 32:33.7 +1:09.5 31:27.7 2016-2017 PyeongChang 73
## 5391 32:37.7 +1:13.5 31:27.7 2016-2017 PyeongChang 73
## 5392 32:44.5 +1:20.3 31:56.5 2016-2017 PyeongChang 73
## 5393 32:44.6 +1:20.4 31:15.6 2016-2017 PyeongChang 73
## 5394 32:44.8 +1:20.6 32:03.8 2016-2017 PyeongChang 73
## 5395 32:44.8 +1:20.6 31:31.8 2016-2017 PyeongChang 73
## 5396 32:45.1 +1:20.9 31:20.1 2016-2017 PyeongChang 73
## 5397 32:59.6 +1:35.4 31:33.6 2016-2017 PyeongChang 73
## 5398 33:00.0 +1:35.8 32:10.0 2016-2017 PyeongChang 73
## 5399 33:08.0 +1:43.8 31:48.0 2016-2017 PyeongChang 73
## 5400 33:13.4 +1:49.2 31:07.4 2016-2017 PyeongChang 73
## 5401 33:19.2 +1:55.0 31:50.2 2016-2017 PyeongChang 73
## 5402 33:25.2 +2:01.0 31:20.2 2016-2017 PyeongChang 73
## 5403 33:29.5 +2:05.3 31:45.5 2016-2017 PyeongChang 73
## 5404 33:30.0 +2:05.8 31:53.0 2016-2017 PyeongChang 73
## 5405 33:30.5 +2:06.3 32:13.5 2016-2017 PyeongChang 73
## 5406 33:31.1 +2:06.9 31:41.1 2016-2017 PyeongChang 73
## 5407 33:31.7 +2:07.5 32:37.7 2016-2017 PyeongChang 73
## 5408 33:32.1 +2:07.9 32:15.1 2016-2017 PyeongChang 73
## 5409 33:32.6 +2:08.4 31:59.6 2016-2017 PyeongChang 73
## 5410 33:38.5 +2:14.3 31:45.5 2016-2017 PyeongChang 73
## 5411 33:44.7 +2:20.5 32:42.7 2016-2017 PyeongChang 73
## 5412 33:50.8 +2:26.6 32:23.8 2016-2017 PyeongChang 73
## 5413 33:53.1 +2:28.9 31:49.1 2016-2017 PyeongChang 73
## 5414 33:59.6 +2:35.4 32:17.6 2016-2017 PyeongChang 73
## 5415 34:00.1 +2:35.9 32:38.1 2016-2017 PyeongChang 73
## 5416 34:31.3 +3:07.1 32:35.3 2016-2017 PyeongChang 73
## 5417 34:41.6 +3:17.4 32:07.6 2016-2017 PyeongChang 73
## 5418 34:44.3 +3:20.1 33:36.3 2016-2017 PyeongChang 73
## 5419 34:54.9 +3:30.7 33:25.9 2016-2017 PyeongChang 73
## 5420 34:56.3 +3:32.1 32:49.3 2016-2017 PyeongChang 73
## 5421 34:58.7 +3:34.5 33:04.7 2016-2017 PyeongChang 73
## 5422 34:59.3 +3:35.1 33:24.3 2016-2017 PyeongChang 73
## 5423 35:06.0 +3:41.8 32:54.0 2016-2017 PyeongChang 73
## 5424 35:07.3 +3:43.1 32:28.3 2016-2017 PyeongChang 73
## 5425 35:07.6 +3:43.4 33:01.6 2016-2017 PyeongChang 73
## 5426 35:16.4 +3:52.2 33:05.4 2016-2017 PyeongChang 73
## 5427 35:22.3 +3:58.1 33:06.3 2016-2017 PyeongChang 73
## 5428 35:30.1 +4:05.9 33:50.1 2016-2017 PyeongChang 73
## 5429 35:34.0 +4:09.8 33:52.0 2016-2017 PyeongChang 73
## 5430 35:40.4 +4:16.2 33:01.4 2016-2017 PyeongChang 73
## 5431 35:41.7 +4:17.5 33:41.7 2016-2017 PyeongChang 73
## 5432 35:48.0 +4:23.8 33:38.0 2016-2017 PyeongChang 73
## 5433 35:50.3 +4:26.1 33:41.3 2016-2017 PyeongChang 73
## 5434 35:53.0 +4:28.8 33:32.0 2016-2017 PyeongChang 73
## 5435 36:01.1 +4:36.9 33:27.1 2016-2017 PyeongChang 73
## 5436 36:03.2 +4:39.0 33:51.2 2016-2017 PyeongChang 73
## 5437 36:12.2 +4:48.0 34:07.2 2016-2017 PyeongChang 73
## 5438 36:18.2 +4:54.0 34:04.2 2016-2017 PyeongChang 73
## 5439 36:22.0 +4:57.8 34:29.0 2016-2017 PyeongChang 73
## 5440 36:37.2 +5:13.0 34:03.2 2016-2017 PyeongChang 73
## 5441 36:38.2 +5:14.0 34:24.2 2016-2017 PyeongChang 73
## 5442 37:11.8 +5:47.6 34:52.8 2016-2017 PyeongChang 73
## 5443 37:33.5 +6:09.3 35:26.5 2016-2017 PyeongChang 73
## 5444 2016-2017 PyeongChang 73
## 5445 2016-2017 PyeongChang 73
## 5446 23:11.1 <NA> 2016-2017 PyeongChang 74
## 5447 23:51.8 +40.7 <NA> 2016-2017 PyeongChang 74
## 5448 23:56.5 +45.4 <NA> 2016-2017 PyeongChang 74
## 5449 23:59.2 +48.1 <NA> 2016-2017 PyeongChang 74
## 5450 24:01.4 +50.3 <NA> 2016-2017 PyeongChang 74
## 5451 24:05.2 +54.1 <NA> 2016-2017 PyeongChang 74
## 5452 24:13.4 +1:02.3 <NA> 2016-2017 PyeongChang 74
## 5453 24:16.6 +1:05.5 <NA> 2016-2017 PyeongChang 74
## 5454 24:17.4 +1:06.3 <NA> 2016-2017 PyeongChang 74
## 5455 24:18.8 +1:07.7 <NA> 2016-2017 PyeongChang 74
## 5456 24:21.5 +1:10.4 <NA> 2016-2017 PyeongChang 74
## 5457 24:24.4 +1:13.3 <NA> 2016-2017 PyeongChang 74
## 5458 24:28.0 +1:16.9 <NA> 2016-2017 PyeongChang 74
## 5459 24:28.3 +1:17.2 <NA> 2016-2017 PyeongChang 74
## 5460 24:31.0 +1:19.9 <NA> 2016-2017 PyeongChang 74
## 5461 24:32.7 +1:21.6 <NA> 2016-2017 PyeongChang 74
## 5462 24:36.2 +1:25.1 <NA> 2016-2017 PyeongChang 74
## 5463 24:36.8 +1:25.7 <NA> 2016-2017 PyeongChang 74
## 5464 24:38.0 +1:26.9 <NA> 2016-2017 PyeongChang 74
## 5465 24:39.9 +1:28.8 <NA> 2016-2017 PyeongChang 74
## 5466 24:40.1 +1:29.0 <NA> 2016-2017 PyeongChang 74
## 5467 24:40.1 +1:29.0 <NA> 2016-2017 PyeongChang 74
## 5468 24:41.4 +1:30.3 <NA> 2016-2017 PyeongChang 74
## 5469 24:44.2 +1:33.1 <NA> 2016-2017 PyeongChang 74
## 5470 24:45.8 +1:34.7 <NA> 2016-2017 PyeongChang 74
## 5471 24:48.5 +1:37.4 <NA> 2016-2017 PyeongChang 74
## 5472 24:51.4 +1:40.3 <NA> 2016-2017 PyeongChang 74
## 5473 24:53.2 +1:42.1 <NA> 2016-2017 PyeongChang 74
## 5474 24:53.4 +1:42.3 <NA> 2016-2017 PyeongChang 74
## 5475 24:54.6 +1:43.5 <NA> 2016-2017 PyeongChang 74
## 5476 25:00.9 +1:49.8 <NA> 2016-2017 PyeongChang 74
## 5477 25:04.0 +1:52.9 <NA> 2016-2017 PyeongChang 74
## 5478 25:04.2 +1:53.1 <NA> 2016-2017 PyeongChang 74
## 5479 25:05.4 +1:54.3 <NA> 2016-2017 PyeongChang 74
## 5480 25:07.1 +1:56.0 <NA> 2016-2017 PyeongChang 74
## 5481 25:10.8 +1:59.7 <NA> 2016-2017 PyeongChang 74
## 5482 25:14.8 +2:03.7 <NA> 2016-2017 PyeongChang 74
## 5483 25:15.9 +2:04.8 <NA> 2016-2017 PyeongChang 74
## 5484 25:16.2 +2:05.1 <NA> 2016-2017 PyeongChang 74
## 5485 25:16.9 +2:05.8 <NA> 2016-2017 PyeongChang 74
## 5486 25:17.1 +2:06.0 <NA> 2016-2017 PyeongChang 74
## 5487 25:17.5 +2:06.4 <NA> 2016-2017 PyeongChang 74
## 5488 25:18.4 +2:07.3 <NA> 2016-2017 PyeongChang 74
## 5489 25:18.4 +2:07.3 <NA> 2016-2017 PyeongChang 74
## 5490 25:19.6 +2:08.5 <NA> 2016-2017 PyeongChang 74
## 5491 25:21.4 +2:10.3 <NA> 2016-2017 PyeongChang 74
## 5492 25:22.4 +2:11.3 <NA> 2016-2017 PyeongChang 74
## 5493 25:22.9 +2:11.8 <NA> 2016-2017 PyeongChang 74
## 5494 25:23.4 +2:12.3 <NA> 2016-2017 PyeongChang 74
## 5495 25:24.6 +2:13.5 <NA> 2016-2017 PyeongChang 74
## 5496 25:24.6 +2:13.5 <NA> 2016-2017 PyeongChang 74
## 5497 25:27.1 +2:16.0 <NA> 2016-2017 PyeongChang 74
## 5498 25:29.9 +2:18.8 <NA> 2016-2017 PyeongChang 74
## 5499 25:31.6 +2:20.5 <NA> 2016-2017 PyeongChang 74
## 5500 25:36.2 +2:25.1 <NA> 2016-2017 PyeongChang 74
## 5501 25:44.7 +2:33.6 <NA> 2016-2017 PyeongChang 74
## 5502 25:45.3 +2:34.2 <NA> 2016-2017 PyeongChang 74
## 5503 25:45.5 +2:34.4 <NA> 2016-2017 PyeongChang 74
## 5504 25:49.6 +2:38.5 <NA> 2016-2017 PyeongChang 74
## 5505 25:49.9 +2:38.8 <NA> 2016-2017 PyeongChang 74
## 5506 25:50.7 +2:39.6 <NA> 2016-2017 PyeongChang 74
## 5507 25:51.8 +2:40.7 <NA> 2016-2017 PyeongChang 74
## 5508 25:54.6 +2:43.5 <NA> 2016-2017 PyeongChang 74
## 5509 25:54.9 +2:43.8 <NA> 2016-2017 PyeongChang 74
## 5510 25:58.4 +2:47.3 <NA> 2016-2017 PyeongChang 74
## 5511 26:01.1 +2:50.0 <NA> 2016-2017 PyeongChang 74
## 5512 26:02.1 +2:51.0 <NA> 2016-2017 PyeongChang 74
## 5513 26:02.3 +2:51.2 <NA> 2016-2017 PyeongChang 74
## 5514 26:03.3 +2:52.2 <NA> 2016-2017 PyeongChang 74
## 5515 26:06.7 +2:55.6 <NA> 2016-2017 PyeongChang 74
## 5516 26:07.1 +2:56.0 <NA> 2016-2017 PyeongChang 74
## 5517 26:08.5 +2:57.4 <NA> 2016-2017 PyeongChang 74
## 5518 26:09.5 +2:58.4 <NA> 2016-2017 PyeongChang 74
## 5519 26:13.3 +3:02.2 <NA> 2016-2017 PyeongChang 74
## 5520 26:13.7 +3:02.6 <NA> 2016-2017 PyeongChang 74
## 5521 26:14.2 +3:03.1 <NA> 2016-2017 PyeongChang 74
## 5522 26:15.4 +3:04.3 <NA> 2016-2017 PyeongChang 74
## 5523 26:16.7 +3:05.6 <NA> 2016-2017 PyeongChang 74
## 5524 26:23.4 +3:12.3 <NA> 2016-2017 PyeongChang 74
## 5525 26:24.4 +3:13.3 <NA> 2016-2017 PyeongChang 74
## 5526 26:27.8 +3:16.7 <NA> 2016-2017 PyeongChang 74
## 5527 26:28.5 +3:17.4 <NA> 2016-2017 PyeongChang 74
## 5528 26:30.5 +3:19.4 <NA> 2016-2017 PyeongChang 74
## 5529 26:32.8 +3:21.7 <NA> 2016-2017 PyeongChang 74
## 5530 26:36.9 +3:25.8 <NA> 2016-2017 PyeongChang 74
## 5531 26:38.4 +3:27.3 <NA> 2016-2017 PyeongChang 74
## 5532 26:38.9 +3:27.8 <NA> 2016-2017 PyeongChang 74
## 5533 26:43.6 +3:32.5 <NA> 2016-2017 PyeongChang 74
## 5534 26:45.8 +3:34.7 <NA> 2016-2017 PyeongChang 74
## 5535 26:49.8 +3:38.7 <NA> 2016-2017 PyeongChang 74
## 5536 26:50.5 +3:39.4 <NA> 2016-2017 PyeongChang 74
## 5537 26:52.1 +3:41.0 <NA> 2016-2017 PyeongChang 74
## 5538 26:55.9 +3:44.8 <NA> 2016-2017 PyeongChang 74
## 5539 26:59.5 +3:48.4 <NA> 2016-2017 PyeongChang 74
## 5540 27:04.4 +3:53.3 <NA> 2016-2017 PyeongChang 74
## 5541 27:11.0 +3:59.9 <NA> 2016-2017 PyeongChang 74
## 5542 27:25.1 +4:14.0 <NA> 2016-2017 PyeongChang 74
## 5543 27:31.3 +4:20.2 <NA> 2016-2017 PyeongChang 74
## 5544 27:39.5 +4:28.4 <NA> 2016-2017 PyeongChang 74
## 5545 27:39.5 +4:28.4 <NA> 2016-2017 PyeongChang 74
## 5546 27:49.2 +4:38.1 <NA> 2016-2017 PyeongChang 74
## 5547 28:01.4 +4:50.3 <NA> 2016-2017 PyeongChang 74
## 5548 <NA> 2016-2017 PyeongChang 74
## 5549 33:57.5 33:57.5 2016-2017 Ruhpolding 75
## 5550 34:15.8 +18.3 33:35.8 2016-2017 Ruhpolding 75
## 5551 34:17.0 +19.5 32:44.0 2016-2017 Ruhpolding 75
## 5552 34:18.8 +21.3 32:50.8 2016-2017 Ruhpolding 75
## 5553 34:21.6 +24.1 33:29.6 2016-2017 Ruhpolding 75
## 5554 34:35.8 +38.3 33:32.8 2016-2017 Ruhpolding 75
## 5555 34:37.2 +39.7 33:44.2 2016-2017 Ruhpolding 75
## 5556 34:38.6 +41.1 33:11.6 2016-2017 Ruhpolding 75
## 5557 34:44.2 +46.7 33:26.2 2016-2017 Ruhpolding 75
## 5558 34:44.3 +46.8 33:17.3 2016-2017 Ruhpolding 75
## 5559 34:50.5 +53.0 32:53.5 2016-2017 Ruhpolding 75
## 5560 34:53.1 +55.6 33:20.1 2016-2017 Ruhpolding 75
## 5561 34:59.9 +1:02.4 34:41.9 2016-2017 Ruhpolding 75
## 5562 35:00.3 +1:02.8 34:04.3 2016-2017 Ruhpolding 75
## 5563 35:00.7 +1:03.2 33:10.7 2016-2017 Ruhpolding 75
## 5564 35:03.4 +1:05.9 33:02.4 2016-2017 Ruhpolding 75
## 5565 35:04.3 +1:06.8 33:21.3 2016-2017 Ruhpolding 75
## 5566 35:06.4 +1:08.9 34:06.4 2016-2017 Ruhpolding 75
## 5567 35:08.5 +1:11.0 33:55.5 2016-2017 Ruhpolding 75
## 5568 35:17.1 +1:19.6 34:06.1 2016-2017 Ruhpolding 75
## 5569 35:20.4 +1:22.9 33:07.4 2016-2017 Ruhpolding 75
## 5570 35:27.3 +1:29.8 34:01.3 2016-2017 Ruhpolding 75
## 5571 35:28.9 +1:31.4 33:56.9 2016-2017 Ruhpolding 75
## 5572 35:29.1 +1:31.6 34:17.1 2016-2017 Ruhpolding 75
## 5573 35:29.7 +1:32.2 34:04.7 2016-2017 Ruhpolding 75
## 5574 35:31.3 +1:33.8 34:07.3 2016-2017 Ruhpolding 75
## 5575 35:32.2 +1:34.7 33:46.2 2016-2017 Ruhpolding 75
## 5576 35:33.4 +1:35.9 34:05.4 2016-2017 Ruhpolding 75
## 5577 35:34.7 +1:37.2 34:11.7 2016-2017 Ruhpolding 75
## 5578 35:34.8 +1:37.3 33:59.8 2016-2017 Ruhpolding 75
## 5579 35:55.4 +1:57.9 34:09.4 2016-2017 Ruhpolding 75
## 5580 36:15.6 +2:18.1 34:44.6 2016-2017 Ruhpolding 75
## 5581 36:17.8 +2:20.3 34:11.8 2016-2017 Ruhpolding 75
## 5582 36:19.7 +2:22.2 35:19.7 2016-2017 Ruhpolding 75
## 5583 36:23.2 +2:25.7 34:05.2 2016-2017 Ruhpolding 75
## 5584 36:38.1 +2:40.6 35:30.1 2016-2017 Ruhpolding 75
## 5585 36:39.5 +2:42.0 34:27.5 2016-2017 Ruhpolding 75
## 5586 36:49.1 +2:51.6 34:35.1 2016-2017 Ruhpolding 75
## 5587 36:49.3 +2:51.8 35:10.3 2016-2017 Ruhpolding 75
## 5588 37:03.6 +3:06.1 35:12.6 2016-2017 Ruhpolding 75
## 5589 37:06.8 +3:09.3 35:10.8 2016-2017 Ruhpolding 75
## 5590 37:07.9 +3:10.4 35:17.9 2016-2017 Ruhpolding 75
## 5591 37:19.6 +3:22.1 35:27.6 2016-2017 Ruhpolding 75
## 5592 37:28.5 +3:31.0 35:21.5 2016-2017 Ruhpolding 75
## 5593 37:45.8 +3:48.3 35:52.8 2016-2017 Ruhpolding 75
## 5594 37:54.0 +3:56.5 35:51.0 2016-2017 Ruhpolding 75
## 5595 38:03.9 +4:06.4 35:47.9 2016-2017 Ruhpolding 75
## 5596 38:10.6 +4:13.1 36:48.6 2016-2017 Ruhpolding 75
## 5597 38:21.4 +4:23.9 36:34.4 2016-2017 Ruhpolding 75
## 5598 38:32.5 +4:35.0 36:17.5 2016-2017 Ruhpolding 75
## 5599 38:59.2 +5:01.7 36:46.2 2016-2017 Ruhpolding 75
## 5600 39:16.9 +5:19.4 36:55.9 2016-2017 Ruhpolding 75
## 5601 39:16.9 +5:19.4 37:34.9 2016-2017 Ruhpolding 75
## 5602 40:08.0 +6:10.5 37:57.0 2016-2017 Ruhpolding 75
## 5603 40:33.4 +6:35.9 38:35.4 2016-2017 Ruhpolding 75
## 5604 2016-2017 Ruhpolding 75
## 5605 2016-2017 Ruhpolding 75
## 5606 2016-2017 Ruhpolding 75
## 5607 2016-2017 Ruhpolding 75
## 5608 2016-2017 Ruhpolding 75
## 5609 22:34.2 <NA> 2016-2017 Ruhpolding 76
## 5610 22:52.2 +18.0 <NA> 2016-2017 Ruhpolding 76
## 5611 23:13.9 +39.7 <NA> 2016-2017 Ruhpolding 76
## 5612 23:26.0 +51.8 <NA> 2016-2017 Ruhpolding 76
## 5613 23:27.0 +52.8 <NA> 2016-2017 Ruhpolding 76
## 5614 23:30.4 +56.2 <NA> 2016-2017 Ruhpolding 76
## 5615 23:33.7 +59.5 <NA> 2016-2017 Ruhpolding 76
## 5616 23:34.6 +1:00.4 <NA> 2016-2017 Ruhpolding 76
## 5617 23:37.0 +1:02.8 <NA> 2016-2017 Ruhpolding 76
## 5618 23:41.9 +1:07.7 <NA> 2016-2017 Ruhpolding 76
## 5619 23:44.9 +1:10.7 <NA> 2016-2017 Ruhpolding 76
## 5620 23:45.8 +1:11.6 <NA> 2016-2017 Ruhpolding 76
## 5621 23:46.8 +1:12.6 <NA> 2016-2017 Ruhpolding 76
## 5622 23:51.6 +1:17.4 <NA> 2016-2017 Ruhpolding 76
## 5623 23:52.0 +1:17.8 <NA> 2016-2017 Ruhpolding 76
## 5624 23:56.2 +1:22.0 <NA> 2016-2017 Ruhpolding 76
## 5625 23:57.4 +1:23.2 <NA> 2016-2017 Ruhpolding 76
## 5626 23:58.5 +1:24.3 <NA> 2016-2017 Ruhpolding 76
## 5627 23:59.2 +1:25.0 <NA> 2016-2017 Ruhpolding 76
## 5628 24:00.5 +1:26.3 <NA> 2016-2017 Ruhpolding 76
## 5629 24:00.9 +1:26.7 <NA> 2016-2017 Ruhpolding 76
## 5630 24:01.2 +1:27.0 <NA> 2016-2017 Ruhpolding 76
## 5631 24:01.8 +1:27.6 <NA> 2016-2017 Ruhpolding 76
## 5632 24:01.8 +1:27.6 <NA> 2016-2017 Ruhpolding 76
## 5633 24:02.3 +1:28.1 <NA> 2016-2017 Ruhpolding 76
## 5634 24:05.2 +1:31.0 <NA> 2016-2017 Ruhpolding 76
## 5635 24:05.8 +1:31.6 <NA> 2016-2017 Ruhpolding 76
## 5636 24:06.7 +1:32.5 <NA> 2016-2017 Ruhpolding 76
## 5637 24:07.0 +1:32.8 <NA> 2016-2017 Ruhpolding 76
## 5638 24:09.0 +1:34.8 <NA> 2016-2017 Ruhpolding 76
## 5639 24:13.1 +1:38.9 <NA> 2016-2017 Ruhpolding 76
## 5640 24:15.9 +1:41.7 <NA> 2016-2017 Ruhpolding 76
## 5641 24:16.7 +1:42.5 <NA> 2016-2017 Ruhpolding 76
## 5642 24:20.0 +1:45.8 <NA> 2016-2017 Ruhpolding 76
## 5643 24:20.5 +1:46.3 <NA> 2016-2017 Ruhpolding 76
## 5644 24:21.0 +1:46.8 <NA> 2016-2017 Ruhpolding 76
## 5645 24:23.7 +1:49.5 <NA> 2016-2017 Ruhpolding 76
## 5646 24:23.8 +1:49.6 <NA> 2016-2017 Ruhpolding 76
## 5647 24:25.3 +1:51.1 <NA> 2016-2017 Ruhpolding 76
## 5648 24:26.5 +1:52.3 <NA> 2016-2017 Ruhpolding 76
## 5649 24:27.0 +1:52.8 <NA> 2016-2017 Ruhpolding 76
## 5650 24:29.8 +1:55.6 <NA> 2016-2017 Ruhpolding 76
## 5651 24:30.7 +1:56.5 <NA> 2016-2017 Ruhpolding 76
## 5652 24:32.3 +1:58.1 <NA> 2016-2017 Ruhpolding 76
## 5653 24:33.6 +1:59.4 <NA> 2016-2017 Ruhpolding 76
## 5654 24:35.2 +2:01.0 <NA> 2016-2017 Ruhpolding 76
## 5655 24:35.4 +2:01.2 <NA> 2016-2017 Ruhpolding 76
## 5656 24:37.2 +2:03.0 <NA> 2016-2017 Ruhpolding 76
## 5657 24:39.9 +2:05.7 <NA> 2016-2017 Ruhpolding 76
## 5658 24:41.2 +2:07.0 <NA> 2016-2017 Ruhpolding 76
## 5659 24:44.8 +2:10.6 <NA> 2016-2017 Ruhpolding 76
## 5660 24:46.4 +2:12.2 <NA> 2016-2017 Ruhpolding 76
## 5661 24:47.1 +2:12.9 <NA> 2016-2017 Ruhpolding 76
## 5662 24:47.1 +2:12.9 <NA> 2016-2017 Ruhpolding 76
## 5663 24:48.5 +2:14.3 <NA> 2016-2017 Ruhpolding 76
## 5664 24:49.4 +2:15.2 <NA> 2016-2017 Ruhpolding 76
## 5665 24:50.3 +2:16.1 <NA> 2016-2017 Ruhpolding 76
## 5666 24:51.9 +2:17.7 <NA> 2016-2017 Ruhpolding 76
## 5667 24:53.1 +2:18.9 <NA> 2016-2017 Ruhpolding 76
## 5668 24:55.5 +2:21.3 <NA> 2016-2017 Ruhpolding 76
## 5669 24:57.2 +2:23.0 <NA> 2016-2017 Ruhpolding 76
## 5670 25:00.8 +2:26.6 <NA> 2016-2017 Ruhpolding 76
## 5671 25:01.1 +2:26.9 <NA> 2016-2017 Ruhpolding 76
## 5672 25:01.3 +2:27.1 <NA> 2016-2017 Ruhpolding 76
## 5673 25:02.7 +2:28.5 <NA> 2016-2017 Ruhpolding 76
## 5674 25:03.1 +2:28.9 <NA> 2016-2017 Ruhpolding 76
## 5675 25:04.1 +2:29.9 <NA> 2016-2017 Ruhpolding 76
## 5676 25:08.2 +2:34.0 <NA> 2016-2017 Ruhpolding 76
## 5677 25:13.4 +2:39.2 <NA> 2016-2017 Ruhpolding 76
## 5678 25:14.9 +2:40.7 <NA> 2016-2017 Ruhpolding 76
## 5679 25:15.4 +2:41.2 <NA> 2016-2017 Ruhpolding 76
## 5680 25:17.8 +2:43.6 <NA> 2016-2017 Ruhpolding 76
## 5681 25:25.7 +2:51.5 <NA> 2016-2017 Ruhpolding 76
## 5682 25:26.8 +2:52.6 <NA> 2016-2017 Ruhpolding 76
## 5683 25:26.9 +2:52.7 <NA> 2016-2017 Ruhpolding 76
## 5684 25:29.4 +2:55.2 <NA> 2016-2017 Ruhpolding 76
## 5685 25:34.4 +3:00.2 <NA> 2016-2017 Ruhpolding 76
## 5686 25:35.7 +3:01.5 <NA> 2016-2017 Ruhpolding 76
## 5687 25:38.3 +3:04.1 <NA> 2016-2017 Ruhpolding 76
## 5688 25:42.1 +3:07.9 <NA> 2016-2017 Ruhpolding 76
## 5689 25:42.3 +3:08.1 <NA> 2016-2017 Ruhpolding 76
## 5690 25:42.6 +3:08.4 <NA> 2016-2017 Ruhpolding 76
## 5691 25:43.4 +3:09.2 <NA> 2016-2017 Ruhpolding 76
## 5692 25:48.9 +3:14.7 <NA> 2016-2017 Ruhpolding 76
## 5693 25:50.5 +3:16.3 <NA> 2016-2017 Ruhpolding 76
## 5694 25:50.6 +3:16.4 <NA> 2016-2017 Ruhpolding 76
## 5695 25:53.4 +3:19.2 <NA> 2016-2017 Ruhpolding 76
## 5696 25:54.0 +3:19.8 <NA> 2016-2017 Ruhpolding 76
## 5697 25:55.2 +3:21.0 <NA> 2016-2017 Ruhpolding 76
## 5698 25:59.6 +3:25.4 <NA> 2016-2017 Ruhpolding 76
## 5699 26:04.9 +3:30.7 <NA> 2016-2017 Ruhpolding 76
## 5700 26:06.0 +3:31.8 <NA> 2016-2017 Ruhpolding 76
## 5701 26:17.2 +3:43.0 <NA> 2016-2017 Ruhpolding 76
## 5702 26:23.6 +3:49.4 <NA> 2016-2017 Ruhpolding 76
## 5703 26:23.7 +3:49.5 <NA> 2016-2017 Ruhpolding 76
## 5704 26:28.3 +3:54.1 <NA> 2016-2017 Ruhpolding 76
## 5705 26:29.2 +3:55.0 <NA> 2016-2017 Ruhpolding 76
## 5706 26:35.0 +4:00.8 <NA> 2016-2017 Ruhpolding 76
## 5707 26:36.4 +4:02.2 <NA> 2016-2017 Ruhpolding 76
## 5708 26:38.9 +4:04.7 <NA> 2016-2017 Ruhpolding 76
## 5709 26:41.5 +4:07.3 <NA> 2016-2017 Ruhpolding 76
## 5710 26:43.3 +4:09.1 <NA> 2016-2017 Ruhpolding 76
## 5711 26:51.3 +4:17.1 <NA> 2016-2017 Ruhpolding 76
## 5712 26:58.4 +4:24.2 <NA> 2016-2017 Ruhpolding 76
## 5713 27:03.2 +4:29.0 <NA> 2016-2017 Ruhpolding 76
## 5714 27:25.5 +4:51.3 <NA> 2016-2017 Ruhpolding 76
## 5715 27:39.1 +5:04.9 <NA> 2016-2017 Ruhpolding 76
## 5716 36:30.3 <NA> 2017-2018 Annecy 77
## 5717 36:34.2 +3.9 <NA> 2017-2018 Annecy 77
## 5718 36:36.5 +6.2 <NA> 2017-2018 Annecy 77
## 5719 36:55.4 +25.1 <NA> 2017-2018 Annecy 77
## 5720 36:56.1 +25.8 <NA> 2017-2018 Annecy 77
## 5721 37:10.8 +40.5 <NA> 2017-2018 Annecy 77
## 5722 37:22.3 +52.0 <NA> 2017-2018 Annecy 77
## 5723 37:22.8 +52.5 <NA> 2017-2018 Annecy 77
## 5724 37:31.7 +1:01.4 <NA> 2017-2018 Annecy 77
## 5725 37:40.7 +1:10.4 <NA> 2017-2018 Annecy 77
## 5726 37:43.5 +1:13.2 <NA> 2017-2018 Annecy 77
## 5727 37:43.8 +1:13.5 <NA> 2017-2018 Annecy 77
## 5728 37:44.0 +1:13.7 <NA> 2017-2018 Annecy 77
## 5729 37:51.4 +1:21.1 <NA> 2017-2018 Annecy 77
## 5730 38:01.2 +1:30.9 <NA> 2017-2018 Annecy 77
## 5731 38:18.6 +1:48.3 <NA> 2017-2018 Annecy 77
## 5732 38:23.9 +1:53.6 <NA> 2017-2018 Annecy 77
## 5733 38:26.3 +1:56.0 <NA> 2017-2018 Annecy 77
## 5734 38:33.8 +2:03.5 <NA> 2017-2018 Annecy 77
## 5735 38:39.7 +2:09.4 <NA> 2017-2018 Annecy 77
## 5736 38:47.9 +2:17.6 <NA> 2017-2018 Annecy 77
## 5737 38:48.0 +2:17.7 <NA> 2017-2018 Annecy 77
## 5738 38:52.7 +2:22.4 <NA> 2017-2018 Annecy 77
## 5739 39:22.8 +2:52.5 <NA> 2017-2018 Annecy 77
## 5740 39:49.5 +3:19.2 <NA> 2017-2018 Annecy 77
## 5741 40:35.7 +4:05.4 <NA> 2017-2018 Annecy 77
## 5742 40:44.9 +4:14.6 <NA> 2017-2018 Annecy 77
## 5743 40:52.4 +4:22.1 <NA> 2017-2018 Annecy 77
## 5744 41:43.4 +5:13.1 <NA> 2017-2018 Annecy 77
## 5745 43:02.2 +6:31.9 <NA> 2017-2018 Annecy 77
## 5746 32:52.7 32:52.7 2017-2018 Annecy 78
## 5747 33:54.1 +1:01.4 33:33.1 2017-2018 Annecy 78
## 5748 34:03.2 +1:10.5 33:08.2 2017-2018 Annecy 78
## 5749 34:03.4 +1:10.7 32:42.4 2017-2018 Annecy 78
## 5750 34:25.0 +1:32.3 33:43.0 2017-2018 Annecy 78
## 5751 34:34.6 +1:41.9 33:48.6 2017-2018 Annecy 78
## 5752 34:40.6 +1:47.9 32:46.6 2017-2018 Annecy 78
## 5753 34:40.9 +1:48.2 33:31.9 2017-2018 Annecy 78
## 5754 34:49.6 +1:56.9 33:12.6 2017-2018 Annecy 78
## 5755 34:57.9 +2:05.2 33:23.9 2017-2018 Annecy 78
## 5756 34:59.5 +2:06.8 33:27.5 2017-2018 Annecy 78
## 5757 34:59.6 +2:06.9 34:24.6 2017-2018 Annecy 78
## 5758 35:05.8 +2:13.1 33:55.8 2017-2018 Annecy 78
## 5759 35:06.6 +2:13.9 33:16.6 2017-2018 Annecy 78
## 5760 35:19.3 +2:26.6 34:11.3 2017-2018 Annecy 78
## 5761 35:25.5 +2:32.8 34:16.5 2017-2018 Annecy 78
## 5762 35:26.6 +2:33.9 33:55.6 2017-2018 Annecy 78
## 5763 35:27.5 +2:34.8 33:36.5 2017-2018 Annecy 78
## 5764 35:29.7 +2:37.0 33:55.7 2017-2018 Annecy 78
## 5765 35:43.0 +2:50.3 33:31.0 2017-2018 Annecy 78
## 5766 35:51.6 +2:58.9 33:34.6 2017-2018 Annecy 78
## 5767 35:52.9 +3:00.2 34:03.9 2017-2018 Annecy 78
## 5768 35:53.9 +3:01.2 34:40.9 2017-2018 Annecy 78
## 5769 35:54.2 +3:01.5 34:26.2 2017-2018 Annecy 78
## 5770 35:55.3 +3:02.6 34:26.3 2017-2018 Annecy 78
## 5771 35:55.8 +3:03.1 34:47.8 2017-2018 Annecy 78
## 5772 35:56.8 +3:04.1 34:42.8 2017-2018 Annecy 78
## 5773 35:57.2 +3:04.5 34:19.2 2017-2018 Annecy 78
## 5774 35:59.3 +3:06.6 34:15.3 2017-2018 Annecy 78
## 5775 35:59.7 +3:07.0 34:39.7 2017-2018 Annecy 78
## 5776 36:04.9 +3:12.2 34:59.9 2017-2018 Annecy 78
## 5777 36:18.9 +3:26.2 34:14.9 2017-2018 Annecy 78
## 5778 36:24.2 +3:31.5 35:13.2 2017-2018 Annecy 78
## 5779 36:37.4 +3:44.7 34:39.4 2017-2018 Annecy 78
## 5780 36:44.5 +3:51.8 34:29.5 2017-2018 Annecy 78
## 5781 36:45.6 +3:52.9 35:13.6 2017-2018 Annecy 78
## 5782 36:46.0 +3:53.3 34:37.0 2017-2018 Annecy 78
## 5783 36:48.3 +3:55.6 34:50.3 2017-2018 Annecy 78
## 5784 36:55.4 +4:02.7 35:57.4 2017-2018 Annecy 78
## 5785 36:58.2 +4:05.5 35:14.2 2017-2018 Annecy 78
## 5786 37:01.0 +4:08.3 35:09.0 2017-2018 Annecy 78
## 5787 37:23.3 +4:30.6 35:36.3 2017-2018 Annecy 78
## 5788 37:27.6 +4:34.9 35:16.6 2017-2018 Annecy 78
## 5789 37:34.8 +4:42.1 35:12.8 2017-2018 Annecy 78
## 5790 37:37.1 +4:44.4 35:44.1 2017-2018 Annecy 78
## 5791 37:37.5 +4:44.8 35:51.5 2017-2018 Annecy 78
## 5792 37:38.6 +4:45.9 35:16.6 2017-2018 Annecy 78
## 5793 37:47.6 +4:54.9 35:29.6 2017-2018 Annecy 78
## 5794 38:00.7 +5:08.0 35:41.7 2017-2018 Annecy 78
## 5795 38:12.1 +5:19.4 36:19.1 2017-2018 Annecy 78
## 5796 38:14.7 +5:22.0 35:59.7 2017-2018 Annecy 78
## 5797 38:15.1 +5:22.4 35:57.1 2017-2018 Annecy 78
## 5798 39:06.5 +6:13.8 36:49.5 2017-2018 Annecy 78
## 5799 39:20.1 +6:27.4 37:07.1 2017-2018 Annecy 78
## 5800 39:26.0 +6:33.3 37:48.0 2017-2018 Annecy 78
## 5801 39:39.6 +6:46.9 37:12.6 2017-2018 Annecy 78
## 5802 39:47.6 +6:54.9 37:31.6 2017-2018 Annecy 78
## 5803 2017-2018 Annecy 78
## 5804 2017-2018 Annecy 78
## 5805 2017-2018 Annecy 78
## 5806 22:16.9 <NA> 2017-2018 Annecy 79
## 5807 22:38.0 +21.1 <NA> 2017-2018 Annecy 79
## 5808 22:51.6 +34.7 <NA> 2017-2018 Annecy 79
## 5809 22:58.7 +41.8 <NA> 2017-2018 Annecy 79
## 5810 23:02.6 +45.7 <NA> 2017-2018 Annecy 79
## 5811 23:11.8 +54.9 <NA> 2017-2018 Annecy 79
## 5812 23:15.3 +58.4 <NA> 2017-2018 Annecy 79
## 5813 23:22.0 +1:05.1 <NA> 2017-2018 Annecy 79
## 5814 23:24.5 +1:07.6 <NA> 2017-2018 Annecy 79
## 5815 23:25.1 +1:08.2 <NA> 2017-2018 Annecy 79
## 5816 23:25.4 +1:08.5 <NA> 2017-2018 Annecy 79
## 5817 23:25.6 +1:08.7 <NA> 2017-2018 Annecy 79
## 5818 23:26.5 +1:09.6 <NA> 2017-2018 Annecy 79
## 5819 23:27.8 +1:10.9 <NA> 2017-2018 Annecy 79
## 5820 23:29.6 +1:12.7 <NA> 2017-2018 Annecy 79
## 5821 23:30.4 +1:13.5 <NA> 2017-2018 Annecy 79
## 5822 23:37.1 +1:20.2 <NA> 2017-2018 Annecy 79
## 5823 23:37.4 +1:20.5 <NA> 2017-2018 Annecy 79
## 5824 23:45.1 +1:28.2 <NA> 2017-2018 Annecy 79
## 5825 23:45.5 +1:28.6 <NA> 2017-2018 Annecy 79
## 5826 23:47.6 +1:30.7 <NA> 2017-2018 Annecy 79
## 5827 23:48.8 +1:31.9 <NA> 2017-2018 Annecy 79
## 5828 23:49.1 +1:32.2 <NA> 2017-2018 Annecy 79
## 5829 23:50.5 +1:33.6 <NA> 2017-2018 Annecy 79
## 5830 23:50.8 +1:33.9 <NA> 2017-2018 Annecy 79
## 5831 23:53.7 +1:36.8 <NA> 2017-2018 Annecy 79
## 5832 23:54.4 +1:37.5 <NA> 2017-2018 Annecy 79
## 5833 23:55.0 +1:38.1 <NA> 2017-2018 Annecy 79
## 5834 24:00.7 +1:43.8 <NA> 2017-2018 Annecy 79
## 5835 24:01.1 +1:44.2 <NA> 2017-2018 Annecy 79
## 5836 24:02.3 +1:45.4 <NA> 2017-2018 Annecy 79
## 5837 24:03.2 +1:46.3 <NA> 2017-2018 Annecy 79
## 5838 24:03.6 +1:46.7 <NA> 2017-2018 Annecy 79
## 5839 24:06.2 +1:49.3 <NA> 2017-2018 Annecy 79
## 5840 24:06.4 +1:49.5 <NA> 2017-2018 Annecy 79
## 5841 24:07.9 +1:51.0 <NA> 2017-2018 Annecy 79
## 5842 24:09.3 +1:52.4 <NA> 2017-2018 Annecy 79
## 5843 24:10.2 +1:53.3 <NA> 2017-2018 Annecy 79
## 5844 24:10.3 +1:53.4 <NA> 2017-2018 Annecy 79
## 5845 24:11.0 +1:54.1 <NA> 2017-2018 Annecy 79
## 5846 24:13.9 +1:57.0 <NA> 2017-2018 Annecy 79
## 5847 24:14.8 +1:57.9 <NA> 2017-2018 Annecy 79
## 5848 24:15.0 +1:58.1 <NA> 2017-2018 Annecy 79
## 5849 24:20.6 +2:03.7 <NA> 2017-2018 Annecy 79
## 5850 24:21.8 +2:04.9 <NA> 2017-2018 Annecy 79
## 5851 24:25.9 +2:09.0 <NA> 2017-2018 Annecy 79
## 5852 24:27.4 +2:10.5 <NA> 2017-2018 Annecy 79
## 5853 24:28.4 +2:11.5 <NA> 2017-2018 Annecy 79
## 5854 24:29.8 +2:12.9 <NA> 2017-2018 Annecy 79
## 5855 24:31.7 +2:14.8 <NA> 2017-2018 Annecy 79
## 5856 24:31.7 +2:14.8 <NA> 2017-2018 Annecy 79
## 5857 24:32.5 +2:15.6 <NA> 2017-2018 Annecy 79
## 5858 24:33.9 +2:17.0 <NA> 2017-2018 Annecy 79
## 5859 24:34.1 +2:17.2 <NA> 2017-2018 Annecy 79
## 5860 24:34.7 +2:17.8 <NA> 2017-2018 Annecy 79
## 5861 24:35.0 +2:18.1 <NA> 2017-2018 Annecy 79
## 5862 24:35.7 +2:18.8 <NA> 2017-2018 Annecy 79
## 5863 24:38.8 +2:21.9 <NA> 2017-2018 Annecy 79
## 5864 24:39.3 +2:22.4 <NA> 2017-2018 Annecy 79
## 5865 24:43.6 +2:26.7 <NA> 2017-2018 Annecy 79
## 5866 24:45.4 +2:28.5 <NA> 2017-2018 Annecy 79
## 5867 24:45.5 +2:28.6 <NA> 2017-2018 Annecy 79
## 5868 24:46.9 +2:30.0 <NA> 2017-2018 Annecy 79
## 5869 24:47.4 +2:30.5 <NA> 2017-2018 Annecy 79
## 5870 24:48.3 +2:31.4 <NA> 2017-2018 Annecy 79
## 5871 24:54.5 +2:37.6 <NA> 2017-2018 Annecy 79
## 5872 24:55.5 +2:38.6 <NA> 2017-2018 Annecy 79
## 5873 24:56.6 +2:39.7 <NA> 2017-2018 Annecy 79
## 5874 24:57.0 +2:40.1 <NA> 2017-2018 Annecy 79
## 5875 25:01.2 +2:44.3 <NA> 2017-2018 Annecy 79
## 5876 25:01.4 +2:44.5 <NA> 2017-2018 Annecy 79
## 5877 25:02.1 +2:45.2 <NA> 2017-2018 Annecy 79
## 5878 25:02.8 +2:45.9 <NA> 2017-2018 Annecy 79
## 5879 25:07.8 +2:50.9 <NA> 2017-2018 Annecy 79
## 5880 25:12.3 +2:55.4 <NA> 2017-2018 Annecy 79
## 5881 25:13.2 +2:56.3 <NA> 2017-2018 Annecy 79
## 5882 25:14.8 +2:57.9 <NA> 2017-2018 Annecy 79
## 5883 25:18.4 +3:01.5 <NA> 2017-2018 Annecy 79
## 5884 25:20.6 +3:03.7 <NA> 2017-2018 Annecy 79
## 5885 25:21.3 +3:04.4 <NA> 2017-2018 Annecy 79
## 5886 25:22.0 +3:05.1 <NA> 2017-2018 Annecy 79
## 5887 25:22.5 +3:05.6 <NA> 2017-2018 Annecy 79
## 5888 25:31.6 +3:14.7 <NA> 2017-2018 Annecy 79
## 5889 25:32.0 +3:15.1 <NA> 2017-2018 Annecy 79
## 5890 25:36.2 +3:19.3 <NA> 2017-2018 Annecy 79
## 5891 25:37.9 +3:21.0 <NA> 2017-2018 Annecy 79
## 5892 25:39.7 +3:22.8 <NA> 2017-2018 Annecy 79
## 5893 25:40.0 +3:23.1 <NA> 2017-2018 Annecy 79
## 5894 25:43.8 +3:26.9 <NA> 2017-2018 Annecy 79
## 5895 25:47.3 +3:30.4 <NA> 2017-2018 Annecy 79
## 5896 25:53.3 +3:36.4 <NA> 2017-2018 Annecy 79
## 5897 25:57.5 +3:40.6 <NA> 2017-2018 Annecy 79
## 5898 26:00.4 +3:43.5 <NA> 2017-2018 Annecy 79
## 5899 26:02.0 +3:45.1 <NA> 2017-2018 Annecy 79
## 5900 26:06.5 +3:49.6 <NA> 2017-2018 Annecy 79
## 5901 26:11.5 +3:54.6 <NA> 2017-2018 Annecy 79
## 5902 26:23.5 +4:06.6 <NA> 2017-2018 Annecy 79
## 5903 26:36.2 +4:19.3 <NA> 2017-2018 Annecy 79
## 5904 26:37.0 +4:20.1 <NA> 2017-2018 Annecy 79
## 5905 26:50.6 +4:33.7 <NA> 2017-2018 Annecy 79
## 5906 26:50.6 +4:33.7 <NA> 2017-2018 Annecy 79
## 5907 27:25.5 +5:08.6 <NA> 2017-2018 Annecy 79
## 5908 28:03.8 +5:46.9 <NA> 2017-2018 Annecy 79
## 5909 <NA> 2017-2018 Annecy 79
## 5910 <NA> 2017-2018 Annecy 79
## 5911 <NA> 2017-2018 Annecy 79
## 5912 40:18.6 <NA> 2017-2018 Anterselva 80
## 5913 40:21.4 +2.8 <NA> 2017-2018 Anterselva 80
## 5914 40:23.7 +5.1 <NA> 2017-2018 Anterselva 80
## 5915 40:34.6 +16.0 <NA> 2017-2018 Anterselva 80
## 5916 40:36.9 +18.3 <NA> 2017-2018 Anterselva 80
## 5917 40:47.8 +29.2 <NA> 2017-2018 Anterselva 80
## 5918 40:52.1 +33.5 <NA> 2017-2018 Anterselva 80
## 5919 40:54.9 +36.3 <NA> 2017-2018 Anterselva 80
## 5920 41:00.4 +41.8 <NA> 2017-2018 Anterselva 80
## 5921 41:03.0 +44.4 <NA> 2017-2018 Anterselva 80
## 5922 41:06.1 +47.5 <NA> 2017-2018 Anterselva 80
## 5923 41:06.3 +47.7 <NA> 2017-2018 Anterselva 80
## 5924 41:06.4 +47.8 <NA> 2017-2018 Anterselva 80
## 5925 41:15.6 +57.0 <NA> 2017-2018 Anterselva 80
## 5926 41:19.1 +1:00.5 <NA> 2017-2018 Anterselva 80
## 5927 41:32.5 +1:13.9 <NA> 2017-2018 Anterselva 80
## 5928 41:33.3 +1:14.7 <NA> 2017-2018 Anterselva 80
## 5929 41:35.4 +1:16.8 <NA> 2017-2018 Anterselva 80
## 5930 41:36.5 +1:17.9 <NA> 2017-2018 Anterselva 80
## 5931 41:41.0 +1:22.4 <NA> 2017-2018 Anterselva 80
## 5932 41:50.7 +1:32.1 <NA> 2017-2018 Anterselva 80
## 5933 42:02.4 +1:43.8 <NA> 2017-2018 Anterselva 80
## 5934 42:31.0 +2:12.4 <NA> 2017-2018 Anterselva 80
## 5935 42:33.2 +2:14.6 <NA> 2017-2018 Anterselva 80
## 5936 42:42.5 +2:23.9 <NA> 2017-2018 Anterselva 80
## 5937 43:16.4 +2:57.8 <NA> 2017-2018 Anterselva 80
## 5938 43:27.3 +3:08.7 <NA> 2017-2018 Anterselva 80
## 5939 44:05.5 +3:46.9 <NA> 2017-2018 Anterselva 80
## 5940 44:19.9 +4:01.3 <NA> 2017-2018 Anterselva 80
## 5941 44:30.8 +4:12.2 <NA> 2017-2018 Anterselva 80
## 5942 31:14.4 31:14.4 2017-2018 Anterselva 81
## 5943 32:14.9 +1:00.5 32:01.9 2017-2018 Anterselva 81
## 5944 32:32.8 +1:18.4 31:46.8 2017-2018 Anterselva 81
## 5945 33:01.9 +1:47.5 32:19.9 2017-2018 Anterselva 81
## 5946 33:11.5 +1:57.1 31:00.5 2017-2018 Anterselva 81
## 5947 33:15.2 +2:00.8 32:21.2 2017-2018 Anterselva 81
## 5948 33:18.2 +2:03.8 31:22.2 2017-2018 Anterselva 81
## 5949 33:37.3 +2:22.9 31:56.3 2017-2018 Anterselva 81
## 5950 33:40.1 +2:25.7 32:32.1 2017-2018 Anterselva 81
## 5951 33:41.1 +2:26.7 32:19.1 2017-2018 Anterselva 81
## 5952 33:47.3 +2:32.9 31:33.3 2017-2018 Anterselva 81
## 5953 33:56.3 +2:41.9 32:03.3 2017-2018 Anterselva 81
## 5954 34:00.3 +2:45.9 31:54.3 2017-2018 Anterselva 81
## 5955 34:01.1 +2:46.7 32:33.1 2017-2018 Anterselva 81
## 5956 34:01.4 +2:47.0 31:48.4 2017-2018 Anterselva 81
## 5957 34:02.4 +2:48.0 32:19.4 2017-2018 Anterselva 81
## 5958 34:04.0 +2:49.6 32:08.0 2017-2018 Anterselva 81
## 5959 34:05.0 +2:50.6 32:17.0 2017-2018 Anterselva 81
## 5960 34:06.2 +2:51.8 31:57.2 2017-2018 Anterselva 81
## 5961 34:12.1 +2:57.7 32:01.1 2017-2018 Anterselva 81
## 5962 34:17.8 +3:03.4 31:55.8 2017-2018 Anterselva 81
## 5963 34:20.0 +3:05.6 31:47.0 2017-2018 Anterselva 81
## 5964 34:23.4 +3:09.0 32:06.4 2017-2018 Anterselva 81
## 5965 34:29.0 +3:14.6 31:48.0 2017-2018 Anterselva 81
## 5966 34:33.3 +3:18.9 32:31.3 2017-2018 Anterselva 81
## 5967 34:34.9 +3:20.5 32:12.9 2017-2018 Anterselva 81
## 5968 34:40.1 +3:25.7 32:24.1 2017-2018 Anterselva 81
## 5969 34:40.9 +3:26.5 32:43.9 2017-2018 Anterselva 81
## 5970 34:43.8 +3:29.4 32:42.8 2017-2018 Anterselva 81
## 5971 34:44.3 +3:29.9 32:25.3 2017-2018 Anterselva 81
## 5972 35:01.0 +3:46.6 32:51.0 2017-2018 Anterselva 81
## 5973 35:02.6 +3:48.2 32:40.6 2017-2018 Anterselva 81
## 5974 35:05.8 +3:51.4 32:33.8 2017-2018 Anterselva 81
## 5975 35:08.5 +3:54.1 32:19.5 2017-2018 Anterselva 81
## 5976 35:09.2 +3:54.8 32:47.2 2017-2018 Anterselva 81
## 5977 35:14.4 +4:00.0 33:08.4 2017-2018 Anterselva 81
## 5978 35:22.2 +4:07.8 33:32.2 2017-2018 Anterselva 81
## 5979 35:22.7 +4:08.3 32:58.7 2017-2018 Anterselva 81
## 5980 35:24.8 +4:10.4 32:45.8 2017-2018 Anterselva 81
## 5981 35:25.4 +4:11.0 33:16.4 2017-2018 Anterselva 81
## 5982 35:27.1 +4:12.7 33:45.1 2017-2018 Anterselva 81
## 5983 35:30.0 +4:15.6 32:41.0 2017-2018 Anterselva 81
## 5984 35:32.2 +4:17.8 33:57.2 2017-2018 Anterselva 81
## 5985 35:55.2 +4:40.8 33:22.2 2017-2018 Anterselva 81
## 5986 35:55.4 +4:41.0 34:23.4 2017-2018 Anterselva 81
## 5987 36:06.8 +4:52.4 33:38.8 2017-2018 Anterselva 81
## 5988 36:08.7 +4:54.3 33:36.7 2017-2018 Anterselva 81
## 5989 36:16.7 +5:02.3 34:17.7 2017-2018 Anterselva 81
## 5990 36:38.8 +5:24.4 34:11.8 2017-2018 Anterselva 81
## 5991 36:53.7 +5:39.3 34:40.7 2017-2018 Anterselva 81
## 5992 36:55.3 +5:40.9 34:08.3 2017-2018 Anterselva 81
## 5993 38:23.2 +7:08.8 35:46.2 2017-2018 Anterselva 81
## 5994 2017-2018 Anterselva 81
## 5995 2017-2018 Anterselva 81
## 5996 2017-2018 Anterselva 81
## 5997 2017-2018 Anterselva 81
## 5998 2017-2018 Anterselva 81
## 5999 2017-2018 Anterselva 81
## 6000 2017-2018 Anterselva 81
## 6001 2017-2018 Anterselva 81
## 6002 23:19.3 <NA> 2017-2018 Anterselva 82
## 6003 23:32.1 +12.8 <NA> 2017-2018 Anterselva 82
## 6004 24:01.5 +42.2 <NA> 2017-2018 Anterselva 82
## 6005 24:05.6 +46.3 <NA> 2017-2018 Anterselva 82
## 6006 24:13.0 +53.7 <NA> 2017-2018 Anterselva 82
## 6007 24:27.1 +1:07.8 <NA> 2017-2018 Anterselva 82
## 6008 24:41.0 +1:21.7 <NA> 2017-2018 Anterselva 82
## 6009 24:47.1 +1:27.8 <NA> 2017-2018 Anterselva 82
## 6010 24:51.6 +1:32.3 <NA> 2017-2018 Anterselva 82
## 6011 24:54.7 +1:35.4 <NA> 2017-2018 Anterselva 82
## 6012 25:00.6 +1:41.3 <NA> 2017-2018 Anterselva 82
## 6013 25:01.4 +1:42.1 <NA> 2017-2018 Anterselva 82
## 6014 25:02.6 +1:43.3 <NA> 2017-2018 Anterselva 82
## 6015 25:07.5 +1:48.2 <NA> 2017-2018 Anterselva 82
## 6016 25:09.2 +1:49.9 <NA> 2017-2018 Anterselva 82
## 6017 25:12.7 +1:53.4 <NA> 2017-2018 Anterselva 82
## 6018 25:14.8 +1:55.5 <NA> 2017-2018 Anterselva 82
## 6019 25:15.5 +1:56.2 <NA> 2017-2018 Anterselva 82
## 6020 25:16.1 +1:56.8 <NA> 2017-2018 Anterselva 82
## 6021 25:16.6 +1:57.3 <NA> 2017-2018 Anterselva 82
## 6022 25:18.5 +1:59.2 <NA> 2017-2018 Anterselva 82
## 6023 25:20.0 +2:00.7 <NA> 2017-2018 Anterselva 82
## 6024 25:20.5 +2:01.2 <NA> 2017-2018 Anterselva 82
## 6025 25:21.7 +2:02.4 <NA> 2017-2018 Anterselva 82
## 6026 25:22.5 +2:03.2 <NA> 2017-2018 Anterselva 82
## 6027 25:24.9 +2:05.6 <NA> 2017-2018 Anterselva 82
## 6028 25:25.0 +2:05.7 <NA> 2017-2018 Anterselva 82
## 6029 25:28.2 +2:08.9 <NA> 2017-2018 Anterselva 82
## 6030 25:28.5 +2:09.2 <NA> 2017-2018 Anterselva 82
## 6031 25:29.0 +2:09.7 <NA> 2017-2018 Anterselva 82
## 6032 25:30.0 +2:10.7 <NA> 2017-2018 Anterselva 82
## 6033 25:30.5 +2:11.2 <NA> 2017-2018 Anterselva 82
## 6034 25:32.1 +2:12.8 <NA> 2017-2018 Anterselva 82
## 6035 25:32.2 +2:12.9 <NA> 2017-2018 Anterselva 82
## 6036 25:32.6 +2:13.3 <NA> 2017-2018 Anterselva 82
## 6037 25:33.4 +2:14.1 <NA> 2017-2018 Anterselva 82
## 6038 25:35.6 +2:16.3 <NA> 2017-2018 Anterselva 82
## 6039 25:36.1 +2:16.8 <NA> 2017-2018 Anterselva 82
## 6040 25:38.1 +2:18.8 <NA> 2017-2018 Anterselva 82
## 6041 25:41.1 +2:21.8 <NA> 2017-2018 Anterselva 82
## 6042 25:41.3 +2:22.0 <NA> 2017-2018 Anterselva 82
## 6043 25:41.5 +2:22.2 <NA> 2017-2018 Anterselva 82
## 6044 25:41.7 +2:22.4 <NA> 2017-2018 Anterselva 82
## 6045 25:43.2 +2:23.9 <NA> 2017-2018 Anterselva 82
## 6046 25:46.1 +2:26.8 <NA> 2017-2018 Anterselva 82
## 6047 25:46.9 +2:27.6 <NA> 2017-2018 Anterselva 82
## 6048 25:51.2 +2:31.9 <NA> 2017-2018 Anterselva 82
## 6049 25:51.6 +2:32.3 <NA> 2017-2018 Anterselva 82
## 6050 25:51.9 +2:32.6 <NA> 2017-2018 Anterselva 82
## 6051 25:52.4 +2:33.1 <NA> 2017-2018 Anterselva 82
## 6052 25:53.3 +2:34.0 <NA> 2017-2018 Anterselva 82
## 6053 25:56.3 +2:37.0 <NA> 2017-2018 Anterselva 82
## 6054 25:58.3 +2:39.0 <NA> 2017-2018 Anterselva 82
## 6055 25:58.7 +2:39.4 <NA> 2017-2018 Anterselva 82
## 6056 26:00.1 +2:40.8 <NA> 2017-2018 Anterselva 82
## 6057 26:06.6 +2:47.3 <NA> 2017-2018 Anterselva 82
## 6058 26:07.9 +2:48.6 <NA> 2017-2018 Anterselva 82
## 6059 26:08.2 +2:48.9 <NA> 2017-2018 Anterselva 82
## 6060 26:08.2 +2:48.9 <NA> 2017-2018 Anterselva 82
## 6061 26:09.7 +2:50.4 <NA> 2017-2018 Anterselva 82
## 6062 26:10.7 +2:51.4 <NA> 2017-2018 Anterselva 82
## 6063 26:12.6 +2:53.3 <NA> 2017-2018 Anterselva 82
## 6064 26:14.7 +2:55.4 <NA> 2017-2018 Anterselva 82
## 6065 26:15.7 +2:56.4 <NA> 2017-2018 Anterselva 82
## 6066 26:17.1 +2:57.8 <NA> 2017-2018 Anterselva 82
## 6067 26:17.5 +2:58.2 <NA> 2017-2018 Anterselva 82
## 6068 26:17.8 +2:58.5 <NA> 2017-2018 Anterselva 82
## 6069 26:21.9 +3:02.6 <NA> 2017-2018 Anterselva 82
## 6070 26:24.5 +3:05.2 <NA> 2017-2018 Anterselva 82
## 6071 26:24.6 +3:05.3 <NA> 2017-2018 Anterselva 82
## 6072 26:30.3 +3:11.0 <NA> 2017-2018 Anterselva 82
## 6073 26:30.5 +3:11.2 <NA> 2017-2018 Anterselva 82
## 6074 26:32.9 +3:13.6 <NA> 2017-2018 Anterselva 82
## 6075 26:34.7 +3:15.4 <NA> 2017-2018 Anterselva 82
## 6076 26:35.2 +3:15.9 <NA> 2017-2018 Anterselva 82
## 6077 26:35.8 +3:16.5 <NA> 2017-2018 Anterselva 82
## 6078 26:38.9 +3:19.6 <NA> 2017-2018 Anterselva 82
## 6079 26:39.6 +3:20.3 <NA> 2017-2018 Anterselva 82
## 6080 26:40.0 +3:20.7 <NA> 2017-2018 Anterselva 82
## 6081 26:43.9 +3:24.6 <NA> 2017-2018 Anterselva 82
## 6082 26:45.4 +3:26.1 <NA> 2017-2018 Anterselva 82
## 6083 26:47.2 +3:27.9 <NA> 2017-2018 Anterselva 82
## 6084 26:49.1 +3:29.8 <NA> 2017-2018 Anterselva 82
## 6085 26:50.2 +3:30.9 <NA> 2017-2018 Anterselva 82
## 6086 26:50.7 +3:31.4 <NA> 2017-2018 Anterselva 82
## 6087 26:53.2 +3:33.9 <NA> 2017-2018 Anterselva 82
## 6088 26:53.2 +3:33.9 <NA> 2017-2018 Anterselva 82
## 6089 26:58.6 +3:39.3 <NA> 2017-2018 Anterselva 82
## 6090 26:59.9 +3:40.6 <NA> 2017-2018 Anterselva 82
## 6091 27:00.5 +3:41.2 <NA> 2017-2018 Anterselva 82
## 6092 27:01.6 +3:42.3 <NA> 2017-2018 Anterselva 82
## 6093 27:08.2 +3:48.9 <NA> 2017-2018 Anterselva 82
## 6094 27:11.1 +3:51.8 <NA> 2017-2018 Anterselva 82
## 6095 27:15.6 +3:56.3 <NA> 2017-2018 Anterselva 82
## 6096 27:16.9 +3:57.6 <NA> 2017-2018 Anterselva 82
## 6097 27:24.4 +4:05.1 <NA> 2017-2018 Anterselva 82
## 6098 27:37.3 +4:18.0 <NA> 2017-2018 Anterselva 82
## 6099 27:38.2 +4:18.9 <NA> 2017-2018 Anterselva 82
## 6100 27:38.4 +4:19.1 <NA> 2017-2018 Anterselva 82
## 6101 27:40.1 +4:20.8 <NA> 2017-2018 Anterselva 82
## 6102 27:41.9 +4:22.6 <NA> 2017-2018 Anterselva 82
## 6103 27:45.0 +4:25.7 <NA> 2017-2018 Anterselva 82
## 6104 28:04.2 +4:44.9 <NA> 2017-2018 Anterselva 82
## 6105 28:05.6 +4:46.3 <NA> 2017-2018 Anterselva 82
## 6106 28:09.4 +4:50.1 <NA> 2017-2018 Anterselva 82
## 6107 28:12.2 +4:52.9 <NA> 2017-2018 Anterselva 82
## 6108 28:19.6 +5:00.3 <NA> 2017-2018 Anterselva 82
## 6109 28:49.5 +5:30.2 <NA> 2017-2018 Anterselva 82
## 6110 30:56.0 +7:36.7 <NA> 2017-2018 Anterselva 82
## 6111 <NA> 2017-2018 Anterselva 82
## 6112 36:41.1 36:41.1 2017-2018 Hochfilzen 83
## 6113 37:39.9 +58.8 37:04.9 2017-2018 Hochfilzen 83
## 6114 37:51.1 +1:10.0 37:39.1 2017-2018 Hochfilzen 83
## 6115 37:51.6 +1:10.5 37:04.6 2017-2018 Hochfilzen 83
## 6116 37:53.0 +1:11.9 36:31.0 2017-2018 Hochfilzen 83
## 6117 37:53.4 +1:12.3 36:21.4 2017-2018 Hochfilzen 83
## 6118 38:11.3 +1:30.2 36:48.3 2017-2018 Hochfilzen 83
## 6119 38:16.2 +1:35.1 37:24.2 2017-2018 Hochfilzen 83
## 6120 38:19.7 +1:38.6 37:13.7 2017-2018 Hochfilzen 83
## 6121 38:23.3 +1:42.2 37:05.3 2017-2018 Hochfilzen 83
## 6122 38:35.5 +1:54.4 37:21.5 2017-2018 Hochfilzen 83
## 6123 38:41.1 +2:00.0 36:29.1 2017-2018 Hochfilzen 83
## 6124 38:41.2 +2:00.1 37:45.2 2017-2018 Hochfilzen 83
## 6125 38:41.4 +2:00.3 37:06.4 2017-2018 Hochfilzen 83
## 6126 38:42.7 +2:01.6 37:41.7 2017-2018 Hochfilzen 83
## 6127 38:43.6 +2:02.5 36:18.6 2017-2018 Hochfilzen 83
## 6128 38:53.9 +2:12.8 37:14.9 2017-2018 Hochfilzen 83
## 6129 38:54.3 +2:13.2 37:38.3 2017-2018 Hochfilzen 83
## 6130 38:58.9 +2:17.8 37:30.9 2017-2018 Hochfilzen 83
## 6131 39:02.2 +2:21.1 37:05.2 2017-2018 Hochfilzen 83
## 6132 39:04.0 +2:22.9 37:03.0 2017-2018 Hochfilzen 83
## 6133 39:10.8 +2:29.7 38:09.8 2017-2018 Hochfilzen 83
## 6134 39:15.2 +2:34.1 37:44.2 2017-2018 Hochfilzen 83
## 6135 39:16.8 +2:35.7 36:57.8 2017-2018 Hochfilzen 83
## 6136 39:17.4 +2:36.3 37:35.4 2017-2018 Hochfilzen 83
## 6137 39:19.5 +2:38.4 36:41.5 2017-2018 Hochfilzen 83
## 6138 39:25.1 +2:44.0 36:58.1 2017-2018 Hochfilzen 83
## 6139 39:30.8 +2:49.7 37:20.8 2017-2018 Hochfilzen 83
## 6140 39:32.7 +2:51.6 38:26.7 2017-2018 Hochfilzen 83
## 6141 39:42.9 +3:01.8 37:21.9 2017-2018 Hochfilzen 83
## 6142 39:43.3 +3:02.2 38:11.3 2017-2018 Hochfilzen 83
## 6143 39:56.2 +3:15.1 38:11.2 2017-2018 Hochfilzen 83
## 6144 39:56.8 +3:15.7 37:26.8 2017-2018 Hochfilzen 83
## 6145 39:57.5 +3:16.4 37:36.5 2017-2018 Hochfilzen 83
## 6146 40:01.7 +3:20.6 37:50.7 2017-2018 Hochfilzen 83
## 6147 40:01.7 +3:20.6 37:29.7 2017-2018 Hochfilzen 83
## 6148 40:11.1 +3:30.0 38:32.1 2017-2018 Hochfilzen 83
## 6149 40:13.4 +3:32.3 37:44.4 2017-2018 Hochfilzen 83
## 6150 40:16.3 +3:35.2 37:48.3 2017-2018 Hochfilzen 83
## 6151 40:16.9 +3:35.8 37:50.9 2017-2018 Hochfilzen 83
## 6152 40:16.9 +3:35.8 38:35.9 2017-2018 Hochfilzen 83
## 6153 40:32.5 +3:51.4 38:51.5 2017-2018 Hochfilzen 83
## 6154 40:37.1 +3:56.0 38:33.1 2017-2018 Hochfilzen 83
## 6155 40:43.2 +4:02.1 38:53.2 2017-2018 Hochfilzen 83
## 6156 40:57.3 +4:16.2 38:36.3 2017-2018 Hochfilzen 83
## 6157 41:03.6 +4:22.5 39:15.6 2017-2018 Hochfilzen 83
## 6158 41:47.5 +5:06.4 39:05.5 2017-2018 Hochfilzen 83
## 6159 41:49.5 +5:08.4 39:24.5 2017-2018 Hochfilzen 83
## 6160 41:54.8 +5:13.7 39:19.8 2017-2018 Hochfilzen 83
## 6161 42:00.7 +5:19.6 40:01.7 2017-2018 Hochfilzen 83
## 6162 42:02.4 +5:21.3 39:19.4 2017-2018 Hochfilzen 83
## 6163 42:08.4 +5:27.3 39:38.4 2017-2018 Hochfilzen 83
## 6164 42:15.6 +5:34.5 39:38.6 2017-2018 Hochfilzen 83
## 6165 42:27.8 +5:46.7 40:01.8 2017-2018 Hochfilzen 83
## 6166 42:32.0 +5:50.9 40:29.0 2017-2018 Hochfilzen 83
## 6167 42:44.3 +6:03.2 40:07.3 2017-2018 Hochfilzen 83
## 6168 43:07.2 +6:26.1 40:39.2 2017-2018 Hochfilzen 83
## 6169 2017-2018 Hochfilzen 83
## 6170 2017-2018 Hochfilzen 83
## 6171 2017-2018 Hochfilzen 83
## 6172 24:18.4 <NA> 2017-2018 Hochfilzen 84
## 6173 24:30.5 +12.1 <NA> 2017-2018 Hochfilzen 84
## 6174 24:53.8 +35.4 <NA> 2017-2018 Hochfilzen 84
## 6175 25:05.0 +46.6 <NA> 2017-2018 Hochfilzen 84
## 6176 25:10.4 +52.0 <NA> 2017-2018 Hochfilzen 84
## 6177 25:14.4 +56.0 <NA> 2017-2018 Hochfilzen 84
## 6178 25:19.0 +1:00.6 <NA> 2017-2018 Hochfilzen 84
## 6179 25:19.4 +1:01.0 <NA> 2017-2018 Hochfilzen 84
## 6180 25:24.5 +1:06.1 <NA> 2017-2018 Hochfilzen 84
## 6181 25:24.5 +1:06.1 <NA> 2017-2018 Hochfilzen 84
## 6182 25:32.0 +1:13.6 <NA> 2017-2018 Hochfilzen 84
## 6183 25:34.1 +1:15.7 <NA> 2017-2018 Hochfilzen 84
## 6184 25:36.2 +1:17.8 <NA> 2017-2018 Hochfilzen 84
## 6185 25:40.1 +1:21.7 <NA> 2017-2018 Hochfilzen 84
## 6186 25:40.9 +1:22.5 <NA> 2017-2018 Hochfilzen 84
## 6187 25:44.9 +1:26.5 <NA> 2017-2018 Hochfilzen 84
## 6188 25:46.3 +1:27.9 <NA> 2017-2018 Hochfilzen 84
## 6189 25:48.9 +1:30.5 <NA> 2017-2018 Hochfilzen 84
## 6190 25:50.3 +1:31.9 <NA> 2017-2018 Hochfilzen 84
## 6191 25:50.7 +1:32.3 <NA> 2017-2018 Hochfilzen 84
## 6192 25:53.3 +1:34.9 <NA> 2017-2018 Hochfilzen 84
## 6193 25:57.6 +1:39.2 <NA> 2017-2018 Hochfilzen 84
## 6194 25:57.6 +1:39.2 <NA> 2017-2018 Hochfilzen 84
## 6195 25:59.2 +1:40.8 <NA> 2017-2018 Hochfilzen 84
## 6196 25:59.2 +1:40.8 <NA> 2017-2018 Hochfilzen 84
## 6197 26:00.1 +1:41.7 <NA> 2017-2018 Hochfilzen 84
## 6198 26:03.4 +1:45.0 <NA> 2017-2018 Hochfilzen 84
## 6199 26:06.5 +1:48.1 <NA> 2017-2018 Hochfilzen 84
## 6200 26:08.0 +1:49.6 <NA> 2017-2018 Hochfilzen 84
## 6201 26:15.0 +1:56.6 <NA> 2017-2018 Hochfilzen 84
## 6202 26:17.8 +1:59.4 <NA> 2017-2018 Hochfilzen 84
## 6203 26:19.2 +2:00.8 <NA> 2017-2018 Hochfilzen 84
## 6204 26:21.5 +2:03.1 <NA> 2017-2018 Hochfilzen 84
## 6205 26:22.7 +2:04.3 <NA> 2017-2018 Hochfilzen 84
## 6206 26:27.9 +2:09.5 <NA> 2017-2018 Hochfilzen 84
## 6207 26:28.6 +2:10.2 <NA> 2017-2018 Hochfilzen 84
## 6208 26:29.5 +2:11.1 <NA> 2017-2018 Hochfilzen 84
## 6209 26:30.0 +2:11.6 <NA> 2017-2018 Hochfilzen 84
## 6210 26:37.0 +2:18.6 <NA> 2017-2018 Hochfilzen 84
## 6211 26:38.9 +2:20.5 <NA> 2017-2018 Hochfilzen 84
## 6212 26:39.1 +2:20.7 <NA> 2017-2018 Hochfilzen 84
## 6213 26:39.1 +2:20.7 <NA> 2017-2018 Hochfilzen 84
## 6214 26:43.5 +2:25.1 <NA> 2017-2018 Hochfilzen 84
## 6215 26:43.7 +2:25.3 <NA> 2017-2018 Hochfilzen 84
## 6216 26:44.0 +2:25.6 <NA> 2017-2018 Hochfilzen 84
## 6217 26:44.2 +2:25.8 <NA> 2017-2018 Hochfilzen 84
## 6218 26:45.8 +2:27.4 <NA> 2017-2018 Hochfilzen 84
## 6219 26:46.6 +2:28.2 <NA> 2017-2018 Hochfilzen 84
## 6220 26:46.7 +2:28.3 <NA> 2017-2018 Hochfilzen 84
## 6221 26:47.2 +2:28.8 <NA> 2017-2018 Hochfilzen 84
## 6222 26:48.7 +2:30.3 <NA> 2017-2018 Hochfilzen 84
## 6223 26:48.7 +2:30.3 <NA> 2017-2018 Hochfilzen 84
## 6224 26:50.8 +2:32.4 <NA> 2017-2018 Hochfilzen 84
## 6225 26:53.0 +2:34.6 <NA> 2017-2018 Hochfilzen 84
## 6226 26:54.9 +2:36.5 <NA> 2017-2018 Hochfilzen 84
## 6227 26:55.7 +2:37.3 <NA> 2017-2018 Hochfilzen 84
## 6228 26:56.2 +2:37.8 <NA> 2017-2018 Hochfilzen 84
## 6229 26:57.1 +2:38.7 <NA> 2017-2018 Hochfilzen 84
## 6230 27:00.7 +2:42.3 <NA> 2017-2018 Hochfilzen 84
## 6231 27:01.8 +2:43.4 <NA> 2017-2018 Hochfilzen 84
## 6232 27:02.4 +2:44.0 <NA> 2017-2018 Hochfilzen 84
## 6233 27:03.1 +2:44.7 <NA> 2017-2018 Hochfilzen 84
## 6234 27:05.5 +2:47.1 <NA> 2017-2018 Hochfilzen 84
## 6235 27:06.3 +2:47.9 <NA> 2017-2018 Hochfilzen 84
## 6236 27:06.3 +2:47.9 <NA> 2017-2018 Hochfilzen 84
## 6237 27:08.4 +2:50.0 <NA> 2017-2018 Hochfilzen 84
## 6238 27:09.3 +2:50.9 <NA> 2017-2018 Hochfilzen 84
## 6239 27:11.0 +2:52.6 <NA> 2017-2018 Hochfilzen 84
## 6240 27:12.9 +2:54.5 <NA> 2017-2018 Hochfilzen 84
## 6241 27:14.8 +2:56.4 <NA> 2017-2018 Hochfilzen 84
## 6242 27:14.8 +2:56.4 <NA> 2017-2018 Hochfilzen 84
## 6243 27:18.9 +3:00.5 <NA> 2017-2018 Hochfilzen 84
## 6244 27:19.1 +3:00.7 <NA> 2017-2018 Hochfilzen 84
## 6245 27:19.1 +3:00.7 <NA> 2017-2018 Hochfilzen 84
## 6246 27:19.2 +3:00.8 <NA> 2017-2018 Hochfilzen 84
## 6247 27:21.8 +3:03.4 <NA> 2017-2018 Hochfilzen 84
## 6248 27:21.9 +3:03.5 <NA> 2017-2018 Hochfilzen 84
## 6249 27:22.5 +3:04.1 <NA> 2017-2018 Hochfilzen 84
## 6250 27:22.9 +3:04.5 <NA> 2017-2018 Hochfilzen 84
## 6251 27:23.4 +3:05.0 <NA> 2017-2018 Hochfilzen 84
## 6252 27:25.9 +3:07.5 <NA> 2017-2018 Hochfilzen 84
## 6253 27:32.0 +3:13.6 <NA> 2017-2018 Hochfilzen 84
## 6254 27:33.0 +3:14.6 <NA> 2017-2018 Hochfilzen 84
## 6255 27:34.6 +3:16.2 <NA> 2017-2018 Hochfilzen 84
## 6256 27:35.7 +3:17.3 <NA> 2017-2018 Hochfilzen 84
## 6257 27:40.6 +3:22.2 <NA> 2017-2018 Hochfilzen 84
## 6258 27:40.9 +3:22.5 <NA> 2017-2018 Hochfilzen 84
## 6259 27:42.4 +3:24.0 <NA> 2017-2018 Hochfilzen 84
## 6260 27:46.3 +3:27.9 <NA> 2017-2018 Hochfilzen 84
## 6261 27:48.6 +3:30.2 <NA> 2017-2018 Hochfilzen 84
## 6262 27:52.1 +3:33.7 <NA> 2017-2018 Hochfilzen 84
## 6263 27:52.9 +3:34.5 <NA> 2017-2018 Hochfilzen 84
## 6264 27:53.4 +3:35.0 <NA> 2017-2018 Hochfilzen 84
## 6265 27:53.5 +3:35.1 <NA> 2017-2018 Hochfilzen 84
## 6266 27:53.8 +3:35.4 <NA> 2017-2018 Hochfilzen 84
## 6267 27:56.4 +3:38.0 <NA> 2017-2018 Hochfilzen 84
## 6268 27:58.0 +3:39.6 <NA> 2017-2018 Hochfilzen 84
## 6269 27:58.6 +3:40.2 <NA> 2017-2018 Hochfilzen 84
## 6270 28:03.7 +3:45.3 <NA> 2017-2018 Hochfilzen 84
## 6271 28:08.2 +3:49.8 <NA> 2017-2018 Hochfilzen 84
## 6272 28:10.4 +3:52.0 <NA> 2017-2018 Hochfilzen 84
## 6273 28:10.7 +3:52.3 <NA> 2017-2018 Hochfilzen 84
## 6274 28:13.0 +3:54.6 <NA> 2017-2018 Hochfilzen 84
## 6275 28:15.6 +3:57.2 <NA> 2017-2018 Hochfilzen 84
## 6276 28:29.3 +4:10.9 <NA> 2017-2018 Hochfilzen 84
## 6277 29:02.2 +4:43.8 <NA> 2017-2018 Hochfilzen 84
## 6278 30:00.5 +5:42.1 <NA> 2017-2018 Hochfilzen 84
## 6279 30:30.5 +6:12.1 <NA> 2017-2018 Hochfilzen 84
## 6280 <NA> 2017-2018 Hochfilzen 84
## 6281 38:04.8 <NA> 2017-2018 Kontiolahti 85
## 6282 38:11.7 +6.9 <NA> 2017-2018 Kontiolahti 85
## 6283 38:24.1 +19.3 <NA> 2017-2018 Kontiolahti 85
## 6284 38:26.7 +21.9 <NA> 2017-2018 Kontiolahti 85
## 6285 38:28.7 +23.9 <NA> 2017-2018 Kontiolahti 85
## 6286 38:31.9 +27.1 <NA> 2017-2018 Kontiolahti 85
## 6287 38:43.5 +38.7 <NA> 2017-2018 Kontiolahti 85
## 6288 38:44.8 +40.0 <NA> 2017-2018 Kontiolahti 85
## 6289 38:48.4 +43.6 <NA> 2017-2018 Kontiolahti 85
## 6290 38:52.4 +47.6 <NA> 2017-2018 Kontiolahti 85
## 6291 39:03.3 +58.5 <NA> 2017-2018 Kontiolahti 85
## 6292 39:06.6 +1:01.8 <NA> 2017-2018 Kontiolahti 85
## 6293 39:10.4 +1:05.6 <NA> 2017-2018 Kontiolahti 85
## 6294 39:11.1 +1:06.3 <NA> 2017-2018 Kontiolahti 85
## 6295 39:14.3 +1:09.5 <NA> 2017-2018 Kontiolahti 85
## 6296 39:15.9 +1:11.1 <NA> 2017-2018 Kontiolahti 85
## 6297 39:21.5 +1:16.7 <NA> 2017-2018 Kontiolahti 85
## 6298 39:25.2 +1:20.4 <NA> 2017-2018 Kontiolahti 85
## 6299 39:37.8 +1:33.0 <NA> 2017-2018 Kontiolahti 85
## 6300 39:39.3 +1:34.5 <NA> 2017-2018 Kontiolahti 85
## 6301 40:09.2 +2:04.4 <NA> 2017-2018 Kontiolahti 85
## 6302 40:24.1 +2:19.3 <NA> 2017-2018 Kontiolahti 85
## 6303 40:24.2 +2:19.4 <NA> 2017-2018 Kontiolahti 85
## 6304 40:32.4 +2:27.6 <NA> 2017-2018 Kontiolahti 85
## 6305 40:42.9 +2:38.1 <NA> 2017-2018 Kontiolahti 85
## 6306 41:24.4 +3:19.6 <NA> 2017-2018 Kontiolahti 85
## 6307 41:48.8 +3:44.0 <NA> 2017-2018 Kontiolahti 85
## 6308 41:49.3 +3:44.5 <NA> 2017-2018 Kontiolahti 85
## 6309 42:00.1 +3:55.3 <NA> 2017-2018 Kontiolahti 85
## 6310 42:03.8 +3:59.0 <NA> 2017-2018 Kontiolahti 85
## 6311 23:51.6 <NA> 2017-2018 Kontiolahti 86
## 6312 23:57.4 +5.8 <NA> 2017-2018 Kontiolahti 86
## 6313 24:08.9 +17.3 <NA> 2017-2018 Kontiolahti 86
## 6314 24:10.6 +19.0 <NA> 2017-2018 Kontiolahti 86
## 6315 24:19.0 +27.4 <NA> 2017-2018 Kontiolahti 86
## 6316 24:19.9 +28.3 <NA> 2017-2018 Kontiolahti 86
## 6317 24:22.2 +30.6 <NA> 2017-2018 Kontiolahti 86
## 6318 24:23.6 +32.0 <NA> 2017-2018 Kontiolahti 86
## 6319 24:26.8 +35.2 <NA> 2017-2018 Kontiolahti 86
## 6320 24:29.9 +38.3 <NA> 2017-2018 Kontiolahti 86
## 6321 24:30.1 +38.5 <NA> 2017-2018 Kontiolahti 86
## 6322 24:32.0 +40.4 <NA> 2017-2018 Kontiolahti 86
## 6323 24:32.9 +41.3 <NA> 2017-2018 Kontiolahti 86
## 6324 24:35.5 +43.9 <NA> 2017-2018 Kontiolahti 86
## 6325 24:38.1 +46.5 <NA> 2017-2018 Kontiolahti 86
## 6326 24:40.0 +48.4 <NA> 2017-2018 Kontiolahti 86
## 6327 24:41.5 +49.9 <NA> 2017-2018 Kontiolahti 86
## 6328 24:41.6 +50.0 <NA> 2017-2018 Kontiolahti 86
## 6329 24:42.0 +50.4 <NA> 2017-2018 Kontiolahti 86
## 6330 24:42.8 +51.2 <NA> 2017-2018 Kontiolahti 86
## 6331 24:49.7 +58.1 <NA> 2017-2018 Kontiolahti 86
## 6332 24:52.3 +1:00.7 <NA> 2017-2018 Kontiolahti 86
## 6333 24:54.8 +1:03.2 <NA> 2017-2018 Kontiolahti 86
## 6334 24:57.0 +1:05.4 <NA> 2017-2018 Kontiolahti 86
## 6335 24:59.9 +1:08.3 <NA> 2017-2018 Kontiolahti 86
## 6336 25:00.1 +1:08.5 <NA> 2017-2018 Kontiolahti 86
## 6337 25:01.6 +1:10.0 <NA> 2017-2018 Kontiolahti 86
## 6338 25:05.2 +1:13.6 <NA> 2017-2018 Kontiolahti 86
## 6339 25:08.8 +1:17.2 <NA> 2017-2018 Kontiolahti 86
## 6340 25:09.3 +1:17.7 <NA> 2017-2018 Kontiolahti 86
## 6341 25:14.2 +1:22.6 <NA> 2017-2018 Kontiolahti 86
## 6342 25:18.2 +1:26.6 <NA> 2017-2018 Kontiolahti 86
## 6343 25:18.8 +1:27.2 <NA> 2017-2018 Kontiolahti 86
## 6344 25:21.1 +1:29.5 <NA> 2017-2018 Kontiolahti 86
## 6345 25:21.3 +1:29.7 <NA> 2017-2018 Kontiolahti 86
## 6346 25:22.2 +1:30.6 <NA> 2017-2018 Kontiolahti 86
## 6347 25:23.9 +1:32.3 <NA> 2017-2018 Kontiolahti 86
## 6348 25:27.7 +1:36.1 <NA> 2017-2018 Kontiolahti 86
## 6349 25:29.2 +1:37.6 <NA> 2017-2018 Kontiolahti 86
## 6350 25:30.1 +1:38.5 <NA> 2017-2018 Kontiolahti 86
## 6351 25:32.3 +1:40.7 <NA> 2017-2018 Kontiolahti 86
## 6352 25:34.3 +1:42.7 <NA> 2017-2018 Kontiolahti 86
## 6353 25:34.4 +1:42.8 <NA> 2017-2018 Kontiolahti 86
## 6354 25:34.6 +1:43.0 <NA> 2017-2018 Kontiolahti 86
## 6355 25:34.8 +1:43.2 <NA> 2017-2018 Kontiolahti 86
## 6356 25:34.9 +1:43.3 <NA> 2017-2018 Kontiolahti 86
## 6357 25:37.9 +1:46.3 <NA> 2017-2018 Kontiolahti 86
## 6358 25:38.2 +1:46.6 <NA> 2017-2018 Kontiolahti 86
## 6359 25:41.0 +1:49.4 <NA> 2017-2018 Kontiolahti 86
## 6360 25:43.1 +1:51.5 <NA> 2017-2018 Kontiolahti 86
## 6361 25:44.4 +1:52.8 <NA> 2017-2018 Kontiolahti 86
## 6362 25:44.9 +1:53.3 <NA> 2017-2018 Kontiolahti 86
## 6363 25:45.7 +1:54.1 <NA> 2017-2018 Kontiolahti 86
## 6364 25:47.8 +1:56.2 <NA> 2017-2018 Kontiolahti 86
## 6365 25:49.2 +1:57.6 <NA> 2017-2018 Kontiolahti 86
## 6366 25:50.1 +1:58.5 <NA> 2017-2018 Kontiolahti 86
## 6367 25:51.1 +1:59.5 <NA> 2017-2018 Kontiolahti 86
## 6368 25:52.8 +2:01.2 <NA> 2017-2018 Kontiolahti 86
## 6369 25:53.2 +2:01.6 <NA> 2017-2018 Kontiolahti 86
## 6370 25:54.9 +2:03.3 <NA> 2017-2018 Kontiolahti 86
## 6371 25:56.8 +2:05.2 <NA> 2017-2018 Kontiolahti 86
## 6372 25:59.8 +2:08.2 <NA> 2017-2018 Kontiolahti 86
## 6373 26:02.6 +2:11.0 <NA> 2017-2018 Kontiolahti 86
## 6374 26:04.5 +2:12.9 <NA> 2017-2018 Kontiolahti 86
## 6375 26:08.4 +2:16.8 <NA> 2017-2018 Kontiolahti 86
## 6376 26:11.5 +2:19.9 <NA> 2017-2018 Kontiolahti 86
## 6377 26:11.9 +2:20.3 <NA> 2017-2018 Kontiolahti 86
## 6378 26:14.7 +2:23.1 <NA> 2017-2018 Kontiolahti 86
## 6379 26:14.8 +2:23.2 <NA> 2017-2018 Kontiolahti 86
## 6380 26:20.9 +2:29.3 <NA> 2017-2018 Kontiolahti 86
## 6381 26:21.0 +2:29.4 <NA> 2017-2018 Kontiolahti 86
## 6382 26:22.2 +2:30.6 <NA> 2017-2018 Kontiolahti 86
## 6383 26:25.7 +2:34.1 <NA> 2017-2018 Kontiolahti 86
## 6384 26:26.6 +2:35.0 <NA> 2017-2018 Kontiolahti 86
## 6385 26:27.8 +2:36.2 <NA> 2017-2018 Kontiolahti 86
## 6386 26:32.0 +2:40.4 <NA> 2017-2018 Kontiolahti 86
## 6387 26:36.6 +2:45.0 <NA> 2017-2018 Kontiolahti 86
## 6388 26:37.5 +2:45.9 <NA> 2017-2018 Kontiolahti 86
## 6389 26:39.0 +2:47.4 <NA> 2017-2018 Kontiolahti 86
## 6390 26:43.2 +2:51.6 <NA> 2017-2018 Kontiolahti 86
## 6391 26:43.7 +2:52.1 <NA> 2017-2018 Kontiolahti 86
## 6392 26:44.8 +2:53.2 <NA> 2017-2018 Kontiolahti 86
## 6393 26:49.3 +2:57.7 <NA> 2017-2018 Kontiolahti 86
## 6394 26:50.7 +2:59.1 <NA> 2017-2018 Kontiolahti 86
## 6395 26:53.1 +3:01.5 <NA> 2017-2018 Kontiolahti 86
## 6396 26:53.3 +3:01.7 <NA> 2017-2018 Kontiolahti 86
## 6397 26:55.5 +3:03.9 <NA> 2017-2018 Kontiolahti 86
## 6398 26:56.0 +3:04.4 <NA> 2017-2018 Kontiolahti 86
## 6399 26:57.3 +3:05.7 <NA> 2017-2018 Kontiolahti 86
## 6400 26:58.0 +3:06.4 <NA> 2017-2018 Kontiolahti 86
## 6401 26:59.4 +3:07.8 <NA> 2017-2018 Kontiolahti 86
## 6402 27:03.3 +3:11.7 <NA> 2017-2018 Kontiolahti 86
## 6403 27:22.4 +3:30.8 <NA> 2017-2018 Kontiolahti 86
## 6404 27:27.7 +3:36.1 <NA> 2017-2018 Kontiolahti 86
## 6405 27:38.2 +3:46.6 <NA> 2017-2018 Kontiolahti 86
## 6406 27:49.3 +3:57.7 <NA> 2017-2018 Kontiolahti 86
## 6407 28:48.1 +4:56.5 <NA> 2017-2018 Kontiolahti 86
## 6408 28:49.0 +4:57.4 <NA> 2017-2018 Kontiolahti 86
## 6409 28:55.5 +5:03.9 <NA> 2017-2018 Kontiolahti 86
## 6410 29:16.8 +5:25.2 <NA> 2017-2018 Kontiolahti 86
## 6411 <NA> 2017-2018 Kontiolahti 86
## 6412 <NA> 2017-2018 Kontiolahti 86
## 6413 <NA> 2017-2018 Kontiolahti 86
## 6414 <NA> 2017-2018 Kontiolahti 86
## 6415 32:23.6 32:23.6 2017-2018 Oberhof 87
## 6416 32:29.9 +6.3 32:19.9 2017-2018 Oberhof 87
## 6417 32:54.5 +30.9 32:27.5 2017-2018 Oberhof 87
## 6418 33:28.3 +1:04.7 33:20.3 2017-2018 Oberhof 87
## 6419 33:39.8 +1:16.2 32:43.8 2017-2018 Oberhof 87
## 6420 33:45.2 +1:21.6 32:58.2 2017-2018 Oberhof 87
## 6421 33:45.4 +1:21.8 32:56.4 2017-2018 Oberhof 87
## 6422 33:45.5 +1:21.9 32:51.5 2017-2018 Oberhof 87
## 6423 33:49.5 +1:25.9 32:24.5 2017-2018 Oberhof 87
## 6424 33:52.1 +1:28.5 32:50.1 2017-2018 Oberhof 87
## 6425 33:57.1 +1:33.5 33:09.1 2017-2018 Oberhof 87
## 6426 34:06.7 +1:43.1 32:23.7 2017-2018 Oberhof 87
## 6427 34:07.2 +1:43.6 33:06.2 2017-2018 Oberhof 87
## 6428 34:07.3 +1:43.7 33:47.3 2017-2018 Oberhof 87
## 6429 34:09.4 +1:45.8 32:38.4 2017-2018 Oberhof 87
## 6430 34:11.3 +1:47.7 33:02.3 2017-2018 Oberhof 87
## 6431 34:14.5 +1:50.9 32:48.5 2017-2018 Oberhof 87
## 6432 34:30.0 +2:06.4 32:59.0 2017-2018 Oberhof 87
## 6433 34:30.7 +2:07.1 32:44.7 2017-2018 Oberhof 87
## 6434 34:33.0 +2:09.4 33:14.0 2017-2018 Oberhof 87
## 6435 34:42.8 +2:19.2 32:52.8 2017-2018 Oberhof 87
## 6436 34:51.4 +2:27.8 33:40.4 2017-2018 Oberhof 87
## 6437 35:00.1 +2:36.5 33:09.1 2017-2018 Oberhof 87
## 6438 35:21.5 +2:57.9 33:29.5 2017-2018 Oberhof 87
## 6439 35:35.0 +3:11.4 34:14.0 2017-2018 Oberhof 87
## 6440 35:35.2 +3:11.6 34:07.2 2017-2018 Oberhof 87
## 6441 35:35.4 +3:11.8 33:27.4 2017-2018 Oberhof 87
## 6442 35:39.3 +3:15.7 33:20.3 2017-2018 Oberhof 87
## 6443 35:45.8 +3:22.2 34:19.8 2017-2018 Oberhof 87
## 6444 35:48.6 +3:25.0 34:10.6 2017-2018 Oberhof 87
## 6445 35:53.2 +3:29.6 34:16.2 2017-2018 Oberhof 87
## 6446 35:54.6 +3:31.0 34:04.6 2017-2018 Oberhof 87
## 6447 36:06.5 +3:42.9 33:54.5 2017-2018 Oberhof 87
## 6448 36:08.5 +3:44.9 34:41.5 2017-2018 Oberhof 87
## 6449 36:08.6 +3:45.0 34:07.6 2017-2018 Oberhof 87
## 6450 36:09.6 +3:46.0 33:53.6 2017-2018 Oberhof 87
## 6451 36:12.2 +3:48.6 34:00.2 2017-2018 Oberhof 87
## 6452 36:12.5 +3:48.9 34:25.5 2017-2018 Oberhof 87
## 6453 36:15.7 +3:52.1 34:23.7 2017-2018 Oberhof 87
## 6454 36:20.3 +3:56.7 34:26.3 2017-2018 Oberhof 87
## 6455 36:33.8 +4:10.2 34:32.8 2017-2018 Oberhof 87
## 6456 36:38.5 +4:14.9 34:28.5 2017-2018 Oberhof 87
## 6457 36:38.6 +4:15.0 34:19.6 2017-2018 Oberhof 87
## 6458 36:41.6 +4:18.0 34:51.6 2017-2018 Oberhof 87
## 6459 36:47.3 +4:23.7 34:43.3 2017-2018 Oberhof 87
## 6460 36:47.7 +4:24.1 34:39.7 2017-2018 Oberhof 87
## 6461 36:48.8 +4:25.2 34:14.8 2017-2018 Oberhof 87
## 6462 36:55.1 +4:31.5 35:25.1 2017-2018 Oberhof 87
## 6463 37:03.8 +4:40.2 34:52.8 2017-2018 Oberhof 87
## 6464 37:08.6 +4:45.0 35:19.6 2017-2018 Oberhof 87
## 6465 37:14.5 +4:50.9 35:05.5 2017-2018 Oberhof 87
## 6466 37:33.8 +5:10.2 36:00.8 2017-2018 Oberhof 87
## 6467 37:46.3 +5:22.7 35:20.3 2017-2018 Oberhof 87
## 6468 37:49.7 +5:26.1 35:19.7 2017-2018 Oberhof 87
## 6469 37:59.5 +5:35.9 36:14.5 2017-2018 Oberhof 87
## 6470 38:03.6 +5:40.0 35:32.6 2017-2018 Oberhof 87
## 6471 40:22.9 +7:59.3 37:45.9 2017-2018 Oberhof 87
## 6472 2017-2018 Oberhof 87
## 6473 2017-2018 Oberhof 87
## 6474 2017-2018 Oberhof 87
## 6475 25:03.3 <NA> 2017-2018 Oberhof 88
## 6476 25:11.4 +8.1 <NA> 2017-2018 Oberhof 88
## 6477 25:13.5 +10.2 <NA> 2017-2018 Oberhof 88
## 6478 25:23.4 +20.1 <NA> 2017-2018 Oberhof 88
## 6479 25:30.2 +26.9 <NA> 2017-2018 Oberhof 88
## 6480 25:50.0 +46.7 <NA> 2017-2018 Oberhof 88
## 6481 25:51.2 +47.9 <NA> 2017-2018 Oberhof 88
## 6482 25:52.2 +48.9 <NA> 2017-2018 Oberhof 88
## 6483 25:57.6 +54.3 <NA> 2017-2018 Oberhof 88
## 6484 25:59.6 +56.3 <NA> 2017-2018 Oberhof 88
## 6485 26:04.4 +1:01.1 <NA> 2017-2018 Oberhof 88
## 6486 26:05.2 +1:01.9 <NA> 2017-2018 Oberhof 88
## 6487 26:12.0 +1:08.7 <NA> 2017-2018 Oberhof 88
## 6488 26:14.6 +1:11.3 <NA> 2017-2018 Oberhof 88
## 6489 26:22.4 +1:19.1 <NA> 2017-2018 Oberhof 88
## 6490 26:23.9 +1:20.6 <NA> 2017-2018 Oberhof 88
## 6491 26:28.7 +1:25.4 <NA> 2017-2018 Oberhof 88
## 6492 26:28.8 +1:25.5 <NA> 2017-2018 Oberhof 88
## 6493 26:28.8 +1:25.5 <NA> 2017-2018 Oberhof 88
## 6494 26:30.6 +1:27.3 <NA> 2017-2018 Oberhof 88
## 6495 26:30.8 +1:27.5 <NA> 2017-2018 Oberhof 88
## 6496 26:33.5 +1:30.2 <NA> 2017-2018 Oberhof 88
## 6497 26:33.9 +1:30.6 <NA> 2017-2018 Oberhof 88
## 6498 26:34.5 +1:31.2 <NA> 2017-2018 Oberhof 88
## 6499 26:36.0 +1:32.7 <NA> 2017-2018 Oberhof 88
## 6500 26:40.2 +1:36.9 <NA> 2017-2018 Oberhof 88
## 6501 26:41.6 +1:38.3 <NA> 2017-2018 Oberhof 88
## 6502 26:45.8 +1:42.5 <NA> 2017-2018 Oberhof 88
## 6503 26:48.1 +1:44.8 <NA> 2017-2018 Oberhof 88
## 6504 26:49.2 +1:45.9 <NA> 2017-2018 Oberhof 88
## 6505 26:50.4 +1:47.1 <NA> 2017-2018 Oberhof 88
## 6506 26:52.0 +1:48.7 <NA> 2017-2018 Oberhof 88
## 6507 26:52.9 +1:49.6 <NA> 2017-2018 Oberhof 88
## 6508 26:53.0 +1:49.7 <NA> 2017-2018 Oberhof 88
## 6509 26:53.0 +1:49.7 <NA> 2017-2018 Oberhof 88
## 6510 26:53.6 +1:50.3 <NA> 2017-2018 Oberhof 88
## 6511 26:54.3 +1:51.0 <NA> 2017-2018 Oberhof 88
## 6512 26:54.9 +1:51.6 <NA> 2017-2018 Oberhof 88
## 6513 26:55.4 +1:52.1 <NA> 2017-2018 Oberhof 88
## 6514 26:57.4 +1:54.1 <NA> 2017-2018 Oberhof 88
## 6515 27:04.4 +2:01.1 <NA> 2017-2018 Oberhof 88
## 6516 27:04.5 +2:01.2 <NA> 2017-2018 Oberhof 88
## 6517 27:05.3 +2:02.0 <NA> 2017-2018 Oberhof 88
## 6518 27:07.5 +2:04.2 <NA> 2017-2018 Oberhof 88
## 6519 27:10.9 +2:07.6 <NA> 2017-2018 Oberhof 88
## 6520 27:11.4 +2:08.1 <NA> 2017-2018 Oberhof 88
## 6521 27:12.4 +2:09.1 <NA> 2017-2018 Oberhof 88
## 6522 27:12.9 +2:09.6 <NA> 2017-2018 Oberhof 88
## 6523 27:14.1 +2:10.8 <NA> 2017-2018 Oberhof 88
## 6524 27:14.9 +2:11.6 <NA> 2017-2018 Oberhof 88
## 6525 27:15.5 +2:12.2 <NA> 2017-2018 Oberhof 88
## 6526 27:18.8 +2:15.5 <NA> 2017-2018 Oberhof 88
## 6527 27:20.7 +2:17.4 <NA> 2017-2018 Oberhof 88
## 6528 27:22.2 +2:18.9 <NA> 2017-2018 Oberhof 88
## 6529 27:22.7 +2:19.4 <NA> 2017-2018 Oberhof 88
## 6530 27:29.5 +2:26.2 <NA> 2017-2018 Oberhof 88
## 6531 27:33.7 +2:30.4 <NA> 2017-2018 Oberhof 88
## 6532 27:34.7 +2:31.4 <NA> 2017-2018 Oberhof 88
## 6533 27:37.0 +2:33.7 <NA> 2017-2018 Oberhof 88
## 6534 27:40.2 +2:36.9 <NA> 2017-2018 Oberhof 88
## 6535 27:40.3 +2:37.0 <NA> 2017-2018 Oberhof 88
## 6536 27:41.4 +2:38.1 <NA> 2017-2018 Oberhof 88
## 6537 27:41.6 +2:38.3 <NA> 2017-2018 Oberhof 88
## 6538 27:44.1 +2:40.8 <NA> 2017-2018 Oberhof 88
## 6539 27:47.6 +2:44.3 <NA> 2017-2018 Oberhof 88
## 6540 27:48.8 +2:45.5 <NA> 2017-2018 Oberhof 88
## 6541 27:50.3 +2:47.0 <NA> 2017-2018 Oberhof 88
## 6542 27:52.0 +2:48.7 <NA> 2017-2018 Oberhof 88
## 6543 27:52.7 +2:49.4 <NA> 2017-2018 Oberhof 88
## 6544 27:59.5 +2:56.2 <NA> 2017-2018 Oberhof 88
## 6545 27:59.6 +2:56.3 <NA> 2017-2018 Oberhof 88
## 6546 28:00.9 +2:57.6 <NA> 2017-2018 Oberhof 88
## 6547 28:01.0 +2:57.7 <NA> 2017-2018 Oberhof 88
## 6548 28:01.2 +2:57.9 <NA> 2017-2018 Oberhof 88
## 6549 28:02.7 +2:59.4 <NA> 2017-2018 Oberhof 88
## 6550 28:08.4 +3:05.1 <NA> 2017-2018 Oberhof 88
## 6551 28:10.0 +3:06.7 <NA> 2017-2018 Oberhof 88
## 6552 28:14.0 +3:10.7 <NA> 2017-2018 Oberhof 88
## 6553 28:17.2 +3:13.9 <NA> 2017-2018 Oberhof 88
## 6554 28:18.4 +3:15.1 <NA> 2017-2018 Oberhof 88
## 6555 28:19.5 +3:16.2 <NA> 2017-2018 Oberhof 88
## 6556 28:25.9 +3:22.6 <NA> 2017-2018 Oberhof 88
## 6557 28:26.8 +3:23.5 <NA> 2017-2018 Oberhof 88
## 6558 28:27.7 +3:24.4 <NA> 2017-2018 Oberhof 88
## 6559 28:29.9 +3:26.6 <NA> 2017-2018 Oberhof 88
## 6560 28:30.5 +3:27.2 <NA> 2017-2018 Oberhof 88
## 6561 28:30.9 +3:27.6 <NA> 2017-2018 Oberhof 88
## 6562 28:30.9 +3:27.6 <NA> 2017-2018 Oberhof 88
## 6563 28:31.9 +3:28.6 <NA> 2017-2018 Oberhof 88
## 6564 28:36.4 +3:33.1 <NA> 2017-2018 Oberhof 88
## 6565 28:51.5 +3:48.2 <NA> 2017-2018 Oberhof 88
## 6566 28:55.7 +3:52.4 <NA> 2017-2018 Oberhof 88
## 6567 28:57.3 +3:54.0 <NA> 2017-2018 Oberhof 88
## 6568 29:08.6 +4:05.3 <NA> 2017-2018 Oberhof 88
## 6569 29:10.8 +4:07.5 <NA> 2017-2018 Oberhof 88
## 6570 29:21.4 +4:18.1 <NA> 2017-2018 Oberhof 88
## 6571 29:46.1 +4:42.8 <NA> 2017-2018 Oberhof 88
## 6572 29:51.2 +4:47.9 <NA> 2017-2018 Oberhof 88
## 6573 29:56.8 +4:53.5 <NA> 2017-2018 Oberhof 88
## 6574 30:24.7 +5:21.4 <NA> 2017-2018 Oberhof 88
## 6575 31:38.1 +6:34.8 <NA> 2017-2018 Oberhof 88
## 6576 31:39.6 +6:36.3 <NA> 2017-2018 Oberhof 88
## 6577 31:54.4 +6:51.1 <NA> 2017-2018 Oberhof 88
## 6578 <NA> 2017-2018 Oberhof 88
## 6579 <NA> 2017-2018 Oberhof 88
## 6580 53:24.5 <NA> 2017-2018 Oestersund 89
## 6581 55:25.5 +2:01.0 <NA> 2017-2018 Oestersund 89
## 6582 55:38.8 +2:14.3 <NA> 2017-2018 Oestersund 89
## 6583 55:42.0 +2:17.5 <NA> 2017-2018 Oestersund 89
## 6584 55:45.2 +2:20.7 <NA> 2017-2018 Oestersund 89
## 6585 55:54.6 +2:30.1 <NA> 2017-2018 Oestersund 89
## 6586 55:58.6 +2:34.1 <NA> 2017-2018 Oestersund 89
## 6587 56:00.0 +2:35.5 <NA> 2017-2018 Oestersund 89
## 6588 56:02.6 +2:38.1 <NA> 2017-2018 Oestersund 89
## 6589 56:06.7 +2:42.2 <NA> 2017-2018 Oestersund 89
## 6590 56:07.6 +2:43.1 <NA> 2017-2018 Oestersund 89
## 6591 56:08.8 +2:44.3 <NA> 2017-2018 Oestersund 89
## 6592 56:22.4 +2:57.9 <NA> 2017-2018 Oestersund 89
## 6593 56:39.7 +3:15.2 <NA> 2017-2018 Oestersund 89
## 6594 56:49.5 +3:25.0 <NA> 2017-2018 Oestersund 89
## 6595 56:52.7 +3:28.2 <NA> 2017-2018 Oestersund 89
## 6596 56:59.0 +3:34.5 <NA> 2017-2018 Oestersund 89
## 6597 57:08.2 +3:43.7 <NA> 2017-2018 Oestersund 89
## 6598 57:24.6 +4:00.1 <NA> 2017-2018 Oestersund 89
## 6599 57:34.5 +4:10.0 <NA> 2017-2018 Oestersund 89
## 6600 57:35.3 +4:10.8 <NA> 2017-2018 Oestersund 89
## 6601 57:38.2 +4:13.7 <NA> 2017-2018 Oestersund 89
## 6602 57:43.5 +4:19.0 <NA> 2017-2018 Oestersund 89
## 6603 58:02.0 +4:37.5 <NA> 2017-2018 Oestersund 89
## 6604 58:08.5 +4:44.0 <NA> 2017-2018 Oestersund 89
## 6605 58:09.5 +4:45.0 <NA> 2017-2018 Oestersund 89
## 6606 58:19.8 +4:55.3 <NA> 2017-2018 Oestersund 89
## 6607 58:22.6 +4:58.1 <NA> 2017-2018 Oestersund 89
## 6608 58:25.9 +5:01.4 <NA> 2017-2018 Oestersund 89
## 6609 58:26.0 +5:01.5 <NA> 2017-2018 Oestersund 89
## 6610 58:39.9 +5:15.4 <NA> 2017-2018 Oestersund 89
## 6611 58:48.7 +5:24.2 <NA> 2017-2018 Oestersund 89
## 6612 58:54.3 +5:29.8 <NA> 2017-2018 Oestersund 89
## 6613 59:01.9 +5:37.4 <NA> 2017-2018 Oestersund 89
## 6614 59:04.0 +5:39.5 <NA> 2017-2018 Oestersund 89
## 6615 59:07.7 +5:43.2 <NA> 2017-2018 Oestersund 89
## 6616 59:11.7 +5:47.2 <NA> 2017-2018 Oestersund 89
## 6617 59:14.5 +5:50.0 <NA> 2017-2018 Oestersund 89
## 6618 59:15.7 +5:51.2 <NA> 2017-2018 Oestersund 89
## 6619 59:25.1 +6:00.6 <NA> 2017-2018 Oestersund 89
## 6620 59:25.5 +6:01.0 <NA> 2017-2018 Oestersund 89
## 6621 59:29.3 +6:04.8 <NA> 2017-2018 Oestersund 89
## 6622 59:33.9 +6:09.4 <NA> 2017-2018 Oestersund 89
## 6623 59:41.6 +6:17.1 <NA> 2017-2018 Oestersund 89
## 6624 59:44.7 +6:20.2 <NA> 2017-2018 Oestersund 89
## 6625 59:44.9 +6:20.4 <NA> 2017-2018 Oestersund 89
## 6626 59:45.8 +6:21.3 <NA> 2017-2018 Oestersund 89
## 6627 59:51.9 +6:27.4 <NA> 2017-2018 Oestersund 89
## 6628 59:53.5 +6:29.0 <NA> 2017-2018 Oestersund 89
## 6629 1:00:21.0 +6:56.5 <NA> 2017-2018 Oestersund 89
## 6630 1:00:27.9 +7:03.4 <NA> 2017-2018 Oestersund 89
## 6631 1:00:33.9 +7:09.4 <NA> 2017-2018 Oestersund 89
## 6632 1:00:40.6 +7:16.1 <NA> 2017-2018 Oestersund 89
## 6633 1:00:48.9 +7:24.4 <NA> 2017-2018 Oestersund 89
## 6634 1:00:48.9 +7:24.4 <NA> 2017-2018 Oestersund 89
## 6635 1:00:49.2 +7:24.7 <NA> 2017-2018 Oestersund 89
## 6636 1:00:50.6 +7:26.1 <NA> 2017-2018 Oestersund 89
## 6637 1:01:00.8 +7:36.3 <NA> 2017-2018 Oestersund 89
## 6638 1:01:20.7 +7:56.2 <NA> 2017-2018 Oestersund 89
## 6639 1:01:21.4 +7:56.9 <NA> 2017-2018 Oestersund 89
## 6640 1:01:23.4 +7:58.9 <NA> 2017-2018 Oestersund 89
## 6641 1:01:24.3 +7:59.8 <NA> 2017-2018 Oestersund 89
## 6642 1:01:30.5 +8:06.0 <NA> 2017-2018 Oestersund 89
## 6643 1:01:33.0 +8:08.5 <NA> 2017-2018 Oestersund 89
## 6644 1:01:33.7 +8:09.2 <NA> 2017-2018 Oestersund 89
## 6645 1:01:34.2 +8:09.7 <NA> 2017-2018 Oestersund 89
## 6646 1:01:35.5 +8:11.0 <NA> 2017-2018 Oestersund 89
## 6647 1:01:36.0 +8:11.5 <NA> 2017-2018 Oestersund 89
## 6648 1:01:36.8 +8:12.3 <NA> 2017-2018 Oestersund 89
## 6649 1:01:36.8 +8:12.3 <NA> 2017-2018 Oestersund 89
## 6650 1:01:36.9 +8:12.4 <NA> 2017-2018 Oestersund 89
## 6651 1:01:49.4 +8:24.9 <NA> 2017-2018 Oestersund 89
## 6652 1:01:53.7 +8:29.2 <NA> 2017-2018 Oestersund 89
## 6653 1:01:56.3 +8:31.8 <NA> 2017-2018 Oestersund 89
## 6654 1:02:00.8 +8:36.3 <NA> 2017-2018 Oestersund 89
## 6655 1:02:09.8 +8:45.3 <NA> 2017-2018 Oestersund 89
## 6656 1:02:28.3 +9:03.8 <NA> 2017-2018 Oestersund 89
## 6657 1:02:28.8 +9:04.3 <NA> 2017-2018 Oestersund 89
## 6658 1:02:29.3 +9:04.8 <NA> 2017-2018 Oestersund 89
## 6659 1:02:30.7 +9:06.2 <NA> 2017-2018 Oestersund 89
## 6660 1:02:45.5 +9:21.0 <NA> 2017-2018 Oestersund 89
## 6661 1:02:59.6 +9:35.1 <NA> 2017-2018 Oestersund 89
## 6662 1:03:00.2 +9:35.7 <NA> 2017-2018 Oestersund 89
## 6663 1:03:07.6 +9:43.1 <NA> 2017-2018 Oestersund 89
## 6664 1:03:14.1 +9:49.6 <NA> 2017-2018 Oestersund 89
## 6665 1:03:25.2 +10:00.7 <NA> 2017-2018 Oestersund 89
## 6666 1:03:28.9 +10:04.4 <NA> 2017-2018 Oestersund 89
## 6667 1:03:29.2 +10:04.7 <NA> 2017-2018 Oestersund 89
## 6668 1:03:38.2 +10:13.7 <NA> 2017-2018 Oestersund 89
## 6669 1:03:38.9 +10:14.4 <NA> 2017-2018 Oestersund 89
## 6670 1:03:55.7 +10:31.2 <NA> 2017-2018 Oestersund 89
## 6671 1:03:56.7 +10:32.2 <NA> 2017-2018 Oestersund 89
## 6672 1:04:00.9 +10:36.4 <NA> 2017-2018 Oestersund 89
## 6673 1:04:02.5 +10:38.0 <NA> 2017-2018 Oestersund 89
## 6674 1:04:12.4 +10:47.9 <NA> 2017-2018 Oestersund 89
## 6675 1:04:19.4 +10:54.9 <NA> 2017-2018 Oestersund 89
## 6676 1:04:21.4 +10:56.9 <NA> 2017-2018 Oestersund 89
## 6677 1:04:32.8 +11:08.3 <NA> 2017-2018 Oestersund 89
## 6678 1:04:32.8 +11:08.3 <NA> 2017-2018 Oestersund 89
## 6679 1:04:44.8 +11:20.3 <NA> 2017-2018 Oestersund 89
## 6680 1:04:55.0 +11:30.5 <NA> 2017-2018 Oestersund 89
## 6681 1:05:09.3 +11:44.8 <NA> 2017-2018 Oestersund 89
## 6682 1:05:12.0 +11:47.5 <NA> 2017-2018 Oestersund 89
## 6683 1:05:38.6 +12:14.1 <NA> 2017-2018 Oestersund 89
## 6684 1:07:08.5 +13:44.0 <NA> 2017-2018 Oestersund 89
## 6685 1:07:20.9 +13:56.4 <NA> 2017-2018 Oestersund 89
## 6686 1:10:04.5 +16:40.0 <NA> 2017-2018 Oestersund 89
## 6687 1:10:10.2 +16:45.7 <NA> 2017-2018 Oestersund 89
## 6688 30:12.2 30:11.2 2017-2018 Oestersund 90
## 6689 30:53.0 +40.8 30:19.0 2017-2018 Oestersund 90
## 6690 30:54.3 +42.1 30:18.3 2017-2018 Oestersund 90
## 6691 31:01.9 +49.7 30:48.9 2017-2018 Oestersund 90
## 6692 31:02.4 +50.2 30:45.4 2017-2018 Oestersund 90
## 6693 31:10.4 +58.2 30:05.4 2017-2018 Oestersund 90
## 6694 31:15.4 +1:03.2 30:27.4 2017-2018 Oestersund 90
## 6695 31:16.1 +1:03.9 30:20.1 2017-2018 Oestersund 90
## 6696 31:17.3 +1:05.1 30:37.3 2017-2018 Oestersund 90
## 6697 31:19.3 +1:07.1 31:15.3 2017-2018 Oestersund 90
## 6698 31:21.9 +1:09.7 30:27.9 2017-2018 Oestersund 90
## 6699 31:25.4 +1:13.2 30:04.4 2017-2018 Oestersund 90
## 6700 31:32.6 +1:20.4 30:58.6 2017-2018 Oestersund 90
## 6701 31:38.0 +1:25.8 31:01.0 2017-2018 Oestersund 90
## 6702 31:41.7 +1:29.5 30:39.7 2017-2018 Oestersund 90
## 6703 31:51.7 +1:39.5 31:36.7 2017-2018 Oestersund 90
## 6704 31:52.4 +1:40.2 31:02.4 2017-2018 Oestersund 90
## 6705 31:52.8 +1:40.6 30:46.8 2017-2018 Oestersund 90
## 6706 32:01.7 +1:49.5 32:01.7 2017-2018 Oestersund 90
## 6707 32:05.4 +1:53.2 31:42.4 2017-2018 Oestersund 90
## 6708 32:16.8 +2:04.6 31:18.8 2017-2018 Oestersund 90
## 6709 32:17.9 +2:05.7 30:48.9 2017-2018 Oestersund 90
## 6710 32:19.9 +2:07.7 31:08.9 2017-2018 Oestersund 90
## 6711 32:23.3 +2:11.1 30:44.3 2017-2018 Oestersund 90
## 6712 32:25.6 +2:13.4 32:02.6 2017-2018 Oestersund 90
## 6713 32:26.3 +2:14.1 31:21.3 2017-2018 Oestersund 90
## 6714 32:29.0 +2:16.8 32:13.0 2017-2018 Oestersund 90
## 6715 32:32.1 +2:19.9 31:20.1 2017-2018 Oestersund 90
## 6716 32:35.5 +2:23.3 30:50.5 2017-2018 Oestersund 90
## 6717 32:37.6 +2:25.4 31:25.6 2017-2018 Oestersund 90
## 6718 32:43.1 +2:30.9 32:01.1 2017-2018 Oestersund 90
## 6719 32:50.4 +2:38.2 31:17.4 2017-2018 Oestersund 90
## 6720 32:57.4 +2:45.2 31:50.4 2017-2018 Oestersund 90
## 6721 33:00.3 +2:48.1 32:18.3 2017-2018 Oestersund 90
## 6722 33:03.8 +2:51.6 32:04.8 2017-2018 Oestersund 90
## 6723 33:05.1 +2:52.9 32:21.1 2017-2018 Oestersund 90
## 6724 33:16.2 +3:04.0 32:02.2 2017-2018 Oestersund 90
## 6725 33:18.4 +3:06.2 32:03.4 2017-2018 Oestersund 90
## 6726 33:18.4 +3:06.2 31:51.4 2017-2018 Oestersund 90
## 6727 33:19.0 +3:06.8 32:00.0 2017-2018 Oestersund 90
## 6728 33:19.2 +3:07.0 31:56.2 2017-2018 Oestersund 90
## 6729 33:31.4 +3:19.2 32:37.4 2017-2018 Oestersund 90
## 6730 33:31.7 +3:19.5 32:21.7 2017-2018 Oestersund 90
## 6731 33:35.3 +3:23.1 32:01.3 2017-2018 Oestersund 90
## 6732 33:37.1 +3:24.9 31:53.1 2017-2018 Oestersund 90
## 6733 33:39.6 +3:27.4 31:52.6 2017-2018 Oestersund 90
## 6734 34:03.7 +3:51.5 32:26.7 2017-2018 Oestersund 90
## 6735 34:04.9 +3:52.7 32:22.9 2017-2018 Oestersund 90
## 6736 34:10.2 +3:58.0 32:28.2 2017-2018 Oestersund 90
## 6737 34:23.1 +4:10.9 33:42.1 2017-2018 Oestersund 90
## 6738 34:30.8 +4:18.6 32:45.8 2017-2018 Oestersund 90
## 6739 34:45.5 +4:33.3 33:10.5 2017-2018 Oestersund 90
## 6740 34:46.6 +4:34.4 33:37.6 2017-2018 Oestersund 90
## 6741 35:02.8 +4:50.6 34:18.8 2017-2018 Oestersund 90
## 6742 35:38.6 +5:26.4 33:52.6 2017-2018 Oestersund 90
## 6743 36:16.0 +6:03.8 34:40.0 2017-2018 Oestersund 90
## 6744 36:35.4 +6:23.2 34:51.4 2017-2018 Oestersund 90
## 6745 36:51.3 +6:39.1 35:06.3 2017-2018 Oestersund 90
## 6746 2017-2018 Oestersund 90
## 6747 2017-2018 Oestersund 90
## 6748 22:40.6 <NA> 2017-2018 Oestersund 91
## 6749 22:41.3 +0.7 <NA> 2017-2018 Oestersund 91
## 6750 22:44.3 +3.7 <NA> 2017-2018 Oestersund 91
## 6751 22:53.9 +13.3 <NA> 2017-2018 Oestersund 91
## 6752 22:55.6 +15.0 <NA> 2017-2018 Oestersund 91
## 6753 22:56.6 +16.0 <NA> 2017-2018 Oestersund 91
## 6754 22:57.3 +16.7 <NA> 2017-2018 Oestersund 91
## 6755 23:03.2 +22.6 <NA> 2017-2018 Oestersund 91
## 6756 23:04.0 +23.4 <NA> 2017-2018 Oestersund 91
## 6757 23:14.9 +34.3 <NA> 2017-2018 Oestersund 91
## 6758 23:15.0 +34.4 <NA> 2017-2018 Oestersund 91
## 6759 23:16.2 +35.6 <NA> 2017-2018 Oestersund 91
## 6760 23:17.5 +36.9 <NA> 2017-2018 Oestersund 91
## 6761 23:17.7 +37.1 <NA> 2017-2018 Oestersund 91
## 6762 23:20.5 +39.9 <NA> 2017-2018 Oestersund 91
## 6763 23:22.0 +41.4 <NA> 2017-2018 Oestersund 91
## 6764 23:22.1 +41.5 <NA> 2017-2018 Oestersund 91
## 6765 23:22.4 +41.8 <NA> 2017-2018 Oestersund 91
## 6766 23:24.8 +44.2 <NA> 2017-2018 Oestersund 91
## 6767 23:24.9 +44.3 <NA> 2017-2018 Oestersund 91
## 6768 23:29.0 +48.4 <NA> 2017-2018 Oestersund 91
## 6769 23:30.4 +49.8 <NA> 2017-2018 Oestersund 91
## 6770 23:34.2 +53.6 <NA> 2017-2018 Oestersund 91
## 6771 23:34.9 +54.3 <NA> 2017-2018 Oestersund 91
## 6772 23:36.4 +55.8 <NA> 2017-2018 Oestersund 91
## 6773 23:38.7 +58.1 <NA> 2017-2018 Oestersund 91
## 6774 23:39.4 +58.8 <NA> 2017-2018 Oestersund 91
## 6775 23:42.5 +1:01.9 <NA> 2017-2018 Oestersund 91
## 6776 23:45.1 +1:04.5 <NA> 2017-2018 Oestersund 91
## 6777 23:45.4 +1:04.8 <NA> 2017-2018 Oestersund 91
## 6778 23:46.6 +1:06.0 <NA> 2017-2018 Oestersund 91
## 6779 23:47.5 +1:06.9 <NA> 2017-2018 Oestersund 91
## 6780 23:49.6 +1:09.0 <NA> 2017-2018 Oestersund 91
## 6781 23:50.6 +1:10.0 <NA> 2017-2018 Oestersund 91
## 6782 23:51.6 +1:11.0 <NA> 2017-2018 Oestersund 91
## 6783 23:52.2 +1:11.6 <NA> 2017-2018 Oestersund 91
## 6784 23:52.3 +1:11.7 <NA> 2017-2018 Oestersund 91
## 6785 23:54.6 +1:14.0 <NA> 2017-2018 Oestersund 91
## 6786 23:55.4 +1:14.8 <NA> 2017-2018 Oestersund 91
## 6787 23:59.9 +1:19.3 <NA> 2017-2018 Oestersund 91
## 6788 24:01.5 +1:20.9 <NA> 2017-2018 Oestersund 91
## 6789 24:03.8 +1:23.2 <NA> 2017-2018 Oestersund 91
## 6790 24:07.9 +1:27.3 <NA> 2017-2018 Oestersund 91
## 6791 24:09.9 +1:29.3 <NA> 2017-2018 Oestersund 91
## 6792 24:13.7 +1:33.1 <NA> 2017-2018 Oestersund 91
## 6793 24:14.4 +1:33.8 <NA> 2017-2018 Oestersund 91
## 6794 24:15.3 +1:34.7 <NA> 2017-2018 Oestersund 91
## 6795 24:16.6 +1:36.0 <NA> 2017-2018 Oestersund 91
## 6796 24:17.6 +1:37.0 <NA> 2017-2018 Oestersund 91
## 6797 24:20.0 +1:39.4 <NA> 2017-2018 Oestersund 91
## 6798 24:22.1 +1:41.5 <NA> 2017-2018 Oestersund 91
## 6799 24:22.9 +1:42.3 <NA> 2017-2018 Oestersund 91
## 6800 24:24.2 +1:43.6 <NA> 2017-2018 Oestersund 91
## 6801 24:24.8 +1:44.2 <NA> 2017-2018 Oestersund 91
## 6802 24:25.5 +1:44.9 <NA> 2017-2018 Oestersund 91
## 6803 24:25.5 +1:44.9 <NA> 2017-2018 Oestersund 91
## 6804 24:25.7 +1:45.1 <NA> 2017-2018 Oestersund 91
## 6805 24:26.6 +1:46.0 <NA> 2017-2018 Oestersund 91
## 6806 24:27.3 +1:46.7 <NA> 2017-2018 Oestersund 91
## 6807 24:27.8 +1:47.2 <NA> 2017-2018 Oestersund 91
## 6808 24:32.4 +1:51.8 <NA> 2017-2018 Oestersund 91
## 6809 24:34.2 +1:53.6 <NA> 2017-2018 Oestersund 91
## 6810 24:34.4 +1:53.8 <NA> 2017-2018 Oestersund 91
## 6811 24:37.6 +1:57.0 <NA> 2017-2018 Oestersund 91
## 6812 24:40.9 +2:00.3 <NA> 2017-2018 Oestersund 91
## 6813 24:44.5 +2:03.9 <NA> 2017-2018 Oestersund 91
## 6814 24:44.7 +2:04.1 <NA> 2017-2018 Oestersund 91
## 6815 24:45.2 +2:04.6 <NA> 2017-2018 Oestersund 91
## 6816 24:45.9 +2:05.3 <NA> 2017-2018 Oestersund 91
## 6817 24:48.0 +2:07.4 <NA> 2017-2018 Oestersund 91
## 6818 24:50.3 +2:09.7 <NA> 2017-2018 Oestersund 91
## 6819 24:50.9 +2:10.3 <NA> 2017-2018 Oestersund 91
## 6820 24:51.5 +2:10.9 <NA> 2017-2018 Oestersund 91
## 6821 24:51.6 +2:11.0 <NA> 2017-2018 Oestersund 91
## 6822 24:54.0 +2:13.4 <NA> 2017-2018 Oestersund 91
## 6823 25:00.0 +2:19.4 <NA> 2017-2018 Oestersund 91
## 6824 25:01.0 +2:20.4 <NA> 2017-2018 Oestersund 91
## 6825 25:02.0 +2:21.4 <NA> 2017-2018 Oestersund 91
## 6826 25:03.0 +2:22.4 <NA> 2017-2018 Oestersund 91
## 6827 25:08.5 +2:27.9 <NA> 2017-2018 Oestersund 91
## 6828 25:09.2 +2:28.6 <NA> 2017-2018 Oestersund 91
## 6829 25:09.3 +2:28.7 <NA> 2017-2018 Oestersund 91
## 6830 25:10.5 +2:29.9 <NA> 2017-2018 Oestersund 91
## 6831 25:12.3 +2:31.7 <NA> 2017-2018 Oestersund 91
## 6832 25:15.8 +2:35.2 <NA> 2017-2018 Oestersund 91
## 6833 25:16.2 +2:35.6 <NA> 2017-2018 Oestersund 91
## 6834 25:20.7 +2:40.1 <NA> 2017-2018 Oestersund 91
## 6835 25:23.2 +2:42.6 <NA> 2017-2018 Oestersund 91
## 6836 25:24.4 +2:43.8 <NA> 2017-2018 Oestersund 91
## 6837 25:29.8 +2:49.2 <NA> 2017-2018 Oestersund 91
## 6838 25:31.5 +2:50.9 <NA> 2017-2018 Oestersund 91
## 6839 25:34.8 +2:54.2 <NA> 2017-2018 Oestersund 91
## 6840 25:38.8 +2:58.2 <NA> 2017-2018 Oestersund 91
## 6841 25:44.8 +3:04.2 <NA> 2017-2018 Oestersund 91
## 6842 25:46.3 +3:05.7 <NA> 2017-2018 Oestersund 91
## 6843 25:48.2 +3:07.6 <NA> 2017-2018 Oestersund 91
## 6844 25:53.9 +3:13.3 <NA> 2017-2018 Oestersund 91
## 6845 25:55.3 +3:14.7 <NA> 2017-2018 Oestersund 91
## 6846 25:55.9 +3:15.3 <NA> 2017-2018 Oestersund 91
## 6847 25:56.2 +3:15.6 <NA> 2017-2018 Oestersund 91
## 6848 25:59.1 +3:18.5 <NA> 2017-2018 Oestersund 91
## 6849 26:17.7 +3:37.1 <NA> 2017-2018 Oestersund 91
## 6850 26:18.2 +3:37.6 <NA> 2017-2018 Oestersund 91
## 6851 26:23.0 +3:42.4 <NA> 2017-2018 Oestersund 91
## 6852 26:54.6 +4:14.0 <NA> 2017-2018 Oestersund 91
## 6853 26:56.9 +4:16.3 <NA> 2017-2018 Oestersund 91
## 6854 27:48.8 +5:08.2 <NA> 2017-2018 Oestersund 91
## 6855 <NA> 2017-2018 Oestersund 91
## 6856 31:31.6 31:24.6 2017-2018 Oslo_Holmenkollen 92
## 6857 31:49.7 +18.1 31:33.7 2017-2018 Oslo_Holmenkollen 92
## 6858 32:04.1 +32.5 31:58.1 2017-2018 Oslo_Holmenkollen 92
## 6859 32:14.3 +42.7 31:02.3 2017-2018 Oslo_Holmenkollen 92
## 6860 32:16.8 +45.2 32:16.8 2017-2018 Oslo_Holmenkollen 92
## 6861 32:17.3 +45.7 31:17.3 2017-2018 Oslo_Holmenkollen 92
## 6862 32:24.9 +53.3 31:27.9 2017-2018 Oslo_Holmenkollen 92
## 6863 32:27.4 +55.8 31:52.4 2017-2018 Oslo_Holmenkollen 92
## 6864 32:30.8 +59.2 31:47.8 2017-2018 Oslo_Holmenkollen 92
## 6865 32:35.3 +1:03.7 32:18.3 2017-2018 Oslo_Holmenkollen 92
## 6866 32:38.1 +1:06.5 31:22.1 2017-2018 Oslo_Holmenkollen 92
## 6867 32:39.0 +1:07.4 31:28.0 2017-2018 Oslo_Holmenkollen 92
## 6868 32:41.0 +1:09.4 31:20.0 2017-2018 Oslo_Holmenkollen 92
## 6869 32:44.6 +1:13.0 32:21.6 2017-2018 Oslo_Holmenkollen 92
## 6870 32:53.2 +1:21.6 32:05.2 2017-2018 Oslo_Holmenkollen 92
## 6871 33:01.1 +1:29.5 32:17.1 2017-2018 Oslo_Holmenkollen 92
## 6872 33:05.8 +1:34.2 32:18.8 2017-2018 Oslo_Holmenkollen 92
## 6873 33:14.1 +1:42.5 32:33.1 2017-2018 Oslo_Holmenkollen 92
## 6874 33:17.7 +1:46.1 31:58.7 2017-2018 Oslo_Holmenkollen 92
## 6875 33:18.8 +1:47.2 32:35.8 2017-2018 Oslo_Holmenkollen 92
## 6876 33:19.2 +1:47.6 31:58.2 2017-2018 Oslo_Holmenkollen 92
## 6877 33:29.4 +1:57.8 32:12.4 2017-2018 Oslo_Holmenkollen 92
## 6878 33:30.9 +1:59.3 32:30.9 2017-2018 Oslo_Holmenkollen 92
## 6879 33:33.2 +2:01.6 33:26.2 2017-2018 Oslo_Holmenkollen 92
## 6880 33:36.1 +2:04.5 32:11.1 2017-2018 Oslo_Holmenkollen 92
## 6881 33:37.0 +2:05.4 32:17.0 2017-2018 Oslo_Holmenkollen 92
## 6882 33:38.6 +2:07.0 33:09.6 2017-2018 Oslo_Holmenkollen 92
## 6883 33:38.8 +2:07.2 31:57.8 2017-2018 Oslo_Holmenkollen 92
## 6884 33:43.6 +2:12.0 32:29.6 2017-2018 Oslo_Holmenkollen 92
## 6885 33:54.1 +2:22.5 32:21.1 2017-2018 Oslo_Holmenkollen 92
## 6886 34:08.1 +2:36.5 33:12.1 2017-2018 Oslo_Holmenkollen 92
## 6887 34:08.4 +2:36.8 32:59.4 2017-2018 Oslo_Holmenkollen 92
## 6888 34:09.0 +2:37.4 32:58.0 2017-2018 Oslo_Holmenkollen 92
## 6889 34:09.0 +2:37.4 33:00.0 2017-2018 Oslo_Holmenkollen 92
## 6890 34:09.7 +2:38.1 31:58.7 2017-2018 Oslo_Holmenkollen 92
## 6891 34:14.1 +2:42.5 33:22.1 2017-2018 Oslo_Holmenkollen 92
## 6892 34:19.1 +2:47.5 32:40.1 2017-2018 Oslo_Holmenkollen 92
## 6893 34:19.6 +2:48.0 33:17.6 2017-2018 Oslo_Holmenkollen 92
## 6894 34:22.2 +2:50.6 32:12.2 2017-2018 Oslo_Holmenkollen 92
## 6895 34:39.1 +3:07.5 32:56.1 2017-2018 Oslo_Holmenkollen 92
## 6896 34:51.5 +3:19.9 32:38.5 2017-2018 Oslo_Holmenkollen 92
## 6897 34:53.4 +3:21.8 33:20.4 2017-2018 Oslo_Holmenkollen 92
## 6898 35:00.3 +3:28.7 33:27.3 2017-2018 Oslo_Holmenkollen 92
## 6899 35:14.2 +3:42.6 33:34.2 2017-2018 Oslo_Holmenkollen 92
## 6900 35:27.1 +3:55.5 34:15.1 2017-2018 Oslo_Holmenkollen 92
## 6901 35:32.1 +4:00.5 33:21.1 2017-2018 Oslo_Holmenkollen 92
## 6902 35:44.2 +4:12.6 33:31.2 2017-2018 Oslo_Holmenkollen 92
## 6903 35:45.7 +4:14.1 33:39.7 2017-2018 Oslo_Holmenkollen 92
## 6904 35:48.7 +4:17.1 33:47.7 2017-2018 Oslo_Holmenkollen 92
## 6905 35:51.6 +4:20.0 33:36.6 2017-2018 Oslo_Holmenkollen 92
## 6906 36:31.3 +4:59.7 34:29.3 2017-2018 Oslo_Holmenkollen 92
## 6907 36:34.3 +5:02.7 34:47.3 2017-2018 Oslo_Holmenkollen 92
## 6908 36:34.7 +5:03.1 34:23.7 2017-2018 Oslo_Holmenkollen 92
## 6909 36:39.0 +5:07.4 34:27.0 2017-2018 Oslo_Holmenkollen 92
## 6910 36:51.6 +5:20.0 35:00.6 2017-2018 Oslo_Holmenkollen 92
## 6911 37:29.3 +5:57.7 35:35.3 2017-2018 Oslo_Holmenkollen 92
## 6912 37:57.2 +6:25.6 36:08.2 2017-2018 Oslo_Holmenkollen 92
## 6913 38:25.7 +6:54.1 36:06.7 2017-2018 Oslo_Holmenkollen 92
## 6914 38:27.4 +6:55.8 36:24.4 2017-2018 Oslo_Holmenkollen 92
## 6915 2017-2018 Oslo_Holmenkollen 92
## 6916 26:10.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6917 26:16.4 +6.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6918 26:17.2 +6.9 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6919 26:17.4 +7.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6920 26:25.8 +15.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6921 26:27.1 +16.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6922 26:33.6 +23.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6923 26:39.1 +28.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6924 26:45.5 +35.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6925 26:51.5 +41.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6926 26:53.2 +42.9 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6927 26:53.3 +43.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6928 26:53.8 +43.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6929 26:57.4 +47.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6930 26:57.9 +47.6 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6931 27:02.6 +52.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6932 27:06.1 +55.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6933 27:06.8 +56.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6934 27:10.1 +59.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6935 27:10.3 +1:00.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6936 27:12.6 +1:02.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6937 27:18.4 +1:08.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6938 27:18.9 +1:08.6 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6939 27:19.6 +1:09.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6940 27:21.5 +1:11.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6941 27:21.7 +1:11.4 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6942 27:22.1 +1:11.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6943 27:22.1 +1:11.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6944 27:23.9 +1:13.6 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6945 27:26.4 +1:16.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6946 27:27.0 +1:16.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6947 27:29.5 +1:19.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6948 27:30.3 +1:20.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6949 27:30.8 +1:20.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6950 27:31.6 +1:21.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6951 27:35.5 +1:25.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6952 27:42.8 +1:32.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6953 27:43.3 +1:33.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6954 27:43.4 +1:33.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6955 27:49.3 +1:39.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6956 27:50.7 +1:40.4 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6957 27:51.4 +1:41.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6958 27:53.6 +1:43.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6959 27:57.0 +1:46.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6960 27:58.8 +1:48.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6961 28:01.1 +1:50.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6962 28:04.4 +1:54.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6963 28:11.3 +2:01.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6964 28:12.4 +2:02.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6965 28:13.5 +2:03.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6966 28:16.0 +2:05.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6967 28:20.4 +2:10.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6968 28:21.0 +2:10.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6969 28:21.0 +2:10.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6970 28:21.7 +2:11.4 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6971 28:22.6 +2:12.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6972 28:23.1 +2:12.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6973 28:23.1 +2:12.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6974 28:25.2 +2:14.9 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6975 28:29.5 +2:19.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6976 28:30.8 +2:20.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6977 28:31.4 +2:21.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6978 28:31.5 +2:21.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6979 28:31.5 +2:21.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6980 28:31.8 +2:21.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6981 28:32.1 +2:21.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6982 28:32.6 +2:22.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6983 28:32.6 +2:22.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6984 28:33.0 +2:22.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6985 28:37.5 +2:27.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6986 28:41.6 +2:31.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6987 28:41.7 +2:31.4 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6988 28:42.0 +2:31.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6989 28:44.6 +2:34.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6990 28:47.0 +2:36.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6991 28:47.4 +2:37.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6992 28:48.2 +2:37.9 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6993 28:49.2 +2:38.9 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6994 28:57.5 +2:47.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6995 28:59.4 +2:49.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6996 29:03.0 +2:52.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6997 29:03.6 +2:53.3 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6998 29:05.1 +2:54.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 6999 29:13.0 +3:02.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7000 29:16.5 +3:06.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7001 29:25.9 +3:15.6 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7002 29:30.4 +3:20.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7003 29:35.5 +3:25.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7004 29:49.8 +3:39.5 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7005 29:50.1 +3:39.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7006 29:55.4 +3:45.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7007 29:57.7 +3:47.4 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7008 30:03.2 +3:52.9 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7009 30:24.4 +4:14.1 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7010 30:30.0 +4:19.7 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7011 30:37.5 +4:27.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7012 30:53.5 +4:43.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7013 31:14.7 +5:04.4 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7014 31:26.1 +5:15.8 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7015 31:56.5 +5:46.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7016 32:01.3 +5:51.0 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7017 32:01.5 +5:51.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7018 33:36.5 +7:26.2 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7019 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7020 <NA> 2017-2018 Oslo_Holmenkollen 93
## 7021 48:03.8 <NA> 2017-2018 PyeongChang 94
## 7022 48:09.3 +5.5 <NA> 2017-2018 PyeongChang 94
## 7023 48:18.0 +14.2 <NA> 2017-2018 PyeongChang 94
## 7024 48:32.9 +29.1 <NA> 2017-2018 PyeongChang 94
## 7025 48:46.2 +42.4 <NA> 2017-2018 PyeongChang 94
## 7026 48:52.4 +48.6 <NA> 2017-2018 PyeongChang 94
## 7027 49:19.3 +1:15.5 <NA> 2017-2018 PyeongChang 94
## 7028 49:25.9 +1:22.1 <NA> 2017-2018 PyeongChang 94
## 7029 49:31.1 +1:27.3 <NA> 2017-2018 PyeongChang 94
## 7030 49:40.5 +1:36.7 <NA> 2017-2018 PyeongChang 94
## 7031 49:55.8 +1:52.0 <NA> 2017-2018 PyeongChang 94
## 7032 49:56.9 +1:53.1 <NA> 2017-2018 PyeongChang 94
## 7033 50:05.3 +2:01.5 <NA> 2017-2018 PyeongChang 94
## 7034 50:06.3 +2:02.5 <NA> 2017-2018 PyeongChang 94
## 7035 50:07.0 +2:03.2 <NA> 2017-2018 PyeongChang 94
## 7036 50:08.0 +2:04.2 <NA> 2017-2018 PyeongChang 94
## 7037 50:15.6 +2:11.8 <NA> 2017-2018 PyeongChang 94
## 7038 50:25.3 +2:21.5 <NA> 2017-2018 PyeongChang 94
## 7039 50:25.9 +2:22.1 <NA> 2017-2018 PyeongChang 94
## 7040 50:28.6 +2:24.8 <NA> 2017-2018 PyeongChang 94
## 7041 50:29.6 +2:25.8 <NA> 2017-2018 PyeongChang 94
## 7042 50:30.4 +2:26.6 <NA> 2017-2018 PyeongChang 94
## 7043 50:33.5 +2:29.7 <NA> 2017-2018 PyeongChang 94
## 7044 50:37.1 +2:33.3 <NA> 2017-2018 PyeongChang 94
## 7045 50:41.8 +2:38.0 <NA> 2017-2018 PyeongChang 94
## 7046 51:01.0 +2:57.2 <NA> 2017-2018 PyeongChang 94
## 7047 51:03.6 +2:59.8 <NA> 2017-2018 PyeongChang 94
## 7048 51:07.1 +3:03.3 <NA> 2017-2018 PyeongChang 94
## 7049 51:15.2 +3:11.4 <NA> 2017-2018 PyeongChang 94
## 7050 51:27.9 +3:24.1 <NA> 2017-2018 PyeongChang 94
## 7051 51:32.1 +3:28.3 <NA> 2017-2018 PyeongChang 94
## 7052 51:43.6 +3:39.8 <NA> 2017-2018 PyeongChang 94
## 7053 51:51.8 +3:48.0 <NA> 2017-2018 PyeongChang 94
## 7054 51:52.4 +3:48.6 <NA> 2017-2018 PyeongChang 94
## 7055 51:54.2 +3:50.4 <NA> 2017-2018 PyeongChang 94
## 7056 51:54.8 +3:51.0 <NA> 2017-2018 PyeongChang 94
## 7057 51:55.6 +3:51.8 <NA> 2017-2018 PyeongChang 94
## 7058 51:56.6 +3:52.8 <NA> 2017-2018 PyeongChang 94
## 7059 52:01.3 +3:57.5 <NA> 2017-2018 PyeongChang 94
## 7060 52:01.9 +3:58.1 <NA> 2017-2018 PyeongChang 94
## 7061 52:05.7 +4:01.9 <NA> 2017-2018 PyeongChang 94
## 7062 52:06.0 +4:02.2 <NA> 2017-2018 PyeongChang 94
## 7063 52:12.0 +4:08.2 <NA> 2017-2018 PyeongChang 94
## 7064 52:25.6 +4:21.8 <NA> 2017-2018 PyeongChang 94
## 7065 52:35.5 +4:31.7 <NA> 2017-2018 PyeongChang 94
## 7066 52:36.5 +4:32.7 <NA> 2017-2018 PyeongChang 94
## 7067 52:37.5 +4:33.7 <NA> 2017-2018 PyeongChang 94
## 7068 52:44.1 +4:40.3 <NA> 2017-2018 PyeongChang 94
## 7069 52:46.5 +4:42.7 <NA> 2017-2018 PyeongChang 94
## 7070 52:54.3 +4:50.5 <NA> 2017-2018 PyeongChang 94
## 7071 52:56.8 +4:53.0 <NA> 2017-2018 PyeongChang 94
## 7072 52:57.6 +4:53.8 <NA> 2017-2018 PyeongChang 94
## 7073 52:57.9 +4:54.1 <NA> 2017-2018 PyeongChang 94
## 7074 53:03.2 +4:59.4 <NA> 2017-2018 PyeongChang 94
## 7075 53:12.1 +5:08.3 <NA> 2017-2018 PyeongChang 94
## 7076 53:26.6 +5:22.8 <NA> 2017-2018 PyeongChang 94
## 7077 53:33.6 +5:29.8 <NA> 2017-2018 PyeongChang 94
## 7078 53:36.6 +5:32.8 <NA> 2017-2018 PyeongChang 94
## 7079 53:41.8 +5:38.0 <NA> 2017-2018 PyeongChang 94
## 7080 53:46.8 +5:43.0 <NA> 2017-2018 PyeongChang 94
## 7081 53:50.7 +5:46.9 <NA> 2017-2018 PyeongChang 94
## 7082 53:52.5 +5:48.7 <NA> 2017-2018 PyeongChang 94
## 7083 53:54.1 +5:50.3 <NA> 2017-2018 PyeongChang 94
## 7084 54:11.5 +6:07.7 <NA> 2017-2018 PyeongChang 94
## 7085 54:20.1 +6:16.3 <NA> 2017-2018 PyeongChang 94
## 7086 54:31.1 +6:27.3 <NA> 2017-2018 PyeongChang 94
## 7087 54:31.7 +6:27.9 <NA> 2017-2018 PyeongChang 94
## 7088 54:36.4 +6:32.6 <NA> 2017-2018 PyeongChang 94
## 7089 54:40.1 +6:36.3 <NA> 2017-2018 PyeongChang 94
## 7090 54:46.0 +6:42.2 <NA> 2017-2018 PyeongChang 94
## 7091 54:48.4 +6:44.6 <NA> 2017-2018 PyeongChang 94
## 7092 54:52.7 +6:48.9 <NA> 2017-2018 PyeongChang 94
## 7093 54:57.6 +6:53.8 <NA> 2017-2018 PyeongChang 94
## 7094 55:01.5 +6:57.7 <NA> 2017-2018 PyeongChang 94
## 7095 55:10.1 +7:06.3 <NA> 2017-2018 PyeongChang 94
## 7096 55:10.8 +7:07.0 <NA> 2017-2018 PyeongChang 94
## 7097 55:26.1 +7:22.3 <NA> 2017-2018 PyeongChang 94
## 7098 55:38.4 +7:34.6 <NA> 2017-2018 PyeongChang 94
## 7099 55:39.9 +7:36.1 <NA> 2017-2018 PyeongChang 94
## 7100 56:06.4 +8:02.6 <NA> 2017-2018 PyeongChang 94
## 7101 56:15.7 +8:11.9 <NA> 2017-2018 PyeongChang 94
## 7102 56:27.0 +8:23.2 <NA> 2017-2018 PyeongChang 94
## 7103 57:11.3 +9:07.5 <NA> 2017-2018 PyeongChang 94
## 7104 57:16.0 +9:12.2 <NA> 2017-2018 PyeongChang 94
## 7105 57:52.3 +9:48.5 <NA> 2017-2018 PyeongChang 94
## 7106 58:55.2 +10:51.4 <NA> 2017-2018 PyeongChang 94
## 7107 35:47.3 <NA> 2017-2018 PyeongChang 95
## 7108 35:47.3 <NA> 2017-2018 PyeongChang 95
## 7109 35:58.5 +11.2 <NA> 2017-2018 PyeongChang 95
## 7110 35:58.9 +11.6 <NA> 2017-2018 PyeongChang 95
## 7111 36:06.1 +18.8 <NA> 2017-2018 PyeongChang 95
## 7112 36:18.0 +30.7 <NA> 2017-2018 PyeongChang 95
## 7113 36:19.4 +32.1 <NA> 2017-2018 PyeongChang 95
## 7114 36:21.9 +34.6 <NA> 2017-2018 PyeongChang 95
## 7115 36:21.9 +34.6 <NA> 2017-2018 PyeongChang 95
## 7116 36:23.4 +36.1 <NA> 2017-2018 PyeongChang 95
## 7117 36:23.6 +36.3 <NA> 2017-2018 PyeongChang 95
## 7118 36:47.3 +1:00.0 <NA> 2017-2018 PyeongChang 95
## 7119 36:47.5 +1:00.2 <NA> 2017-2018 PyeongChang 95
## 7120 37:01.0 +1:13.7 <NA> 2017-2018 PyeongChang 95
## 7121 37:02.6 +1:15.3 <NA> 2017-2018 PyeongChang 95
## 7122 37:07.3 +1:20.0 <NA> 2017-2018 PyeongChang 95
## 7123 37:07.7 +1:20.4 <NA> 2017-2018 PyeongChang 95
## 7124 37:07.7 +1:20.4 <NA> 2017-2018 PyeongChang 95
## 7125 37:15.3 +1:28.0 <NA> 2017-2018 PyeongChang 95
## 7126 37:19.8 +1:32.5 <NA> 2017-2018 PyeongChang 95
## 7127 37:25.0 +1:37.7 <NA> 2017-2018 PyeongChang 95
## 7128 37:45.9 +1:58.6 <NA> 2017-2018 PyeongChang 95
## 7129 37:58.8 +2:11.5 <NA> 2017-2018 PyeongChang 95
## 7130 38:00.9 +2:13.6 <NA> 2017-2018 PyeongChang 95
## 7131 38:07.4 +2:20.1 <NA> 2017-2018 PyeongChang 95
## 7132 38:09.9 +2:22.6 <NA> 2017-2018 PyeongChang 95
## 7133 38:10.5 +2:23.2 <NA> 2017-2018 PyeongChang 95
## 7134 38:47.4 +3:00.1 <NA> 2017-2018 PyeongChang 95
## 7135 38:57.5 +3:10.2 <NA> 2017-2018 PyeongChang 95
## 7136 38:58.0 +3:10.7 <NA> 2017-2018 PyeongChang 95
## 7137 32:51.7 32:29.7 2017-2018 PyeongChang 96
## 7138 33:03.7 +12.0 32:29.7 2017-2018 PyeongChang 96
## 7139 33:06.8 +15.1 32:48.8 2017-2018 PyeongChang 96
## 7140 33:54.3 +1:02.6 33:20.3 2017-2018 PyeongChang 96
## 7141 33:54.4 +1:02.7 33:33.4 2017-2018 PyeongChang 96
## 7142 33:54.8 +1:03.1 33:17.8 2017-2018 PyeongChang 96
## race_type
## 1 Pursuit
## 2 Pursuit
## 3 Pursuit
## 4 Pursuit
## 5 Pursuit
## 6 Pursuit
## 7 Pursuit
## 8 Pursuit
## 9 Pursuit
## 10 Pursuit
## 11 Pursuit
## 12 Pursuit
## 13 Pursuit
## 14 Pursuit
## 15 Pursuit
## 16 Pursuit
## 17 Pursuit
## 18 Pursuit
## 19 Pursuit
## 20 Pursuit
## 21 Pursuit
## 22 Pursuit
## 23 Pursuit
## 24 Pursuit
## 25 Pursuit
## 26 Pursuit
## 27 Pursuit
## 28 Pursuit
## 29 Pursuit
## 30 Pursuit
## 31 Pursuit
## 32 Pursuit
## 33 Pursuit
## 34 Pursuit
## 35 Pursuit
## 36 Pursuit
## 37 Pursuit
## 38 Pursuit
## 39 Pursuit
## 40 Pursuit
## 41 Pursuit
## 42 Pursuit
## 43 Pursuit
## 44 Pursuit
## 45 Pursuit
## 46 Pursuit
## 47 Pursuit
## 48 Pursuit
## 49 Pursuit
## 50 Pursuit
## 51 Pursuit
## 52 Pursuit
## 53 Pursuit
## 54 Pursuit
## 55 Pursuit
## 56 Pursuit
## 57 Pursuit
## 58 Pursuit
## 59 Pursuit
## 60 Pursuit
## 61 Sprint
## 62 Sprint
## 63 Sprint
## 64 Sprint
## 65 Sprint
## 66 Sprint
## 67 Sprint
## 68 Sprint
## 69 Sprint
## 70 Sprint
## 71 Sprint
## 72 Sprint
## 73 Sprint
## 74 Sprint
## 75 Sprint
## 76 Sprint
## 77 Sprint
## 78 Sprint
## 79 Sprint
## 80 Sprint
## 81 Sprint
## 82 Sprint
## 83 Sprint
## 84 Sprint
## 85 Sprint
## 86 Sprint
## 87 Sprint
## 88 Sprint
## 89 Sprint
## 90 Sprint
## 91 Sprint
## 92 Sprint
## 93 Sprint
## 94 Sprint
## 95 Sprint
## 96 Sprint
## 97 Sprint
## 98 Sprint
## 99 Sprint
## 100 Sprint
## 101 Sprint
## 102 Sprint
## 103 Sprint
## 104 Sprint
## 105 Sprint
## 106 Sprint
## 107 Sprint
## 108 Sprint
## 109 Sprint
## 110 Sprint
## 111 Sprint
## 112 Sprint
## 113 Sprint
## 114 Sprint
## 115 Sprint
## 116 Sprint
## 117 Sprint
## 118 Sprint
## 119 Sprint
## 120 Sprint
## 121 Sprint
## 122 Sprint
## 123 Sprint
## 124 Sprint
## 125 Sprint
## 126 Sprint
## 127 Sprint
## 128 Sprint
## 129 Sprint
## 130 Sprint
## 131 Sprint
## 132 Sprint
## 133 Sprint
## 134 Sprint
## 135 Sprint
## 136 Sprint
## 137 Sprint
## 138 Sprint
## 139 Sprint
## 140 Sprint
## 141 Sprint
## 142 Sprint
## 143 Sprint
## 144 Sprint
## 145 Sprint
## 146 Sprint
## 147 Sprint
## 148 Sprint
## 149 Sprint
## 150 Sprint
## 151 Sprint
## 152 Sprint
## 153 Sprint
## 154 Sprint
## 155 Sprint
## 156 Sprint
## 157 Sprint
## 158 Sprint
## 159 Sprint
## 160 Sprint
## 161 Sprint
## 162 Sprint
## 163 Sprint
## 164 Pursuit
## 165 Pursuit
## 166 Pursuit
## 167 Pursuit
## 168 Pursuit
## 169 Pursuit
## 170 Pursuit
## 171 Pursuit
## 172 Pursuit
## 173 Pursuit
## 174 Pursuit
## 175 Pursuit
## 176 Pursuit
## 177 Pursuit
## 178 Pursuit
## 179 Pursuit
## 180 Pursuit
## 181 Pursuit
## 182 Pursuit
## 183 Pursuit
## 184 Pursuit
## 185 Pursuit
## 186 Pursuit
## 187 Pursuit
## 188 Pursuit
## 189 Pursuit
## 190 Pursuit
## 191 Pursuit
## 192 Pursuit
## 193 Pursuit
## 194 Pursuit
## 195 Pursuit
## 196 Pursuit
## 197 Pursuit
## 198 Pursuit
## 199 Pursuit
## 200 Pursuit
## 201 Pursuit
## 202 Pursuit
## 203 Pursuit
## 204 Pursuit
## 205 Pursuit
## 206 Pursuit
## 207 Pursuit
## 208 Pursuit
## 209 Pursuit
## 210 Pursuit
## 211 Pursuit
## 212 Pursuit
## 213 Pursuit
## 214 Pursuit
## 215 Pursuit
## 216 Pursuit
## 217 Pursuit
## 218 Pursuit
## 219 Pursuit
## 220 Pursuit
## 221 Pursuit
## 222 Pursuit
## 223 Pursuit
## 224 Sprint
## 225 Sprint
## 226 Sprint
## 227 Sprint
## 228 Sprint
## 229 Sprint
## 230 Sprint
## 231 Sprint
## 232 Sprint
## 233 Sprint
## 234 Sprint
## 235 Sprint
## 236 Sprint
## 237 Sprint
## 238 Sprint
## 239 Sprint
## 240 Sprint
## 241 Sprint
## 242 Sprint
## 243 Sprint
## 244 Sprint
## 245 Sprint
## 246 Sprint
## 247 Sprint
## 248 Sprint
## 249 Sprint
## 250 Sprint
## 251 Sprint
## 252 Sprint
## 253 Sprint
## 254 Sprint
## 255 Sprint
## 256 Sprint
## 257 Sprint
## 258 Sprint
## 259 Sprint
## 260 Sprint
## 261 Sprint
## 262 Sprint
## 263 Sprint
## 264 Sprint
## 265 Sprint
## 266 Sprint
## 267 Sprint
## 268 Sprint
## 269 Sprint
## 270 Sprint
## 271 Sprint
## 272 Sprint
## 273 Sprint
## 274 Sprint
## 275 Sprint
## 276 Sprint
## 277 Sprint
## 278 Sprint
## 279 Sprint
## 280 Sprint
## 281 Sprint
## 282 Sprint
## 283 Sprint
## 284 Sprint
## 285 Sprint
## 286 Sprint
## 287 Sprint
## 288 Sprint
## 289 Sprint
## 290 Sprint
## 291 Sprint
## 292 Sprint
## 293 Sprint
## 294 Sprint
## 295 Sprint
## 296 Sprint
## 297 Sprint
## 298 Sprint
## 299 Sprint
## 300 Sprint
## 301 Sprint
## 302 Sprint
## 303 Sprint
## 304 Sprint
## 305 Sprint
## 306 Sprint
## 307 Sprint
## 308 Sprint
## 309 Sprint
## 310 Sprint
## 311 Sprint
## 312 Sprint
## 313 Sprint
## 314 Sprint
## 315 Sprint
## 316 Sprint
## 317 Sprint
## 318 Sprint
## 319 Sprint
## 320 Sprint
## 321 Sprint
## 322 Sprint
## 323 Sprint
## 324 Sprint
## 325 Sprint
## 326 Sprint
## 327 Sprint
## 328 Sprint
## 329 Mass start
## 330 Mass start
## 331 Mass start
## 332 Mass start
## 333 Mass start
## 334 Mass start
## 335 Mass start
## 336 Mass start
## 337 Mass start
## 338 Mass start
## 339 Mass start
## 340 Mass start
## 341 Mass start
## 342 Mass start
## 343 Mass start
## 344 Mass start
## 345 Mass start
## 346 Mass start
## 347 Mass start
## 348 Mass start
## 349 Mass start
## 350 Mass start
## 351 Mass start
## 352 Mass start
## 353 Mass start
## 354 Mass start
## 355 Mass start
## 356 Mass start
## 357 Mass start
## 358 Mass start
## 359 Pursuit
## 360 Pursuit
## 361 Pursuit
## 362 Pursuit
## 363 Pursuit
## 364 Pursuit
## 365 Pursuit
## 366 Pursuit
## 367 Pursuit
## 368 Pursuit
## 369 Pursuit
## 370 Pursuit
## 371 Pursuit
## 372 Pursuit
## 373 Pursuit
## 374 Pursuit
## 375 Pursuit
## 376 Pursuit
## 377 Pursuit
## 378 Pursuit
## 379 Pursuit
## 380 Pursuit
## 381 Pursuit
## 382 Pursuit
## 383 Pursuit
## 384 Pursuit
## 385 Pursuit
## 386 Pursuit
## 387 Pursuit
## 388 Pursuit
## 389 Pursuit
## 390 Pursuit
## 391 Pursuit
## 392 Pursuit
## 393 Pursuit
## 394 Pursuit
## 395 Pursuit
## 396 Pursuit
## 397 Pursuit
## 398 Pursuit
## 399 Pursuit
## 400 Pursuit
## 401 Pursuit
## 402 Pursuit
## 403 Pursuit
## 404 Pursuit
## 405 Pursuit
## 406 Pursuit
## 407 Pursuit
## 408 Pursuit
## 409 Pursuit
## 410 Pursuit
## 411 Pursuit
## 412 Pursuit
## 413 Pursuit
## 414 Pursuit
## 415 Pursuit
## 416 Pursuit
## 417 Pursuit
## 418 Pursuit
## 419 Sprint
## 420 Sprint
## 421 Sprint
## 422 Sprint
## 423 Sprint
## 424 Sprint
## 425 Sprint
## 426 Sprint
## 427 Sprint
## 428 Sprint
## 429 Sprint
## 430 Sprint
## 431 Sprint
## 432 Sprint
## 433 Sprint
## 434 Sprint
## 435 Sprint
## 436 Sprint
## 437 Sprint
## 438 Sprint
## 439 Sprint
## 440 Sprint
## 441 Sprint
## 442 Sprint
## 443 Sprint
## 444 Sprint
## 445 Sprint
## 446 Sprint
## 447 Sprint
## 448 Sprint
## 449 Sprint
## 450 Sprint
## 451 Sprint
## 452 Sprint
## 453 Sprint
## 454 Sprint
## 455 Sprint
## 456 Sprint
## 457 Sprint
## 458 Sprint
## 459 Sprint
## 460 Sprint
## 461 Sprint
## 462 Sprint
## 463 Sprint
## 464 Sprint
## 465 Sprint
## 466 Sprint
## 467 Sprint
## 468 Sprint
## 469 Sprint
## 470 Sprint
## 471 Sprint
## 472 Sprint
## 473 Sprint
## 474 Sprint
## 475 Sprint
## 476 Sprint
## 477 Sprint
## 478 Sprint
## 479 Sprint
## 480 Sprint
## 481 Sprint
## 482 Sprint
## 483 Sprint
## 484 Sprint
## 485 Sprint
## 486 Sprint
## 487 Sprint
## 488 Sprint
## 489 Sprint
## 490 Sprint
## 491 Sprint
## 492 Sprint
## 493 Sprint
## 494 Sprint
## 495 Sprint
## 496 Sprint
## 497 Sprint
## 498 Sprint
## 499 Sprint
## 500 Sprint
## 501 Sprint
## 502 Sprint
## 503 Sprint
## 504 Sprint
## 505 Sprint
## 506 Sprint
## 507 Sprint
## 508 Sprint
## 509 Individual
## 510 Individual
## 511 Individual
## 512 Individual
## 513 Individual
## 514 Individual
## 515 Individual
## 516 Individual
## 517 Individual
## 518 Individual
## 519 Individual
## 520 Individual
## 521 Individual
## 522 Individual
## 523 Individual
## 524 Individual
## 525 Individual
## 526 Individual
## 527 Individual
## 528 Individual
## 529 Individual
## 530 Individual
## 531 Individual
## 532 Individual
## 533 Individual
## 534 Individual
## 535 Individual
## 536 Individual
## 537 Individual
## 538 Individual
## 539 Individual
## 540 Individual
## 541 Individual
## 542 Individual
## 543 Individual
## 544 Individual
## 545 Individual
## 546 Individual
## 547 Individual
## 548 Individual
## 549 Individual
## 550 Individual
## 551 Individual
## 552 Individual
## 553 Individual
## 554 Individual
## 555 Individual
## 556 Individual
## 557 Individual
## 558 Individual
## 559 Individual
## 560 Individual
## 561 Individual
## 562 Individual
## 563 Individual
## 564 Individual
## 565 Individual
## 566 Individual
## 567 Individual
## 568 Individual
## 569 Individual
## 570 Individual
## 571 Individual
## 572 Individual
## 573 Individual
## 574 Individual
## 575 Individual
## 576 Individual
## 577 Individual
## 578 Individual
## 579 Individual
## 580 Individual
## 581 Individual
## 582 Individual
## 583 Individual
## 584 Individual
## 585 Individual
## 586 Individual
## 587 Individual
## 588 Individual
## 589 Individual
## 590 Individual
## 591 Individual
## 592 Individual
## 593 Individual
## 594 Individual
## 595 Individual
## 596 Individual
## 597 Individual
## 598 Individual
## 599 Individual
## 600 Individual
## 601 Individual
## 602 Individual
## 603 Individual
## 604 Individual
## 605 Individual
## 606 Individual
## 607 Individual
## 608 Individual
## 609 Individual
## 610 Individual
## 611 Individual
## 612 Individual
## 613 Individual
## 614 Individual
## 615 Individual
## 616 Individual
## 617 Individual
## 618 Individual
## 619 Individual
## 620 Individual
## 621 Individual
## 622 Individual
## 623 Individual
## 624 Individual
## 625 Individual
## 626 Individual
## 627 Individual
## 628 Individual
## 629 Individual
## 630 Individual
## 631 Individual
## 632 Individual
## 633 Individual
## 634 Individual
## 635 Individual
## 636 Mass start
## 637 Mass start
## 638 Mass start
## 639 Mass start
## 640 Mass start
## 641 Mass start
## 642 Mass start
## 643 Mass start
## 644 Mass start
## 645 Mass start
## 646 Mass start
## 647 Mass start
## 648 Mass start
## 649 Mass start
## 650 Mass start
## 651 Mass start
## 652 Mass start
## 653 Mass start
## 654 Mass start
## 655 Mass start
## 656 Mass start
## 657 Mass start
## 658 Mass start
## 659 Mass start
## 660 Mass start
## 661 Mass start
## 662 Mass start
## 663 Mass start
## 664 Mass start
## 665 Mass start
## 666 Pursuit
## 667 Pursuit
## 668 Pursuit
## 669 Pursuit
## 670 Pursuit
## 671 Pursuit
## 672 Pursuit
## 673 Pursuit
## 674 Pursuit
## 675 Pursuit
## 676 Pursuit
## 677 Pursuit
## 678 Pursuit
## 679 Pursuit
## 680 Pursuit
## 681 Pursuit
## 682 Pursuit
## 683 Pursuit
## 684 Pursuit
## 685 Pursuit
## 686 Pursuit
## 687 Pursuit
## 688 Pursuit
## 689 Pursuit
## 690 Pursuit
## 691 Pursuit
## 692 Pursuit
## 693 Pursuit
## 694 Pursuit
## 695 Pursuit
## 696 Pursuit
## 697 Pursuit
## 698 Pursuit
## 699 Pursuit
## 700 Pursuit
## 701 Pursuit
## 702 Pursuit
## 703 Pursuit
## 704 Pursuit
## 705 Pursuit
## 706 Pursuit
## 707 Pursuit
## 708 Pursuit
## 709 Pursuit
## 710 Pursuit
## 711 Pursuit
## 712 Pursuit
## 713 Pursuit
## 714 Pursuit
## 715 Pursuit
## 716 Pursuit
## 717 Pursuit
## 718 Pursuit
## 719 Pursuit
## 720 Pursuit
## 721 Pursuit
## 722 Pursuit
## 723 Pursuit
## 724 Pursuit
## 725 Pursuit
## 726 Sprint
## 727 Sprint
## 728 Sprint
## 729 Sprint
## 730 Sprint
## 731 Sprint
## 732 Sprint
## 733 Sprint
## 734 Sprint
## 735 Sprint
## 736 Sprint
## 737 Sprint
## 738 Sprint
## 739 Sprint
## 740 Sprint
## 741 Sprint
## 742 Sprint
## 743 Sprint
## 744 Sprint
## 745 Sprint
## 746 Sprint
## 747 Sprint
## 748 Sprint
## 749 Sprint
## 750 Sprint
## 751 Sprint
## 752 Sprint
## 753 Sprint
## 754 Sprint
## 755 Sprint
## 756 Sprint
## 757 Sprint
## 758 Sprint
## 759 Sprint
## 760 Sprint
## 761 Sprint
## 762 Sprint
## 763 Sprint
## 764 Sprint
## 765 Sprint
## 766 Sprint
## 767 Sprint
## 768 Sprint
## 769 Sprint
## 770 Sprint
## 771 Sprint
## 772 Sprint
## 773 Sprint
## 774 Sprint
## 775 Sprint
## 776 Sprint
## 777 Sprint
## 778 Sprint
## 779 Sprint
## 780 Sprint
## 781 Sprint
## 782 Sprint
## 783 Sprint
## 784 Sprint
## 785 Sprint
## 786 Sprint
## 787 Sprint
## 788 Sprint
## 789 Sprint
## 790 Sprint
## 791 Sprint
## 792 Sprint
## 793 Sprint
## 794 Sprint
## 795 Sprint
## 796 Sprint
## 797 Sprint
## 798 Sprint
## 799 Sprint
## 800 Sprint
## 801 Sprint
## 802 Sprint
## 803 Sprint
## 804 Sprint
## 805 Sprint
## 806 Sprint
## 807 Sprint
## 808 Sprint
## 809 Sprint
## 810 Sprint
## 811 Sprint
## 812 Sprint
## 813 Sprint
## 814 Sprint
## 815 Sprint
## 816 Sprint
## 817 Sprint
## 818 Sprint
## 819 Sprint
## 820 Sprint
## 821 Sprint
## 822 Sprint
## 823 Sprint
## 824 Sprint
## 825 Sprint
## 826 Sprint
## 827 Sprint
## 828 Sprint
## 829 Sprint
## 830 Sprint
## 831 Sprint
## 832 Sprint
## 833 Sprint
## 834 Sprint
## 835 Sprint
## 836 Sprint
## 837 Sprint
## 838 Sprint
## 839 Sprint
## 840 Sprint
## 841 Sprint
## 842 Sprint
## 843 Sprint
## 844 Sprint
## 845 Sprint
## 846 Sprint
## 847 Sprint
## 848 Sprint
## 849 Sprint
## 850 Sprint
## 851 Sprint
## 852 Sprint
## 853 Sprint
## 854 Sprint
## 855 Pursuit
## 856 Pursuit
## 857 Pursuit
## 858 Pursuit
## 859 Pursuit
## 860 Pursuit
## 861 Pursuit
## 862 Pursuit
## 863 Pursuit
## 864 Pursuit
## 865 Pursuit
## 866 Pursuit
## 867 Pursuit
## 868 Pursuit
## 869 Pursuit
## 870 Pursuit
## 871 Pursuit
## 872 Pursuit
## 873 Pursuit
## 874 Pursuit
## 875 Pursuit
## 876 Pursuit
## 877 Pursuit
## 878 Pursuit
## 879 Pursuit
## 880 Pursuit
## 881 Pursuit
## 882 Pursuit
## 883 Pursuit
## 884 Pursuit
## 885 Pursuit
## 886 Pursuit
## 887 Pursuit
## 888 Pursuit
## 889 Pursuit
## 890 Pursuit
## 891 Pursuit
## 892 Pursuit
## 893 Pursuit
## 894 Pursuit
## 895 Pursuit
## 896 Pursuit
## 897 Pursuit
## 898 Pursuit
## 899 Pursuit
## 900 Pursuit
## 901 Pursuit
## 902 Pursuit
## 903 Pursuit
## 904 Pursuit
## 905 Pursuit
## 906 Pursuit
## 907 Pursuit
## 908 Pursuit
## 909 Pursuit
## 910 Pursuit
## 911 Pursuit
## 912 Pursuit
## 913 Pursuit
## 914 Pursuit
## 915 Sprint
## 916 Sprint
## 917 Sprint
## 918 Sprint
## 919 Sprint
## 920 Sprint
## 921 Sprint
## 922 Sprint
## 923 Sprint
## 924 Sprint
## 925 Sprint
## 926 Sprint
## 927 Sprint
## 928 Sprint
## 929 Sprint
## 930 Sprint
## 931 Sprint
## 932 Sprint
## 933 Sprint
## 934 Sprint
## 935 Sprint
## 936 Sprint
## 937 Sprint
## 938 Sprint
## 939 Sprint
## 940 Sprint
## 941 Sprint
## 942 Sprint
## 943 Sprint
## 944 Sprint
## 945 Sprint
## 946 Sprint
## 947 Sprint
## 948 Sprint
## 949 Sprint
## 950 Sprint
## 951 Sprint
## 952 Sprint
## 953 Sprint
## 954 Sprint
## 955 Sprint
## 956 Sprint
## 957 Sprint
## 958 Sprint
## 959 Sprint
## 960 Sprint
## 961 Sprint
## 962 Sprint
## 963 Sprint
## 964 Sprint
## 965 Sprint
## 966 Sprint
## 967 Sprint
## 968 Sprint
## 969 Sprint
## 970 Sprint
## 971 Sprint
## 972 Sprint
## 973 Sprint
## 974 Sprint
## 975 Sprint
## 976 Sprint
## 977 Sprint
## 978 Sprint
## 979 Sprint
## 980 Sprint
## 981 Sprint
## 982 Sprint
## 983 Sprint
## 984 Sprint
## 985 Sprint
## 986 Sprint
## 987 Sprint
## 988 Sprint
## 989 Sprint
## 990 Sprint
## 991 Sprint
## 992 Sprint
## 993 Sprint
## 994 Sprint
## 995 Sprint
## 996 Sprint
## 997 Sprint
## 998 Sprint
## 999 Sprint
## 1000 Sprint
## 1001 Sprint
## 1002 Sprint
## 1003 Sprint
## 1004 Sprint
## 1005 Sprint
## 1006 Sprint
## 1007 Sprint
## 1008 Sprint
## 1009 Sprint
## 1010 Sprint
## 1011 Mass start
## 1012 Mass start
## 1013 Mass start
## 1014 Mass start
## 1015 Mass start
## 1016 Mass start
## 1017 Mass start
## 1018 Mass start
## 1019 Mass start
## 1020 Mass start
## 1021 Mass start
## 1022 Mass start
## 1023 Mass start
## 1024 Mass start
## 1025 Mass start
## 1026 Mass start
## 1027 Mass start
## 1028 Mass start
## 1029 Mass start
## 1030 Mass start
## 1031 Mass start
## 1032 Mass start
## 1033 Mass start
## 1034 Mass start
## 1035 Mass start
## 1036 Mass start
## 1037 Mass start
## 1038 Mass start
## 1039 Mass start
## 1040 Mass start
## 1041 Sprint
## 1042 Sprint
## 1043 Sprint
## 1044 Sprint
## 1045 Sprint
## 1046 Sprint
## 1047 Sprint
## 1048 Sprint
## 1049 Sprint
## 1050 Sprint
## 1051 Sprint
## 1052 Sprint
## 1053 Sprint
## 1054 Sprint
## 1055 Sprint
## 1056 Sprint
## 1057 Sprint
## 1058 Sprint
## 1059 Sprint
## 1060 Sprint
## 1061 Sprint
## 1062 Sprint
## 1063 Sprint
## 1064 Sprint
## 1065 Sprint
## 1066 Sprint
## 1067 Sprint
## 1068 Sprint
## 1069 Sprint
## 1070 Sprint
## 1071 Sprint
## 1072 Sprint
## 1073 Sprint
## 1074 Sprint
## 1075 Sprint
## 1076 Sprint
## 1077 Sprint
## 1078 Sprint
## 1079 Sprint
## 1080 Sprint
## 1081 Sprint
## 1082 Sprint
## 1083 Sprint
## 1084 Sprint
## 1085 Sprint
## 1086 Sprint
## 1087 Sprint
## 1088 Sprint
## 1089 Sprint
## 1090 Sprint
## 1091 Sprint
## 1092 Sprint
## 1093 Sprint
## 1094 Sprint
## 1095 Sprint
## 1096 Sprint
## 1097 Sprint
## 1098 Sprint
## 1099 Sprint
## 1100 Sprint
## 1101 Sprint
## 1102 Sprint
## 1103 Sprint
## 1104 Sprint
## 1105 Sprint
## 1106 Sprint
## 1107 Sprint
## 1108 Sprint
## 1109 Sprint
## 1110 Sprint
## 1111 Sprint
## 1112 Sprint
## 1113 Sprint
## 1114 Sprint
## 1115 Sprint
## 1116 Sprint
## 1117 Sprint
## 1118 Sprint
## 1119 Sprint
## 1120 Sprint
## 1121 Sprint
## 1122 Sprint
## 1123 Sprint
## 1124 Sprint
## 1125 Sprint
## 1126 Sprint
## 1127 Sprint
## 1128 Sprint
## 1129 Sprint
## 1130 Sprint
## 1131 Sprint
## 1132 Sprint
## 1133 Sprint
## 1134 Sprint
## 1135 Sprint
## 1136 Sprint
## 1137 Sprint
## 1138 Sprint
## 1139 Sprint
## 1140 Individual
## 1141 Individual
## 1142 Individual
## 1143 Individual
## 1144 Individual
## 1145 Individual
## 1146 Individual
## 1147 Individual
## 1148 Individual
## 1149 Individual
## 1150 Individual
## 1151 Individual
## 1152 Individual
## 1153 Individual
## 1154 Individual
## 1155 Individual
## 1156 Individual
## 1157 Individual
## 1158 Individual
## 1159 Individual
## 1160 Individual
## 1161 Individual
## 1162 Individual
## 1163 Individual
## 1164 Individual
## 1165 Individual
## 1166 Individual
## 1167 Individual
## 1168 Individual
## 1169 Individual
## 1170 Individual
## 1171 Individual
## 1172 Individual
## 1173 Individual
## 1174 Individual
## 1175 Individual
## 1176 Individual
## 1177 Individual
## 1178 Individual
## 1179 Individual
## 1180 Individual
## 1181 Individual
## 1182 Individual
## 1183 Individual
## 1184 Individual
## 1185 Individual
## 1186 Individual
## 1187 Individual
## 1188 Individual
## 1189 Individual
## 1190 Individual
## 1191 Individual
## 1192 Individual
## 1193 Individual
## 1194 Individual
## 1195 Individual
## 1196 Individual
## 1197 Individual
## 1198 Individual
## 1199 Individual
## 1200 Individual
## 1201 Individual
## 1202 Individual
## 1203 Individual
## 1204 Individual
## 1205 Individual
## 1206 Individual
## 1207 Individual
## 1208 Individual
## 1209 Individual
## 1210 Individual
## 1211 Individual
## 1212 Individual
## 1213 Individual
## 1214 Individual
## 1215 Individual
## 1216 Individual
## 1217 Individual
## 1218 Individual
## 1219 Individual
## 1220 Individual
## 1221 Individual
## 1222 Individual
## 1223 Individual
## 1224 Individual
## 1225 Individual
## 1226 Individual
## 1227 Individual
## 1228 Individual
## 1229 Individual
## 1230 Individual
## 1231 Individual
## 1232 Individual
## 1233 Individual
## 1234 Individual
## 1235 Individual
## 1236 Individual
## 1237 Individual
## 1238 Individual
## 1239 Individual
## 1240 Individual
## 1241 Individual
## 1242 Pursuit
## 1243 Pursuit
## 1244 Pursuit
## 1245 Pursuit
## 1246 Pursuit
## 1247 Pursuit
## 1248 Pursuit
## 1249 Pursuit
## 1250 Pursuit
## 1251 Pursuit
## 1252 Pursuit
## 1253 Pursuit
## 1254 Pursuit
## 1255 Pursuit
## 1256 Pursuit
## 1257 Pursuit
## 1258 Pursuit
## 1259 Pursuit
## 1260 Pursuit
## 1261 Pursuit
## 1262 Pursuit
## 1263 Pursuit
## 1264 Pursuit
## 1265 Pursuit
## 1266 Pursuit
## 1267 Pursuit
## 1268 Pursuit
## 1269 Pursuit
## 1270 Pursuit
## 1271 Pursuit
## 1272 Pursuit
## 1273 Pursuit
## 1274 Pursuit
## 1275 Pursuit
## 1276 Pursuit
## 1277 Pursuit
## 1278 Pursuit
## 1279 Pursuit
## 1280 Pursuit
## 1281 Pursuit
## 1282 Pursuit
## 1283 Pursuit
## 1284 Pursuit
## 1285 Pursuit
## 1286 Pursuit
## 1287 Pursuit
## 1288 Pursuit
## 1289 Pursuit
## 1290 Pursuit
## 1291 Pursuit
## 1292 Pursuit
## 1293 Pursuit
## 1294 Pursuit
## 1295 Pursuit
## 1296 Pursuit
## 1297 Pursuit
## 1298 Pursuit
## 1299 Pursuit
## 1300 Pursuit
## 1301 Pursuit
## 1302 Sprint
## 1303 Sprint
## 1304 Sprint
## 1305 Sprint
## 1306 Sprint
## 1307 Sprint
## 1308 Sprint
## 1309 Sprint
## 1310 Sprint
## 1311 Sprint
## 1312 Sprint
## 1313 Sprint
## 1314 Sprint
## 1315 Sprint
## 1316 Sprint
## 1317 Sprint
## 1318 Sprint
## 1319 Sprint
## 1320 Sprint
## 1321 Sprint
## 1322 Sprint
## 1323 Sprint
## 1324 Sprint
## 1325 Sprint
## 1326 Sprint
## 1327 Sprint
## 1328 Sprint
## 1329 Sprint
## 1330 Sprint
## 1331 Sprint
## 1332 Sprint
## 1333 Sprint
## 1334 Sprint
## 1335 Sprint
## 1336 Sprint
## 1337 Sprint
## 1338 Sprint
## 1339 Sprint
## 1340 Sprint
## 1341 Sprint
## 1342 Sprint
## 1343 Sprint
## 1344 Sprint
## 1345 Sprint
## 1346 Sprint
## 1347 Sprint
## 1348 Sprint
## 1349 Sprint
## 1350 Sprint
## 1351 Sprint
## 1352 Sprint
## 1353 Sprint
## 1354 Sprint
## 1355 Sprint
## 1356 Sprint
## 1357 Sprint
## 1358 Sprint
## 1359 Sprint
## 1360 Sprint
## 1361 Sprint
## 1362 Sprint
## 1363 Sprint
## 1364 Sprint
## 1365 Sprint
## 1366 Sprint
## 1367 Sprint
## 1368 Sprint
## 1369 Sprint
## 1370 Sprint
## 1371 Sprint
## 1372 Sprint
## 1373 Sprint
## 1374 Sprint
## 1375 Sprint
## 1376 Sprint
## 1377 Sprint
## 1378 Sprint
## 1379 Sprint
## 1380 Sprint
## 1381 Sprint
## 1382 Sprint
## 1383 Sprint
## 1384 Sprint
## 1385 Sprint
## 1386 Sprint
## 1387 Sprint
## 1388 Sprint
## 1389 Sprint
## 1390 Sprint
## 1391 Sprint
## 1392 Sprint
## 1393 Sprint
## 1394 Sprint
## 1395 Sprint
## 1396 Sprint
## 1397 Sprint
## 1398 Sprint
## 1399 Sprint
## 1400 Sprint
## 1401 Sprint
## 1402 Sprint
## 1403 Sprint
## 1404 Individual
## 1405 Individual
## 1406 Individual
## 1407 Individual
## 1408 Individual
## 1409 Individual
## 1410 Individual
## 1411 Individual
## 1412 Individual
## 1413 Individual
## 1414 Individual
## 1415 Individual
## 1416 Individual
## 1417 Individual
## 1418 Individual
## 1419 Individual
## 1420 Individual
## 1421 Individual
## 1422 Individual
## 1423 Individual
## 1424 Individual
## 1425 Individual
## 1426 Individual
## 1427 Individual
## 1428 Individual
## 1429 Individual
## 1430 Individual
## 1431 Individual
## 1432 Individual
## 1433 Individual
## 1434 Individual
## 1435 Individual
## 1436 Individual
## 1437 Individual
## 1438 Individual
## 1439 Individual
## 1440 Individual
## 1441 Individual
## 1442 Individual
## 1443 Individual
## 1444 Individual
## 1445 Individual
## 1446 Individual
## 1447 Individual
## 1448 Individual
## 1449 Individual
## 1450 Individual
## 1451 Individual
## 1452 Individual
## 1453 Individual
## 1454 Individual
## 1455 Individual
## 1456 Individual
## 1457 Individual
## 1458 Individual
## 1459 Individual
## 1460 Individual
## 1461 Individual
## 1462 Individual
## 1463 Individual
## 1464 Individual
## 1465 Individual
## 1466 Individual
## 1467 Individual
## 1468 Individual
## 1469 Individual
## 1470 Individual
## 1471 Individual
## 1472 Individual
## 1473 Individual
## 1474 Individual
## 1475 Individual
## 1476 Individual
## 1477 Individual
## 1478 Individual
## 1479 Individual
## 1480 Individual
## 1481 Individual
## 1482 Individual
## 1483 Individual
## 1484 Individual
## 1485 Individual
## 1486 Individual
## 1487 Individual
## 1488 Individual
## 1489 Individual
## 1490 Individual
## 1491 Individual
## 1492 Individual
## 1493 Individual
## 1494 Individual
## 1495 Individual
## 1496 Individual
## 1497 Individual
## 1498 Individual
## 1499 Individual
## 1500 Individual
## 1501 Individual
## 1502 Sprint
## 1503 Sprint
## 1504 Sprint
## 1505 Sprint
## 1506 Sprint
## 1507 Sprint
## 1508 Sprint
## 1509 Sprint
## 1510 Sprint
## 1511 Sprint
## 1512 Sprint
## 1513 Sprint
## 1514 Sprint
## 1515 Sprint
## 1516 Sprint
## 1517 Sprint
## 1518 Sprint
## 1519 Sprint
## 1520 Sprint
## 1521 Sprint
## 1522 Sprint
## 1523 Sprint
## 1524 Sprint
## 1525 Sprint
## 1526 Sprint
## 1527 Sprint
## 1528 Sprint
## 1529 Sprint
## 1530 Sprint
## 1531 Sprint
## 1532 Sprint
## 1533 Sprint
## 1534 Sprint
## 1535 Sprint
## 1536 Sprint
## 1537 Sprint
## 1538 Sprint
## 1539 Sprint
## 1540 Sprint
## 1541 Sprint
## 1542 Sprint
## 1543 Sprint
## 1544 Sprint
## 1545 Sprint
## 1546 Sprint
## 1547 Sprint
## 1548 Sprint
## 1549 Sprint
## 1550 Sprint
## 1551 Sprint
## 1552 Sprint
## 1553 Sprint
## 1554 Sprint
## 1555 Sprint
## 1556 Sprint
## 1557 Sprint
## 1558 Sprint
## 1559 Sprint
## 1560 Sprint
## 1561 Sprint
## 1562 Sprint
## 1563 Sprint
## 1564 Sprint
## 1565 Sprint
## 1566 Sprint
## 1567 Sprint
## 1568 Sprint
## 1569 Sprint
## 1570 Sprint
## 1571 Sprint
## 1572 Sprint
## 1573 Sprint
## 1574 Sprint
## 1575 Sprint
## 1576 Sprint
## 1577 Sprint
## 1578 Sprint
## 1579 Sprint
## 1580 Sprint
## 1581 Sprint
## 1582 Sprint
## 1583 Sprint
## 1584 Sprint
## 1585 Sprint
## 1586 Sprint
## 1587 Sprint
## 1588 Sprint
## 1589 Sprint
## 1590 Sprint
## 1591 Sprint
## 1592 Sprint
## 1593 Sprint
## 1594 Sprint
## 1595 Sprint
## 1596 Sprint
## 1597 Sprint
## 1598 Sprint
## 1599 Sprint
## 1600 Sprint
## 1601 Sprint
## 1602 Sprint
## 1603 Mass start
## 1604 Mass start
## 1605 Mass start
## 1606 Mass start
## 1607 Mass start
## 1608 Mass start
## 1609 Mass start
## 1610 Mass start
## 1611 Mass start
## 1612 Mass start
## 1613 Mass start
## 1614 Mass start
## 1615 Mass start
## 1616 Mass start
## 1617 Mass start
## 1618 Mass start
## 1619 Mass start
## 1620 Mass start
## 1621 Mass start
## 1622 Mass start
## 1623 Mass start
## 1624 Mass start
## 1625 Mass start
## 1626 Mass start
## 1627 Mass start
## 1628 Mass start
## 1629 Mass start
## 1630 Mass start
## 1631 Mass start
## 1632 Mass start
## 1633 Pursuit
## 1634 Pursuit
## 1635 Pursuit
## 1636 Pursuit
## 1637 Pursuit
## 1638 Pursuit
## 1639 Pursuit
## 1640 Pursuit
## 1641 Pursuit
## 1642 Pursuit
## 1643 Pursuit
## 1644 Pursuit
## 1645 Pursuit
## 1646 Pursuit
## 1647 Pursuit
## 1648 Pursuit
## 1649 Pursuit
## 1650 Pursuit
## 1651 Pursuit
## 1652 Pursuit
## 1653 Pursuit
## 1654 Pursuit
## 1655 Pursuit
## 1656 Pursuit
## 1657 Pursuit
## 1658 Pursuit
## 1659 Pursuit
## 1660 Pursuit
## 1661 Pursuit
## 1662 Pursuit
## 1663 Pursuit
## 1664 Pursuit
## 1665 Pursuit
## 1666 Pursuit
## 1667 Pursuit
## 1668 Pursuit
## 1669 Pursuit
## 1670 Pursuit
## 1671 Pursuit
## 1672 Pursuit
## 1673 Pursuit
## 1674 Pursuit
## 1675 Pursuit
## 1676 Pursuit
## 1677 Pursuit
## 1678 Pursuit
## 1679 Pursuit
## 1680 Pursuit
## 1681 Pursuit
## 1682 Pursuit
## 1683 Pursuit
## 1684 Pursuit
## 1685 Pursuit
## 1686 Pursuit
## 1687 Pursuit
## 1688 Pursuit
## 1689 Pursuit
## 1690 Pursuit
## 1691 Pursuit
## 1692 Pursuit
## 1693 Sprint
## 1694 Sprint
## 1695 Sprint
## 1696 Sprint
## 1697 Sprint
## 1698 Sprint
## 1699 Sprint
## 1700 Sprint
## 1701 Sprint
## 1702 Sprint
## 1703 Sprint
## 1704 Sprint
## 1705 Sprint
## 1706 Sprint
## 1707 Sprint
## 1708 Sprint
## 1709 Sprint
## 1710 Sprint
## 1711 Sprint
## 1712 Sprint
## 1713 Sprint
## 1714 Sprint
## 1715 Sprint
## 1716 Sprint
## 1717 Sprint
## 1718 Sprint
## 1719 Sprint
## 1720 Sprint
## 1721 Sprint
## 1722 Sprint
## 1723 Sprint
## 1724 Sprint
## 1725 Sprint
## 1726 Sprint
## 1727 Sprint
## 1728 Sprint
## 1729 Sprint
## 1730 Sprint
## 1731 Sprint
## 1732 Sprint
## 1733 Sprint
## 1734 Sprint
## 1735 Sprint
## 1736 Sprint
## 1737 Sprint
## 1738 Sprint
## 1739 Sprint
## 1740 Sprint
## 1741 Sprint
## 1742 Sprint
## 1743 Sprint
## 1744 Sprint
## 1745 Sprint
## 1746 Sprint
## 1747 Sprint
## 1748 Sprint
## 1749 Sprint
## 1750 Sprint
## 1751 Sprint
## 1752 Sprint
## 1753 Sprint
## 1754 Sprint
## 1755 Sprint
## 1756 Sprint
## 1757 Sprint
## 1758 Sprint
## 1759 Sprint
## 1760 Sprint
## 1761 Sprint
## 1762 Sprint
## 1763 Sprint
## 1764 Sprint
## 1765 Sprint
## 1766 Sprint
## 1767 Sprint
## 1768 Sprint
## 1769 Sprint
## 1770 Sprint
## 1771 Sprint
## 1772 Sprint
## 1773 Sprint
## 1774 Sprint
## 1775 Sprint
## 1776 Sprint
## 1777 Sprint
## 1778 Sprint
## 1779 Sprint
## 1780 Sprint
## 1781 Sprint
## 1782 Sprint
## 1783 Sprint
## 1784 Sprint
## 1785 Sprint
## 1786 Sprint
## 1787 Sprint
## 1788 Sprint
## 1789 Sprint
## 1790 Sprint
## 1791 Sprint
## 1792 Sprint
## 1793 Sprint
## 1794 Sprint
## 1795 Sprint
## 1796 Mass start
## 1797 Mass start
## 1798 Mass start
## 1799 Mass start
## 1800 Mass start
## 1801 Mass start
## 1802 Mass start
## 1803 Mass start
## 1804 Mass start
## 1805 Mass start
## 1806 Mass start
## 1807 Mass start
## 1808 Mass start
## 1809 Mass start
## 1810 Mass start
## 1811 Mass start
## 1812 Mass start
## 1813 Mass start
## 1814 Mass start
## 1815 Mass start
## 1816 Mass start
## 1817 Mass start
## 1818 Mass start
## 1819 Mass start
## 1820 Mass start
## 1821 Mass start
## 1822 Mass start
## 1823 Mass start
## 1824 Mass start
## 1825 Mass start
## 1826 Sprint
## 1827 Sprint
## 1828 Sprint
## 1829 Sprint
## 1830 Sprint
## 1831 Sprint
## 1832 Sprint
## 1833 Sprint
## 1834 Sprint
## 1835 Sprint
## 1836 Sprint
## 1837 Sprint
## 1838 Sprint
## 1839 Sprint
## 1840 Sprint
## 1841 Sprint
## 1842 Sprint
## 1843 Sprint
## 1844 Sprint
## 1845 Sprint
## 1846 Sprint
## 1847 Sprint
## 1848 Sprint
## 1849 Sprint
## 1850 Sprint
## 1851 Sprint
## 1852 Sprint
## 1853 Sprint
## 1854 Sprint
## 1855 Sprint
## 1856 Sprint
## 1857 Sprint
## 1858 Sprint
## 1859 Sprint
## 1860 Sprint
## 1861 Sprint
## 1862 Sprint
## 1863 Sprint
## 1864 Sprint
## 1865 Sprint
## 1866 Sprint
## 1867 Sprint
## 1868 Sprint
## 1869 Sprint
## 1870 Sprint
## 1871 Sprint
## 1872 Sprint
## 1873 Sprint
## 1874 Sprint
## 1875 Sprint
## 1876 Sprint
## 1877 Sprint
## 1878 Sprint
## 1879 Sprint
## 1880 Sprint
## 1881 Sprint
## 1882 Sprint
## 1883 Sprint
## 1884 Sprint
## 1885 Sprint
## 1886 Sprint
## 1887 Sprint
## 1888 Sprint
## 1889 Sprint
## 1890 Sprint
## 1891 Sprint
## 1892 Sprint
## 1893 Sprint
## 1894 Sprint
## 1895 Sprint
## 1896 Sprint
## 1897 Sprint
## 1898 Sprint
## 1899 Sprint
## 1900 Sprint
## 1901 Sprint
## 1902 Sprint
## 1903 Sprint
## 1904 Sprint
## 1905 Sprint
## 1906 Sprint
## 1907 Sprint
## 1908 Sprint
## 1909 Sprint
## 1910 Sprint
## 1911 Sprint
## 1912 Sprint
## 1913 Sprint
## 1914 Sprint
## 1915 Sprint
## 1916 Sprint
## 1917 Sprint
## 1918 Sprint
## 1919 Sprint
## 1920 Sprint
## 1921 Sprint
## 1922 Sprint
## 1923 Sprint
## 1924 Sprint
## 1925 Sprint
## 1926 Sprint
## 1927 Sprint
## 1928 Pursuit
## 1929 Pursuit
## 1930 Pursuit
## 1931 Pursuit
## 1932 Pursuit
## 1933 Pursuit
## 1934 Pursuit
## 1935 Pursuit
## 1936 Pursuit
## 1937 Pursuit
## 1938 Pursuit
## 1939 Pursuit
## 1940 Pursuit
## 1941 Pursuit
## 1942 Pursuit
## 1943 Pursuit
## 1944 Pursuit
## 1945 Pursuit
## 1946 Pursuit
## 1947 Pursuit
## 1948 Pursuit
## 1949 Pursuit
## 1950 Pursuit
## 1951 Pursuit
## 1952 Pursuit
## 1953 Pursuit
## 1954 Pursuit
## 1955 Pursuit
## 1956 Pursuit
## 1957 Pursuit
## 1958 Pursuit
## 1959 Pursuit
## 1960 Pursuit
## 1961 Pursuit
## 1962 Pursuit
## 1963 Pursuit
## 1964 Pursuit
## 1965 Pursuit
## 1966 Pursuit
## 1967 Pursuit
## 1968 Pursuit
## 1969 Pursuit
## 1970 Pursuit
## 1971 Pursuit
## 1972 Pursuit
## 1973 Pursuit
## 1974 Pursuit
## 1975 Pursuit
## 1976 Pursuit
## 1977 Pursuit
## 1978 Pursuit
## 1979 Pursuit
## 1980 Pursuit
## 1981 Pursuit
## 1982 Pursuit
## 1983 Pursuit
## 1984 Pursuit
## 1985 Pursuit
## 1986 Pursuit
## 1987 Pursuit
## 1988 Sprint
## 1989 Sprint
## 1990 Sprint
## 1991 Sprint
## 1992 Sprint
## 1993 Sprint
## 1994 Sprint
## 1995 Sprint
## 1996 Sprint
## 1997 Sprint
## 1998 Sprint
## 1999 Sprint
## 2000 Sprint
## 2001 Sprint
## 2002 Sprint
## 2003 Sprint
## 2004 Sprint
## 2005 Sprint
## 2006 Sprint
## 2007 Sprint
## 2008 Sprint
## 2009 Sprint
## 2010 Sprint
## 2011 Sprint
## 2012 Sprint
## 2013 Sprint
## 2014 Sprint
## 2015 Sprint
## 2016 Sprint
## 2017 Sprint
## 2018 Sprint
## 2019 Sprint
## 2020 Sprint
## 2021 Sprint
## 2022 Sprint
## 2023 Sprint
## 2024 Sprint
## 2025 Sprint
## 2026 Sprint
## 2027 Sprint
## 2028 Sprint
## 2029 Sprint
## 2030 Sprint
## 2031 Sprint
## 2032 Sprint
## 2033 Sprint
## 2034 Sprint
## 2035 Sprint
## 2036 Sprint
## 2037 Sprint
## 2038 Sprint
## 2039 Sprint
## 2040 Sprint
## 2041 Sprint
## 2042 Sprint
## 2043 Sprint
## 2044 Sprint
## 2045 Sprint
## 2046 Sprint
## 2047 Sprint
## 2048 Sprint
## 2049 Sprint
## 2050 Sprint
## 2051 Sprint
## 2052 Sprint
## 2053 Sprint
## 2054 Sprint
## 2055 Sprint
## 2056 Sprint
## 2057 Sprint
## 2058 Sprint
## 2059 Sprint
## 2060 Sprint
## 2061 Sprint
## 2062 Sprint
## 2063 Sprint
## 2064 Sprint
## 2065 Sprint
## 2066 Sprint
## 2067 Sprint
## 2068 Sprint
## 2069 Sprint
## 2070 Sprint
## 2071 Sprint
## 2072 Sprint
## 2073 Sprint
## 2074 Sprint
## 2075 Sprint
## 2076 Sprint
## 2077 Sprint
## 2078 Sprint
## 2079 Sprint
## 2080 Sprint
## 2081 Sprint
## 2082 Sprint
## 2083 Sprint
## 2084 Sprint
## 2085 Sprint
## 2086 Sprint
## 2087 Sprint
## 2088 Sprint
## 2089 Sprint
## 2090 Sprint
## 2091 Sprint
## 2092 Sprint
## 2093 Sprint
## 2094 Mass start
## 2095 Mass start
## 2096 Mass start
## 2097 Mass start
## 2098 Mass start
## 2099 Mass start
## 2100 Mass start
## 2101 Mass start
## 2102 Mass start
## 2103 Mass start
## 2104 Mass start
## 2105 Mass start
## 2106 Mass start
## 2107 Mass start
## 2108 Mass start
## 2109 Mass start
## 2110 Mass start
## 2111 Mass start
## 2112 Mass start
## 2113 Mass start
## 2114 Mass start
## 2115 Mass start
## 2116 Mass start
## 2117 Mass start
## 2118 Mass start
## 2119 Mass start
## 2120 Mass start
## 2121 Mass start
## 2122 Mass start
## 2123 Mass start
## 2124 Sprint
## 2125 Sprint
## 2126 Sprint
## 2127 Sprint
## 2128 Sprint
## 2129 Sprint
## 2130 Sprint
## 2131 Sprint
## 2132 Sprint
## 2133 Sprint
## 2134 Sprint
## 2135 Sprint
## 2136 Sprint
## 2137 Sprint
## 2138 Sprint
## 2139 Sprint
## 2140 Sprint
## 2141 Sprint
## 2142 Sprint
## 2143 Sprint
## 2144 Sprint
## 2145 Sprint
## 2146 Sprint
## 2147 Sprint
## 2148 Sprint
## 2149 Sprint
## 2150 Sprint
## 2151 Sprint
## 2152 Sprint
## 2153 Sprint
## 2154 Sprint
## 2155 Sprint
## 2156 Sprint
## 2157 Sprint
## 2158 Sprint
## 2159 Sprint
## 2160 Sprint
## 2161 Sprint
## 2162 Sprint
## 2163 Sprint
## 2164 Sprint
## 2165 Sprint
## 2166 Sprint
## 2167 Sprint
## 2168 Sprint
## 2169 Sprint
## 2170 Sprint
## 2171 Sprint
## 2172 Sprint
## 2173 Sprint
## 2174 Sprint
## 2175 Sprint
## 2176 Sprint
## 2177 Sprint
## 2178 Sprint
## 2179 Sprint
## 2180 Sprint
## 2181 Sprint
## 2182 Sprint
## 2183 Sprint
## 2184 Sprint
## 2185 Sprint
## 2186 Sprint
## 2187 Sprint
## 2188 Sprint
## 2189 Sprint
## 2190 Sprint
## 2191 Sprint
## 2192 Sprint
## 2193 Sprint
## 2194 Sprint
## 2195 Sprint
## 2196 Sprint
## 2197 Sprint
## 2198 Sprint
## 2199 Sprint
## 2200 Sprint
## 2201 Sprint
## 2202 Sprint
## 2203 Sprint
## 2204 Sprint
## 2205 Sprint
## 2206 Sprint
## 2207 Sprint
## 2208 Sprint
## 2209 Sprint
## 2210 Sprint
## 2211 Sprint
## 2212 Sprint
## 2213 Pursuit
## 2214 Pursuit
## 2215 Pursuit
## 2216 Pursuit
## 2217 Pursuit
## 2218 Pursuit
## 2219 Pursuit
## 2220 Pursuit
## 2221 Pursuit
## 2222 Pursuit
## 2223 Pursuit
## 2224 Pursuit
## 2225 Pursuit
## 2226 Pursuit
## 2227 Pursuit
## 2228 Pursuit
## 2229 Pursuit
## 2230 Pursuit
## 2231 Pursuit
## 2232 Pursuit
## 2233 Pursuit
## 2234 Pursuit
## 2235 Pursuit
## 2236 Pursuit
## 2237 Pursuit
## 2238 Pursuit
## 2239 Pursuit
## 2240 Pursuit
## 2241 Pursuit
## 2242 Pursuit
## 2243 Pursuit
## 2244 Pursuit
## 2245 Pursuit
## 2246 Pursuit
## 2247 Pursuit
## 2248 Pursuit
## 2249 Pursuit
## 2250 Pursuit
## 2251 Pursuit
## 2252 Pursuit
## 2253 Pursuit
## 2254 Pursuit
## 2255 Pursuit
## 2256 Pursuit
## 2257 Pursuit
## 2258 Pursuit
## 2259 Pursuit
## 2260 Pursuit
## 2261 Pursuit
## 2262 Pursuit
## 2263 Pursuit
## 2264 Pursuit
## 2265 Pursuit
## 2266 Pursuit
## 2267 Pursuit
## 2268 Pursuit
## 2269 Pursuit
## 2270 Pursuit
## 2271 Pursuit
## 2272 Pursuit
## 2273 Sprint
## 2274 Sprint
## 2275 Sprint
## 2276 Sprint
## 2277 Sprint
## 2278 Sprint
## 2279 Sprint
## 2280 Sprint
## 2281 Sprint
## 2282 Sprint
## 2283 Sprint
## 2284 Sprint
## 2285 Sprint
## 2286 Sprint
## 2287 Sprint
## 2288 Sprint
## 2289 Sprint
## 2290 Sprint
## 2291 Sprint
## 2292 Sprint
## 2293 Sprint
## 2294 Sprint
## 2295 Sprint
## 2296 Sprint
## 2297 Sprint
## 2298 Sprint
## 2299 Sprint
## 2300 Sprint
## 2301 Sprint
## 2302 Sprint
## 2303 Sprint
## 2304 Sprint
## 2305 Sprint
## 2306 Sprint
## 2307 Sprint
## 2308 Sprint
## 2309 Sprint
## 2310 Sprint
## 2311 Sprint
## 2312 Sprint
## 2313 Sprint
## 2314 Sprint
## 2315 Sprint
## 2316 Sprint
## 2317 Sprint
## 2318 Sprint
## 2319 Sprint
## 2320 Sprint
## 2321 Sprint
## 2322 Sprint
## 2323 Sprint
## 2324 Sprint
## 2325 Sprint
## 2326 Sprint
## 2327 Sprint
## 2328 Sprint
## 2329 Sprint
## 2330 Sprint
## 2331 Sprint
## 2332 Sprint
## 2333 Sprint
## 2334 Sprint
## 2335 Sprint
## 2336 Sprint
## 2337 Sprint
## 2338 Sprint
## 2339 Sprint
## 2340 Sprint
## 2341 Sprint
## 2342 Sprint
## 2343 Sprint
## 2344 Sprint
## 2345 Sprint
## 2346 Sprint
## 2347 Sprint
## 2348 Sprint
## 2349 Sprint
## 2350 Sprint
## 2351 Sprint
## 2352 Sprint
## 2353 Sprint
## 2354 Sprint
## 2355 Sprint
## 2356 Sprint
## 2357 Sprint
## 2358 Sprint
## 2359 Sprint
## 2360 Sprint
## 2361 Sprint
## 2362 Sprint
## 2363 Sprint
## 2364 Sprint
## 2365 Sprint
## 2366 Sprint
## 2367 Sprint
## 2368 Sprint
## 2369 Sprint
## 2370 Sprint
## 2371 Sprint
## 2372 Sprint
## 2373 Sprint
## 2374 Sprint
## 2375 Sprint
## 2376 Sprint
## 2377 Sprint
## 2378 Sprint
## 2379 Sprint
## 2380 Sprint
## 2381 Pursuit
## 2382 Pursuit
## 2383 Pursuit
## 2384 Pursuit
## 2385 Pursuit
## 2386 Pursuit
## 2387 Pursuit
## 2388 Pursuit
## 2389 Pursuit
## 2390 Pursuit
## 2391 Pursuit
## 2392 Pursuit
## 2393 Pursuit
## 2394 Pursuit
## 2395 Pursuit
## 2396 Pursuit
## 2397 Pursuit
## 2398 Pursuit
## 2399 Pursuit
## 2400 Pursuit
## 2401 Pursuit
## 2402 Pursuit
## 2403 Pursuit
## 2404 Pursuit
## 2405 Pursuit
## 2406 Pursuit
## 2407 Pursuit
## 2408 Pursuit
## 2409 Pursuit
## 2410 Pursuit
## 2411 Pursuit
## 2412 Pursuit
## 2413 Pursuit
## 2414 Pursuit
## 2415 Pursuit
## 2416 Pursuit
## 2417 Pursuit
## 2418 Pursuit
## 2419 Pursuit
## 2420 Pursuit
## 2421 Pursuit
## 2422 Pursuit
## 2423 Pursuit
## 2424 Pursuit
## 2425 Pursuit
## 2426 Pursuit
## 2427 Pursuit
## 2428 Pursuit
## 2429 Pursuit
## 2430 Pursuit
## 2431 Pursuit
## 2432 Pursuit
## 2433 Pursuit
## 2434 Pursuit
## 2435 Pursuit
## 2436 Pursuit
## 2437 Pursuit
## 2438 Pursuit
## 2439 Pursuit
## 2440 Pursuit
## 2441 Sprint
## 2442 Sprint
## 2443 Sprint
## 2444 Sprint
## 2445 Sprint
## 2446 Sprint
## 2447 Sprint
## 2448 Sprint
## 2449 Sprint
## 2450 Sprint
## 2451 Sprint
## 2452 Sprint
## 2453 Sprint
## 2454 Sprint
## 2455 Sprint
## 2456 Sprint
## 2457 Sprint
## 2458 Sprint
## 2459 Sprint
## 2460 Sprint
## 2461 Sprint
## 2462 Sprint
## 2463 Sprint
## 2464 Sprint
## 2465 Sprint
## 2466 Sprint
## 2467 Sprint
## 2468 Sprint
## 2469 Sprint
## 2470 Sprint
## 2471 Sprint
## 2472 Sprint
## 2473 Sprint
## 2474 Sprint
## 2475 Sprint
## 2476 Sprint
## 2477 Sprint
## 2478 Sprint
## 2479 Sprint
## 2480 Sprint
## 2481 Sprint
## 2482 Sprint
## 2483 Sprint
## 2484 Sprint
## 2485 Sprint
## 2486 Sprint
## 2487 Sprint
## 2488 Sprint
## 2489 Sprint
## 2490 Sprint
## 2491 Sprint
## 2492 Sprint
## 2493 Sprint
## 2494 Sprint
## 2495 Sprint
## 2496 Sprint
## 2497 Sprint
## 2498 Sprint
## 2499 Sprint
## 2500 Sprint
## 2501 Sprint
## 2502 Sprint
## 2503 Sprint
## 2504 Sprint
## 2505 Sprint
## 2506 Sprint
## 2507 Sprint
## 2508 Sprint
## 2509 Sprint
## 2510 Sprint
## 2511 Sprint
## 2512 Sprint
## 2513 Sprint
## 2514 Sprint
## 2515 Sprint
## 2516 Sprint
## 2517 Sprint
## 2518 Sprint
## 2519 Sprint
## 2520 Sprint
## 2521 Sprint
## 2522 Sprint
## 2523 Sprint
## 2524 Sprint
## 2525 Sprint
## 2526 Sprint
## 2527 Sprint
## 2528 Individual
## 2529 Individual
## 2530 Individual
## 2531 Individual
## 2532 Individual
## 2533 Individual
## 2534 Individual
## 2535 Individual
## 2536 Individual
## 2537 Individual
## 2538 Individual
## 2539 Individual
## 2540 Individual
## 2541 Individual
## 2542 Individual
## 2543 Individual
## 2544 Individual
## 2545 Individual
## 2546 Individual
## 2547 Individual
## 2548 Individual
## 2549 Individual
## 2550 Individual
## 2551 Individual
## 2552 Individual
## 2553 Individual
## 2554 Individual
## 2555 Individual
## 2556 Individual
## 2557 Individual
## 2558 Individual
## 2559 Individual
## 2560 Individual
## 2561 Individual
## 2562 Individual
## 2563 Individual
## 2564 Individual
## 2565 Individual
## 2566 Individual
## 2567 Individual
## 2568 Individual
## 2569 Individual
## 2570 Individual
## 2571 Individual
## 2572 Individual
## 2573 Individual
## 2574 Individual
## 2575 Individual
## 2576 Individual
## 2577 Individual
## 2578 Individual
## 2579 Individual
## 2580 Individual
## 2581 Individual
## 2582 Individual
## 2583 Individual
## 2584 Individual
## 2585 Individual
## 2586 Individual
## 2587 Individual
## 2588 Individual
## 2589 Individual
## 2590 Individual
## 2591 Individual
## 2592 Individual
## 2593 Individual
## 2594 Individual
## 2595 Individual
## 2596 Individual
## 2597 Individual
## 2598 Individual
## 2599 Individual
## 2600 Individual
## 2601 Individual
## 2602 Individual
## 2603 Individual
## 2604 Individual
## 2605 Individual
## 2606 Individual
## 2607 Individual
## 2608 Individual
## 2609 Individual
## 2610 Individual
## 2611 Individual
## 2612 Individual
## 2613 Individual
## 2614 Individual
## 2615 Individual
## 2616 Individual
## 2617 Individual
## 2618 Individual
## 2619 Individual
## 2620 Individual
## 2621 Individual
## 2622 Individual
## 2623 Individual
## 2624 Individual
## 2625 Individual
## 2626 Individual
## 2627 Individual
## 2628 Individual
## 2629 Individual
## 2630 Individual
## 2631 Individual
## 2632 Individual
## 2633 Individual
## 2634 Pursuit
## 2635 Pursuit
## 2636 Pursuit
## 2637 Pursuit
## 2638 Pursuit
## 2639 Pursuit
## 2640 Pursuit
## 2641 Pursuit
## 2642 Pursuit
## 2643 Pursuit
## 2644 Pursuit
## 2645 Pursuit
## 2646 Pursuit
## 2647 Pursuit
## 2648 Pursuit
## 2649 Pursuit
## 2650 Pursuit
## 2651 Pursuit
## 2652 Pursuit
## 2653 Pursuit
## 2654 Pursuit
## 2655 Pursuit
## 2656 Pursuit
## 2657 Pursuit
## 2658 Pursuit
## 2659 Pursuit
## 2660 Pursuit
## 2661 Pursuit
## 2662 Pursuit
## 2663 Pursuit
## 2664 Pursuit
## 2665 Pursuit
## 2666 Pursuit
## 2667 Pursuit
## 2668 Pursuit
## 2669 Pursuit
## 2670 Pursuit
## 2671 Pursuit
## 2672 Pursuit
## 2673 Pursuit
## 2674 Pursuit
## 2675 Pursuit
## 2676 Pursuit
## 2677 Pursuit
## 2678 Pursuit
## 2679 Pursuit
## 2680 Pursuit
## 2681 Pursuit
## 2682 Pursuit
## 2683 Pursuit
## 2684 Pursuit
## 2685 Pursuit
## 2686 Pursuit
## 2687 Pursuit
## 2688 Pursuit
## 2689 Pursuit
## 2690 Pursuit
## 2691 Pursuit
## 2692 Pursuit
## 2693 Pursuit
## 2694 Sprint
## 2695 Sprint
## 2696 Sprint
## 2697 Sprint
## 2698 Sprint
## 2699 Sprint
## 2700 Sprint
## 2701 Sprint
## 2702 Sprint
## 2703 Sprint
## 2704 Sprint
## 2705 Sprint
## 2706 Sprint
## 2707 Sprint
## 2708 Sprint
## 2709 Sprint
## 2710 Sprint
## 2711 Sprint
## 2712 Sprint
## 2713 Sprint
## 2714 Sprint
## 2715 Sprint
## 2716 Sprint
## 2717 Sprint
## 2718 Sprint
## 2719 Sprint
## 2720 Sprint
## 2721 Sprint
## 2722 Sprint
## 2723 Sprint
## 2724 Sprint
## 2725 Sprint
## 2726 Sprint
## 2727 Sprint
## 2728 Sprint
## 2729 Sprint
## 2730 Sprint
## 2731 Sprint
## 2732 Sprint
## 2733 Sprint
## 2734 Sprint
## 2735 Sprint
## 2736 Sprint
## 2737 Sprint
## 2738 Sprint
## 2739 Sprint
## 2740 Sprint
## 2741 Sprint
## 2742 Sprint
## 2743 Sprint
## 2744 Sprint
## 2745 Sprint
## 2746 Sprint
## 2747 Sprint
## 2748 Sprint
## 2749 Sprint
## 2750 Sprint
## 2751 Sprint
## 2752 Sprint
## 2753 Sprint
## 2754 Sprint
## 2755 Sprint
## 2756 Sprint
## 2757 Sprint
## 2758 Sprint
## 2759 Sprint
## 2760 Sprint
## 2761 Sprint
## 2762 Sprint
## 2763 Sprint
## 2764 Sprint
## 2765 Sprint
## 2766 Sprint
## 2767 Sprint
## 2768 Sprint
## 2769 Sprint
## 2770 Sprint
## 2771 Sprint
## 2772 Sprint
## 2773 Sprint
## 2774 Sprint
## 2775 Sprint
## 2776 Sprint
## 2777 Sprint
## 2778 Sprint
## 2779 Sprint
## 2780 Sprint
## 2781 Sprint
## 2782 Sprint
## 2783 Sprint
## 2784 Sprint
## 2785 Sprint
## 2786 Sprint
## 2787 Sprint
## 2788 Sprint
## 2789 Sprint
## 2790 Sprint
## 2791 Sprint
## 2792 Sprint
## 2793 Sprint
## 2794 Sprint
## 2795 Sprint
## 2796 Sprint
## 2797 Sprint
## 2798 Sprint
## 2799 Sprint
## 2800 Individual
## 2801 Individual
## 2802 Individual
## 2803 Individual
## 2804 Individual
## 2805 Individual
## 2806 Individual
## 2807 Individual
## 2808 Individual
## 2809 Individual
## 2810 Individual
## 2811 Individual
## 2812 Individual
## 2813 Individual
## 2814 Individual
## 2815 Individual
## 2816 Individual
## 2817 Individual
## 2818 Individual
## 2819 Individual
## 2820 Individual
## 2821 Individual
## 2822 Individual
## 2823 Individual
## 2824 Individual
## 2825 Individual
## 2826 Individual
## 2827 Individual
## 2828 Individual
## 2829 Individual
## 2830 Individual
## 2831 Individual
## 2832 Individual
## 2833 Individual
## 2834 Individual
## 2835 Individual
## 2836 Individual
## 2837 Individual
## 2838 Individual
## 2839 Individual
## 2840 Individual
## 2841 Individual
## 2842 Individual
## 2843 Individual
## 2844 Individual
## 2845 Individual
## 2846 Individual
## 2847 Individual
## 2848 Individual
## 2849 Individual
## 2850 Individual
## 2851 Individual
## 2852 Individual
## 2853 Individual
## 2854 Individual
## 2855 Individual
## 2856 Individual
## 2857 Individual
## 2858 Individual
## 2859 Individual
## 2860 Individual
## 2861 Individual
## 2862 Individual
## 2863 Individual
## 2864 Individual
## 2865 Individual
## 2866 Individual
## 2867 Individual
## 2868 Individual
## 2869 Individual
## 2870 Individual
## 2871 Individual
## 2872 Individual
## 2873 Individual
## 2874 Individual
## 2875 Individual
## 2876 Individual
## 2877 Individual
## 2878 Individual
## 2879 Individual
## 2880 Individual
## 2881 Individual
## 2882 Individual
## 2883 Individual
## 2884 Individual
## 2885 Individual
## 2886 Individual
## 2887 Individual
## 2888 Individual
## 2889 Individual
## 2890 Individual
## 2891 Individual
## 2892 Individual
## 2893 Individual
## 2894 Individual
## 2895 Individual
## 2896 Individual
## 2897 Individual
## 2898 Individual
## 2899 Mass start
## 2900 Mass start
## 2901 Mass start
## 2902 Mass start
## 2903 Mass start
## 2904 Mass start
## 2905 Mass start
## 2906 Mass start
## 2907 Mass start
## 2908 Mass start
## 2909 Mass start
## 2910 Mass start
## 2911 Mass start
## 2912 Mass start
## 2913 Mass start
## 2914 Mass start
## 2915 Mass start
## 2916 Mass start
## 2917 Mass start
## 2918 Mass start
## 2919 Mass start
## 2920 Mass start
## 2921 Mass start
## 2922 Mass start
## 2923 Mass start
## 2924 Mass start
## 2925 Mass start
## 2926 Mass start
## 2927 Mass start
## 2928 Mass start
## 2929 Pursuit
## 2930 Pursuit
## 2931 Pursuit
## 2932 Pursuit
## 2933 Pursuit
## 2934 Pursuit
## 2935 Pursuit
## 2936 Pursuit
## 2937 Pursuit
## 2938 Pursuit
## 2939 Pursuit
## 2940 Pursuit
## 2941 Pursuit
## 2942 Pursuit
## 2943 Pursuit
## 2944 Pursuit
## 2945 Pursuit
## 2946 Pursuit
## 2947 Pursuit
## 2948 Pursuit
## 2949 Pursuit
## 2950 Pursuit
## 2951 Pursuit
## 2952 Pursuit
## 2953 Pursuit
## 2954 Pursuit
## 2955 Pursuit
## 2956 Pursuit
## 2957 Pursuit
## 2958 Pursuit
## 2959 Pursuit
## 2960 Pursuit
## 2961 Pursuit
## 2962 Pursuit
## 2963 Pursuit
## 2964 Pursuit
## 2965 Pursuit
## 2966 Pursuit
## 2967 Pursuit
## 2968 Pursuit
## 2969 Pursuit
## 2970 Pursuit
## 2971 Pursuit
## 2972 Pursuit
## 2973 Pursuit
## 2974 Pursuit
## 2975 Pursuit
## 2976 Pursuit
## 2977 Pursuit
## 2978 Pursuit
## 2979 Pursuit
## 2980 Pursuit
## 2981 Pursuit
## 2982 Pursuit
## 2983 Pursuit
## 2984 Pursuit
## 2985 Pursuit
## 2986 Pursuit
## 2987 Pursuit
## 2988 Pursuit
## 2989 Sprint
## 2990 Sprint
## 2991 Sprint
## 2992 Sprint
## 2993 Sprint
## 2994 Sprint
## 2995 Sprint
## 2996 Sprint
## 2997 Sprint
## 2998 Sprint
## 2999 Sprint
## 3000 Sprint
## 3001 Sprint
## 3002 Sprint
## 3003 Sprint
## 3004 Sprint
## 3005 Sprint
## 3006 Sprint
## 3007 Sprint
## 3008 Sprint
## 3009 Sprint
## 3010 Sprint
## 3011 Sprint
## 3012 Sprint
## 3013 Sprint
## 3014 Sprint
## 3015 Sprint
## 3016 Sprint
## 3017 Sprint
## 3018 Sprint
## 3019 Sprint
## 3020 Sprint
## 3021 Sprint
## 3022 Sprint
## 3023 Sprint
## 3024 Sprint
## 3025 Sprint
## 3026 Sprint
## 3027 Sprint
## 3028 Sprint
## 3029 Sprint
## 3030 Sprint
## 3031 Sprint
## 3032 Sprint
## 3033 Sprint
## 3034 Sprint
## 3035 Sprint
## 3036 Sprint
## 3037 Sprint
## 3038 Sprint
## 3039 Sprint
## 3040 Sprint
## 3041 Sprint
## 3042 Sprint
## 3043 Sprint
## 3044 Sprint
## 3045 Sprint
## 3046 Sprint
## 3047 Sprint
## 3048 Sprint
## 3049 Sprint
## 3050 Sprint
## 3051 Sprint
## 3052 Sprint
## 3053 Sprint
## 3054 Sprint
## 3055 Sprint
## 3056 Sprint
## 3057 Sprint
## 3058 Sprint
## 3059 Sprint
## 3060 Sprint
## 3061 Sprint
## 3062 Sprint
## 3063 Sprint
## 3064 Sprint
## 3065 Sprint
## 3066 Sprint
## 3067 Sprint
## 3068 Sprint
## 3069 Sprint
## 3070 Sprint
## 3071 Sprint
## 3072 Sprint
## 3073 Sprint
## 3074 Sprint
## 3075 Sprint
## 3076 Sprint
## 3077 Sprint
## 3078 Sprint
## 3079 Sprint
## 3080 Sprint
## 3081 Sprint
## 3082 Sprint
## 3083 Sprint
## 3084 Sprint
## 3085 Sprint
## 3086 Sprint
## 3087 Sprint
## 3088 Sprint
## 3089 Sprint
## 3090 Sprint
## 3091 Mass start
## 3092 Mass start
## 3093 Mass start
## 3094 Mass start
## 3095 Mass start
## 3096 Mass start
## 3097 Mass start
## 3098 Mass start
## 3099 Mass start
## 3100 Mass start
## 3101 Mass start
## 3102 Mass start
## 3103 Mass start
## 3104 Mass start
## 3105 Mass start
## 3106 Mass start
## 3107 Mass start
## 3108 Mass start
## 3109 Mass start
## 3110 Mass start
## 3111 Mass start
## 3112 Mass start
## 3113 Mass start
## 3114 Mass start
## 3115 Mass start
## 3116 Mass start
## 3117 Mass start
## 3118 Mass start
## 3119 Mass start
## 3120 Mass start
## 3121 Pursuit
## 3122 Pursuit
## 3123 Pursuit
## 3124 Pursuit
## 3125 Pursuit
## 3126 Pursuit
## 3127 Pursuit
## 3128 Pursuit
## 3129 Pursuit
## 3130 Pursuit
## 3131 Pursuit
## 3132 Pursuit
## 3133 Pursuit
## 3134 Pursuit
## 3135 Pursuit
## 3136 Pursuit
## 3137 Pursuit
## 3138 Pursuit
## 3139 Pursuit
## 3140 Pursuit
## 3141 Pursuit
## 3142 Pursuit
## 3143 Pursuit
## 3144 Pursuit
## 3145 Pursuit
## 3146 Pursuit
## 3147 Pursuit
## 3148 Pursuit
## 3149 Pursuit
## 3150 Pursuit
## 3151 Pursuit
## 3152 Pursuit
## 3153 Pursuit
## 3154 Pursuit
## 3155 Pursuit
## 3156 Pursuit
## 3157 Pursuit
## 3158 Pursuit
## 3159 Pursuit
## 3160 Pursuit
## 3161 Pursuit
## 3162 Pursuit
## 3163 Pursuit
## 3164 Pursuit
## 3165 Pursuit
## 3166 Pursuit
## 3167 Pursuit
## 3168 Pursuit
## 3169 Pursuit
## 3170 Pursuit
## 3171 Pursuit
## 3172 Pursuit
## 3173 Pursuit
## 3174 Pursuit
## 3175 Pursuit
## 3176 Pursuit
## 3177 Pursuit
## 3178 Pursuit
## 3179 Pursuit
## 3180 Pursuit
## 3181 Sprint
## 3182 Sprint
## 3183 Sprint
## 3184 Sprint
## 3185 Sprint
## 3186 Sprint
## 3187 Sprint
## 3188 Sprint
## 3189 Sprint
## 3190 Sprint
## 3191 Sprint
## 3192 Sprint
## 3193 Sprint
## 3194 Sprint
## 3195 Sprint
## 3196 Sprint
## 3197 Sprint
## 3198 Sprint
## 3199 Sprint
## 3200 Sprint
## 3201 Sprint
## 3202 Sprint
## 3203 Sprint
## 3204 Sprint
## 3205 Sprint
## 3206 Sprint
## 3207 Sprint
## 3208 Sprint
## 3209 Sprint
## 3210 Sprint
## 3211 Sprint
## 3212 Sprint
## 3213 Sprint
## 3214 Sprint
## 3215 Sprint
## 3216 Sprint
## 3217 Sprint
## 3218 Sprint
## 3219 Sprint
## 3220 Sprint
## 3221 Sprint
## 3222 Sprint
## 3223 Sprint
## 3224 Sprint
## 3225 Sprint
## 3226 Sprint
## 3227 Sprint
## 3228 Sprint
## 3229 Sprint
## 3230 Sprint
## 3231 Sprint
## 3232 Sprint
## 3233 Sprint
## 3234 Sprint
## 3235 Sprint
## 3236 Sprint
## 3237 Sprint
## 3238 Sprint
## 3239 Sprint
## 3240 Sprint
## 3241 Sprint
## 3242 Sprint
## 3243 Sprint
## 3244 Sprint
## 3245 Sprint
## 3246 Sprint
## 3247 Sprint
## 3248 Sprint
## 3249 Sprint
## 3250 Sprint
## 3251 Sprint
## 3252 Sprint
## 3253 Sprint
## 3254 Sprint
## 3255 Sprint
## 3256 Sprint
## 3257 Sprint
## 3258 Sprint
## 3259 Sprint
## 3260 Sprint
## 3261 Sprint
## 3262 Sprint
## 3263 Sprint
## 3264 Sprint
## 3265 Sprint
## 3266 Sprint
## 3267 Sprint
## 3268 Sprint
## 3269 Sprint
## 3270 Sprint
## 3271 Sprint
## 3272 Sprint
## 3273 Sprint
## 3274 Sprint
## 3275 Sprint
## 3276 Sprint
## 3277 Sprint
## 3278 Sprint
## 3279 Sprint
## 3280 Sprint
## 3281 Sprint
## 3282 Sprint
## 3283 Sprint
## 3284 Sprint
## 3285 Sprint
## 3286 Sprint
## 3287 Pursuit
## 3288 Pursuit
## 3289 Pursuit
## 3290 Pursuit
## 3291 Pursuit
## 3292 Pursuit
## 3293 Pursuit
## 3294 Pursuit
## 3295 Pursuit
## 3296 Pursuit
## 3297 Pursuit
## 3298 Pursuit
## 3299 Pursuit
## 3300 Pursuit
## 3301 Pursuit
## 3302 Pursuit
## 3303 Pursuit
## 3304 Pursuit
## 3305 Pursuit
## 3306 Pursuit
## 3307 Pursuit
## 3308 Pursuit
## 3309 Pursuit
## 3310 Pursuit
## 3311 Pursuit
## 3312 Pursuit
## 3313 Pursuit
## 3314 Pursuit
## 3315 Pursuit
## 3316 Pursuit
## 3317 Pursuit
## 3318 Pursuit
## 3319 Pursuit
## 3320 Pursuit
## 3321 Pursuit
## 3322 Pursuit
## 3323 Pursuit
## 3324 Pursuit
## 3325 Pursuit
## 3326 Pursuit
## 3327 Pursuit
## 3328 Pursuit
## 3329 Pursuit
## 3330 Pursuit
## 3331 Pursuit
## 3332 Pursuit
## 3333 Pursuit
## 3334 Pursuit
## 3335 Pursuit
## 3336 Pursuit
## 3337 Pursuit
## 3338 Pursuit
## 3339 Pursuit
## 3340 Pursuit
## 3341 Pursuit
## 3342 Pursuit
## 3343 Pursuit
## 3344 Pursuit
## 3345 Pursuit
## 3346 Pursuit
## 3347 Sprint
## 3348 Sprint
## 3349 Sprint
## 3350 Sprint
## 3351 Sprint
## 3352 Sprint
## 3353 Sprint
## 3354 Sprint
## 3355 Sprint
## 3356 Sprint
## 3357 Sprint
## 3358 Sprint
## 3359 Sprint
## 3360 Sprint
## 3361 Sprint
## 3362 Sprint
## 3363 Sprint
## 3364 Sprint
## 3365 Sprint
## 3366 Sprint
## 3367 Sprint
## 3368 Sprint
## 3369 Sprint
## 3370 Sprint
## 3371 Sprint
## 3372 Sprint
## 3373 Sprint
## 3374 Sprint
## 3375 Sprint
## 3376 Sprint
## 3377 Sprint
## 3378 Sprint
## 3379 Sprint
## 3380 Sprint
## 3381 Sprint
## 3382 Sprint
## 3383 Sprint
## 3384 Sprint
## 3385 Sprint
## 3386 Sprint
## 3387 Sprint
## 3388 Sprint
## 3389 Sprint
## 3390 Sprint
## 3391 Sprint
## 3392 Sprint
## 3393 Sprint
## 3394 Sprint
## 3395 Sprint
## 3396 Sprint
## 3397 Sprint
## 3398 Sprint
## 3399 Sprint
## 3400 Sprint
## 3401 Sprint
## 3402 Sprint
## 3403 Sprint
## 3404 Sprint
## 3405 Sprint
## 3406 Sprint
## 3407 Sprint
## 3408 Sprint
## 3409 Sprint
## 3410 Sprint
## 3411 Sprint
## 3412 Sprint
## 3413 Sprint
## 3414 Sprint
## 3415 Sprint
## 3416 Sprint
## 3417 Sprint
## 3418 Sprint
## 3419 Sprint
## 3420 Sprint
## 3421 Sprint
## 3422 Sprint
## 3423 Sprint
## 3424 Sprint
## 3425 Sprint
## 3426 Sprint
## 3427 Sprint
## 3428 Sprint
## 3429 Sprint
## 3430 Sprint
## 3431 Sprint
## 3432 Sprint
## 3433 Sprint
## 3434 Sprint
## 3435 Sprint
## 3436 Sprint
## 3437 Sprint
## 3438 Sprint
## 3439 Individual
## 3440 Individual
## 3441 Individual
## 3442 Individual
## 3443 Individual
## 3444 Individual
## 3445 Individual
## 3446 Individual
## 3447 Individual
## 3448 Individual
## 3449 Individual
## 3450 Individual
## 3451 Individual
## 3452 Individual
## 3453 Individual
## 3454 Individual
## 3455 Individual
## 3456 Individual
## 3457 Individual
## 3458 Individual
## 3459 Individual
## 3460 Individual
## 3461 Individual
## 3462 Individual
## 3463 Individual
## 3464 Individual
## 3465 Individual
## 3466 Individual
## 3467 Individual
## 3468 Individual
## 3469 Individual
## 3470 Individual
## 3471 Individual
## 3472 Individual
## 3473 Individual
## 3474 Individual
## 3475 Individual
## 3476 Individual
## 3477 Individual
## 3478 Individual
## 3479 Individual
## 3480 Individual
## 3481 Individual
## 3482 Individual
## 3483 Individual
## 3484 Individual
## 3485 Individual
## 3486 Individual
## 3487 Individual
## 3488 Individual
## 3489 Individual
## 3490 Individual
## 3491 Individual
## 3492 Individual
## 3493 Individual
## 3494 Individual
## 3495 Individual
## 3496 Individual
## 3497 Individual
## 3498 Individual
## 3499 Individual
## 3500 Individual
## 3501 Individual
## 3502 Individual
## 3503 Individual
## 3504 Individual
## 3505 Individual
## 3506 Individual
## 3507 Individual
## 3508 Individual
## 3509 Individual
## 3510 Individual
## 3511 Individual
## 3512 Individual
## 3513 Individual
## 3514 Individual
## 3515 Individual
## 3516 Individual
## 3517 Individual
## 3518 Individual
## 3519 Individual
## 3520 Individual
## 3521 Individual
## 3522 Individual
## 3523 Individual
## 3524 Individual
## 3525 Individual
## 3526 Individual
## 3527 Individual
## 3528 Individual
## 3529 Individual
## 3530 Individual
## 3531 Individual
## 3532 Individual
## 3533 Individual
## 3534 Individual
## 3535 Individual
## 3536 Individual
## 3537 Individual
## 3538 Individual
## 3539 Individual
## 3540 Individual
## 3541 Individual
## 3542 Individual
## 3543 Individual
## 3544 Individual
## 3545 Mass start
## 3546 Mass start
## 3547 Mass start
## 3548 Mass start
## 3549 Mass start
## 3550 Mass start
## 3551 Mass start
## 3552 Mass start
## 3553 Mass start
## 3554 Mass start
## 3555 Mass start
## 3556 Mass start
## 3557 Mass start
## 3558 Mass start
## 3559 Mass start
## 3560 Mass start
## 3561 Mass start
## 3562 Mass start
## 3563 Mass start
## 3564 Mass start
## 3565 Mass start
## 3566 Mass start
## 3567 Mass start
## 3568 Mass start
## 3569 Mass start
## 3570 Mass start
## 3571 Mass start
## 3572 Mass start
## 3573 Mass start
## 3574 Mass start
## 3575 Mass start
## 3576 Mass start
## 3577 Mass start
## 3578 Mass start
## 3579 Mass start
## 3580 Mass start
## 3581 Mass start
## 3582 Mass start
## 3583 Mass start
## 3584 Mass start
## 3585 Mass start
## 3586 Mass start
## 3587 Mass start
## 3588 Mass start
## 3589 Mass start
## 3590 Mass start
## 3591 Mass start
## 3592 Mass start
## 3593 Mass start
## 3594 Mass start
## 3595 Mass start
## 3596 Mass start
## 3597 Mass start
## 3598 Mass start
## 3599 Mass start
## 3600 Mass start
## 3601 Mass start
## 3602 Mass start
## 3603 Mass start
## 3604 Mass start
## 3605 Pursuit
## 3606 Pursuit
## 3607 Pursuit
## 3608 Pursuit
## 3609 Pursuit
## 3610 Pursuit
## 3611 Pursuit
## 3612 Pursuit
## 3613 Pursuit
## 3614 Pursuit
## 3615 Pursuit
## 3616 Pursuit
## 3617 Pursuit
## 3618 Pursuit
## 3619 Pursuit
## 3620 Pursuit
## 3621 Pursuit
## 3622 Pursuit
## 3623 Pursuit
## 3624 Pursuit
## 3625 Pursuit
## 3626 Pursuit
## 3627 Pursuit
## 3628 Pursuit
## 3629 Pursuit
## 3630 Pursuit
## 3631 Pursuit
## 3632 Pursuit
## 3633 Pursuit
## 3634 Pursuit
## 3635 Pursuit
## 3636 Pursuit
## 3637 Pursuit
## 3638 Pursuit
## 3639 Pursuit
## 3640 Pursuit
## 3641 Pursuit
## 3642 Pursuit
## 3643 Pursuit
## 3644 Pursuit
## 3645 Pursuit
## 3646 Pursuit
## 3647 Pursuit
## 3648 Pursuit
## 3649 Pursuit
## 3650 Pursuit
## 3651 Pursuit
## 3652 Pursuit
## 3653 Pursuit
## 3654 Pursuit
## 3655 Pursuit
## 3656 Pursuit
## 3657 Pursuit
## 3658 Pursuit
## 3659 Pursuit
## 3660 Pursuit
## 3661 Pursuit
## 3662 Pursuit
## 3663 Pursuit
## 3664 Pursuit
## 3665 Sprint
## 3666 Sprint
## 3667 Sprint
## 3668 Sprint
## 3669 Sprint
## 3670 Sprint
## 3671 Sprint
## 3672 Sprint
## 3673 Sprint
## 3674 Sprint
## 3675 Sprint
## 3676 Sprint
## 3677 Sprint
## 3678 Sprint
## 3679 Sprint
## 3680 Sprint
## 3681 Sprint
## 3682 Sprint
## 3683 Sprint
## 3684 Sprint
## 3685 Sprint
## 3686 Sprint
## 3687 Sprint
## 3688 Sprint
## 3689 Sprint
## 3690 Sprint
## 3691 Sprint
## 3692 Sprint
## 3693 Sprint
## 3694 Sprint
## 3695 Sprint
## 3696 Sprint
## 3697 Sprint
## 3698 Sprint
## 3699 Sprint
## 3700 Sprint
## 3701 Sprint
## 3702 Sprint
## 3703 Sprint
## 3704 Sprint
## 3705 Sprint
## 3706 Sprint
## 3707 Sprint
## 3708 Sprint
## 3709 Sprint
## 3710 Sprint
## 3711 Sprint
## 3712 Sprint
## 3713 Sprint
## 3714 Sprint
## 3715 Sprint
## 3716 Sprint
## 3717 Sprint
## 3718 Sprint
## 3719 Sprint
## 3720 Sprint
## 3721 Sprint
## 3722 Sprint
## 3723 Sprint
## 3724 Sprint
## 3725 Sprint
## 3726 Sprint
## 3727 Sprint
## 3728 Sprint
## 3729 Sprint
## 3730 Sprint
## 3731 Sprint
## 3732 Sprint
## 3733 Sprint
## 3734 Sprint
## 3735 Sprint
## 3736 Sprint
## 3737 Sprint
## 3738 Sprint
## 3739 Sprint
## 3740 Sprint
## 3741 Sprint
## 3742 Sprint
## 3743 Sprint
## 3744 Sprint
## 3745 Sprint
## 3746 Sprint
## 3747 Sprint
## 3748 Sprint
## 3749 Sprint
## 3750 Sprint
## 3751 Sprint
## 3752 Sprint
## 3753 Sprint
## 3754 Sprint
## 3755 Sprint
## 3756 Sprint
## 3757 Sprint
## 3758 Sprint
## 3759 Sprint
## 3760 Sprint
## 3761 Sprint
## 3762 Sprint
## 3763 Sprint
## 3764 Sprint
## 3765 Sprint
## 3766 Sprint
## 3767 Sprint
## 3768 Sprint
## 3769 Individual
## 3770 Individual
## 3771 Individual
## 3772 Individual
## 3773 Individual
## 3774 Individual
## 3775 Individual
## 3776 Individual
## 3777 Individual
## 3778 Individual
## 3779 Individual
## 3780 Individual
## 3781 Individual
## 3782 Individual
## 3783 Individual
## 3784 Individual
## 3785 Individual
## 3786 Individual
## 3787 Individual
## 3788 Individual
## 3789 Individual
## 3790 Individual
## 3791 Individual
## 3792 Individual
## 3793 Individual
## 3794 Individual
## 3795 Individual
## 3796 Individual
## 3797 Individual
## 3798 Individual
## 3799 Individual
## 3800 Individual
## 3801 Individual
## 3802 Individual
## 3803 Individual
## 3804 Individual
## 3805 Individual
## 3806 Individual
## 3807 Individual
## 3808 Individual
## 3809 Individual
## 3810 Individual
## 3811 Individual
## 3812 Individual
## 3813 Individual
## 3814 Individual
## 3815 Individual
## 3816 Individual
## 3817 Individual
## 3818 Individual
## 3819 Individual
## 3820 Individual
## 3821 Individual
## 3822 Individual
## 3823 Individual
## 3824 Individual
## 3825 Individual
## 3826 Individual
## 3827 Individual
## 3828 Individual
## 3829 Individual
## 3830 Individual
## 3831 Individual
## 3832 Individual
## 3833 Individual
## 3834 Individual
## 3835 Individual
## 3836 Individual
## 3837 Individual
## 3838 Individual
## 3839 Individual
## 3840 Individual
## 3841 Individual
## 3842 Individual
## 3843 Individual
## 3844 Individual
## 3845 Individual
## 3846 Individual
## 3847 Individual
## 3848 Individual
## 3849 Individual
## 3850 Individual
## 3851 Individual
## 3852 Individual
## 3853 Individual
## 3854 Individual
## 3855 Individual
## 3856 Individual
## 3857 Individual
## 3858 Individual
## 3859 Individual
## 3860 Individual
## 3861 Individual
## 3862 Individual
## 3863 Individual
## 3864 Individual
## 3865 Individual
## 3866 Individual
## 3867 Individual
## 3868 Individual
## 3869 Individual
## 3870 Individual
## 3871 Individual
## 3872 Individual
## 3873 Individual
## 3874 Individual
## 3875 Individual
## 3876 Individual
## 3877 Mass start
## 3878 Mass start
## 3879 Mass start
## 3880 Mass start
## 3881 Mass start
## 3882 Mass start
## 3883 Mass start
## 3884 Mass start
## 3885 Mass start
## 3886 Mass start
## 3887 Mass start
## 3888 Mass start
## 3889 Mass start
## 3890 Mass start
## 3891 Mass start
## 3892 Mass start
## 3893 Mass start
## 3894 Mass start
## 3895 Mass start
## 3896 Mass start
## 3897 Mass start
## 3898 Mass start
## 3899 Mass start
## 3900 Mass start
## 3901 Mass start
## 3902 Mass start
## 3903 Mass start
## 3904 Mass start
## 3905 Mass start
## 3906 Mass start
## 3907 Individual
## 3908 Individual
## 3909 Individual
## 3910 Individual
## 3911 Individual
## 3912 Individual
## 3913 Individual
## 3914 Individual
## 3915 Individual
## 3916 Individual
## 3917 Individual
## 3918 Individual
## 3919 Individual
## 3920 Individual
## 3921 Individual
## 3922 Individual
## 3923 Individual
## 3924 Individual
## 3925 Individual
## 3926 Individual
## 3927 Individual
## 3928 Individual
## 3929 Individual
## 3930 Individual
## 3931 Individual
## 3932 Individual
## 3933 Individual
## 3934 Individual
## 3935 Individual
## 3936 Individual
## 3937 Individual
## 3938 Individual
## 3939 Individual
## 3940 Individual
## 3941 Individual
## 3942 Individual
## 3943 Individual
## 3944 Individual
## 3945 Individual
## 3946 Individual
## 3947 Individual
## 3948 Individual
## 3949 Individual
## 3950 Individual
## 3951 Individual
## 3952 Individual
## 3953 Individual
## 3954 Individual
## 3955 Individual
## 3956 Individual
## 3957 Individual
## 3958 Individual
## 3959 Individual
## 3960 Individual
## 3961 Individual
## 3962 Individual
## 3963 Individual
## 3964 Individual
## 3965 Individual
## 3966 Individual
## 3967 Individual
## 3968 Individual
## 3969 Individual
## 3970 Individual
## 3971 Individual
## 3972 Individual
## 3973 Individual
## 3974 Individual
## 3975 Individual
## 3976 Individual
## 3977 Individual
## 3978 Individual
## 3979 Individual
## 3980 Individual
## 3981 Individual
## 3982 Individual
## 3983 Individual
## 3984 Individual
## 3985 Individual
## 3986 Individual
## 3987 Individual
## 3988 Individual
## 3989 Individual
## 3990 Individual
## 3991 Individual
## 3992 Individual
## 3993 Individual
## 3994 Individual
## 3995 Individual
## 3996 Individual
## 3997 Individual
## 3998 Individual
## 3999 Individual
## 4000 Individual
## 4001 Individual
## 4002 Individual
## 4003 Individual
## 4004 Individual
## 4005 Individual
## 4006 Individual
## 4007 Individual
## 4008 Individual
## 4009 Mass start
## 4010 Mass start
## 4011 Mass start
## 4012 Mass start
## 4013 Mass start
## 4014 Mass start
## 4015 Mass start
## 4016 Mass start
## 4017 Mass start
## 4018 Mass start
## 4019 Mass start
## 4020 Mass start
## 4021 Mass start
## 4022 Mass start
## 4023 Mass start
## 4024 Mass start
## 4025 Mass start
## 4026 Mass start
## 4027 Mass start
## 4028 Mass start
## 4029 Mass start
## 4030 Mass start
## 4031 Mass start
## 4032 Mass start
## 4033 Mass start
## 4034 Mass start
## 4035 Mass start
## 4036 Mass start
## 4037 Mass start
## 4038 Mass start
## 4039 Pursuit
## 4040 Pursuit
## 4041 Pursuit
## 4042 Pursuit
## 4043 Pursuit
## 4044 Pursuit
## 4045 Pursuit
## 4046 Pursuit
## 4047 Pursuit
## 4048 Pursuit
## 4049 Pursuit
## 4050 Pursuit
## 4051 Pursuit
## 4052 Pursuit
## 4053 Pursuit
## 4054 Pursuit
## 4055 Pursuit
## 4056 Pursuit
## 4057 Pursuit
## 4058 Pursuit
## 4059 Pursuit
## 4060 Pursuit
## 4061 Pursuit
## 4062 Pursuit
## 4063 Pursuit
## 4064 Pursuit
## 4065 Pursuit
## 4066 Pursuit
## 4067 Pursuit
## 4068 Pursuit
## 4069 Pursuit
## 4070 Pursuit
## 4071 Pursuit
## 4072 Pursuit
## 4073 Pursuit
## 4074 Pursuit
## 4075 Pursuit
## 4076 Pursuit
## 4077 Pursuit
## 4078 Pursuit
## 4079 Pursuit
## 4080 Pursuit
## 4081 Pursuit
## 4082 Pursuit
## 4083 Pursuit
## 4084 Pursuit
## 4085 Pursuit
## 4086 Pursuit
## 4087 Pursuit
## 4088 Pursuit
## 4089 Pursuit
## 4090 Pursuit
## 4091 Pursuit
## 4092 Pursuit
## 4093 Pursuit
## 4094 Pursuit
## 4095 Pursuit
## 4096 Pursuit
## 4097 Pursuit
## 4098 Pursuit
## 4099 Sprint
## 4100 Sprint
## 4101 Sprint
## 4102 Sprint
## 4103 Sprint
## 4104 Sprint
## 4105 Sprint
## 4106 Sprint
## 4107 Sprint
## 4108 Sprint
## 4109 Sprint
## 4110 Sprint
## 4111 Sprint
## 4112 Sprint
## 4113 Sprint
## 4114 Sprint
## 4115 Sprint
## 4116 Sprint
## 4117 Sprint
## 4118 Sprint
## 4119 Sprint
## 4120 Sprint
## 4121 Sprint
## 4122 Sprint
## 4123 Sprint
## 4124 Sprint
## 4125 Sprint
## 4126 Sprint
## 4127 Sprint
## 4128 Sprint
## 4129 Sprint
## 4130 Sprint
## 4131 Sprint
## 4132 Sprint
## 4133 Sprint
## 4134 Sprint
## 4135 Sprint
## 4136 Sprint
## 4137 Sprint
## 4138 Sprint
## 4139 Sprint
## 4140 Sprint
## 4141 Sprint
## 4142 Sprint
## 4143 Sprint
## 4144 Sprint
## 4145 Sprint
## 4146 Sprint
## 4147 Sprint
## 4148 Sprint
## 4149 Sprint
## 4150 Sprint
## 4151 Sprint
## 4152 Sprint
## 4153 Sprint
## 4154 Sprint
## 4155 Sprint
## 4156 Sprint
## 4157 Sprint
## 4158 Sprint
## 4159 Sprint
## 4160 Sprint
## 4161 Sprint
## 4162 Sprint
## 4163 Sprint
## 4164 Sprint
## 4165 Sprint
## 4166 Sprint
## 4167 Sprint
## 4168 Sprint
## 4169 Sprint
## 4170 Sprint
## 4171 Sprint
## 4172 Sprint
## 4173 Sprint
## 4174 Sprint
## 4175 Sprint
## 4176 Sprint
## 4177 Sprint
## 4178 Sprint
## 4179 Sprint
## 4180 Sprint
## 4181 Sprint
## 4182 Sprint
## 4183 Sprint
## 4184 Sprint
## 4185 Sprint
## 4186 Sprint
## 4187 Sprint
## 4188 Sprint
## 4189 Sprint
## 4190 Sprint
## 4191 Sprint
## 4192 Sprint
## 4193 Sprint
## 4194 Sprint
## 4195 Sprint
## 4196 Sprint
## 4197 Sprint
## 4198 Sprint
## 4199 Sprint
## 4200 Sprint
## 4201 Sprint
## 4202 Pursuit
## 4203 Pursuit
## 4204 Pursuit
## 4205 Pursuit
## 4206 Pursuit
## 4207 Pursuit
## 4208 Pursuit
## 4209 Pursuit
## 4210 Pursuit
## 4211 Pursuit
## 4212 Pursuit
## 4213 Pursuit
## 4214 Pursuit
## 4215 Pursuit
## 4216 Pursuit
## 4217 Pursuit
## 4218 Pursuit
## 4219 Pursuit
## 4220 Pursuit
## 4221 Pursuit
## 4222 Pursuit
## 4223 Pursuit
## 4224 Pursuit
## 4225 Pursuit
## 4226 Pursuit
## 4227 Pursuit
## 4228 Pursuit
## 4229 Pursuit
## 4230 Pursuit
## 4231 Pursuit
## 4232 Pursuit
## 4233 Pursuit
## 4234 Pursuit
## 4235 Pursuit
## 4236 Pursuit
## 4237 Pursuit
## 4238 Pursuit
## 4239 Pursuit
## 4240 Pursuit
## 4241 Pursuit
## 4242 Pursuit
## 4243 Pursuit
## 4244 Pursuit
## 4245 Pursuit
## 4246 Pursuit
## 4247 Pursuit
## 4248 Pursuit
## 4249 Pursuit
## 4250 Pursuit
## 4251 Pursuit
## 4252 Pursuit
## 4253 Pursuit
## 4254 Pursuit
## 4255 Pursuit
## 4256 Pursuit
## 4257 Pursuit
## 4258 Pursuit
## 4259 Pursuit
## 4260 Pursuit
## 4261 Pursuit
## 4262 Sprint
## 4263 Sprint
## 4264 Sprint
## 4265 Sprint
## 4266 Sprint
## 4267 Sprint
## 4268 Sprint
## 4269 Sprint
## 4270 Sprint
## 4271 Sprint
## 4272 Sprint
## 4273 Sprint
## 4274 Sprint
## 4275 Sprint
## 4276 Sprint
## 4277 Sprint
## 4278 Sprint
## 4279 Sprint
## 4280 Sprint
## 4281 Sprint
## 4282 Sprint
## 4283 Sprint
## 4284 Sprint
## 4285 Sprint
## 4286 Sprint
## 4287 Sprint
## 4288 Sprint
## 4289 Sprint
## 4290 Sprint
## 4291 Sprint
## 4292 Sprint
## 4293 Sprint
## 4294 Sprint
## 4295 Sprint
## 4296 Sprint
## 4297 Sprint
## 4298 Sprint
## 4299 Sprint
## 4300 Sprint
## 4301 Sprint
## 4302 Sprint
## 4303 Sprint
## 4304 Sprint
## 4305 Sprint
## 4306 Sprint
## 4307 Sprint
## 4308 Sprint
## 4309 Sprint
## 4310 Sprint
## 4311 Sprint
## 4312 Sprint
## 4313 Sprint
## 4314 Sprint
## 4315 Sprint
## 4316 Sprint
## 4317 Sprint
## 4318 Sprint
## 4319 Sprint
## 4320 Sprint
## 4321 Sprint
## 4322 Sprint
## 4323 Sprint
## 4324 Sprint
## 4325 Sprint
## 4326 Sprint
## 4327 Sprint
## 4328 Sprint
## 4329 Sprint
## 4330 Sprint
## 4331 Sprint
## 4332 Sprint
## 4333 Sprint
## 4334 Sprint
## 4335 Sprint
## 4336 Sprint
## 4337 Sprint
## 4338 Sprint
## 4339 Sprint
## 4340 Sprint
## 4341 Sprint
## 4342 Sprint
## 4343 Sprint
## 4344 Sprint
## 4345 Sprint
## 4346 Sprint
## 4347 Sprint
## 4348 Sprint
## 4349 Sprint
## 4350 Sprint
## 4351 Sprint
## 4352 Sprint
## 4353 Sprint
## 4354 Sprint
## 4355 Sprint
## 4356 Sprint
## 4357 Sprint
## 4358 Sprint
## 4359 Sprint
## 4360 Sprint
## 4361 Sprint
## 4362 Sprint
## 4363 Mass start
## 4364 Mass start
## 4365 Mass start
## 4366 Mass start
## 4367 Mass start
## 4368 Mass start
## 4369 Mass start
## 4370 Mass start
## 4371 Mass start
## 4372 Mass start
## 4373 Mass start
## 4374 Mass start
## 4375 Mass start
## 4376 Mass start
## 4377 Mass start
## 4378 Mass start
## 4379 Mass start
## 4380 Mass start
## 4381 Mass start
## 4382 Mass start
## 4383 Mass start
## 4384 Mass start
## 4385 Mass start
## 4386 Mass start
## 4387 Mass start
## 4388 Mass start
## 4389 Mass start
## 4390 Mass start
## 4391 Mass start
## 4392 Mass start
## 4393 Pursuit
## 4394 Pursuit
## 4395 Pursuit
## 4396 Pursuit
## 4397 Pursuit
## 4398 Pursuit
## 4399 Pursuit
## 4400 Pursuit
## 4401 Pursuit
## 4402 Pursuit
## 4403 Pursuit
## 4404 Pursuit
## 4405 Pursuit
## 4406 Pursuit
## 4407 Pursuit
## 4408 Pursuit
## 4409 Pursuit
## 4410 Pursuit
## 4411 Pursuit
## 4412 Pursuit
## 4413 Pursuit
## 4414 Pursuit
## 4415 Pursuit
## 4416 Pursuit
## 4417 Pursuit
## 4418 Pursuit
## 4419 Pursuit
## 4420 Pursuit
## 4421 Pursuit
## 4422 Pursuit
## 4423 Pursuit
## 4424 Pursuit
## 4425 Pursuit
## 4426 Pursuit
## 4427 Pursuit
## 4428 Pursuit
## 4429 Pursuit
## 4430 Pursuit
## 4431 Pursuit
## 4432 Pursuit
## 4433 Pursuit
## 4434 Pursuit
## 4435 Pursuit
## 4436 Pursuit
## 4437 Pursuit
## 4438 Pursuit
## 4439 Pursuit
## 4440 Pursuit
## 4441 Pursuit
## 4442 Pursuit
## 4443 Pursuit
## 4444 Pursuit
## 4445 Pursuit
## 4446 Pursuit
## 4447 Pursuit
## 4448 Pursuit
## 4449 Pursuit
## 4450 Pursuit
## 4451 Pursuit
## 4452 Pursuit
## 4453 Sprint
## 4454 Sprint
## 4455 Sprint
## 4456 Sprint
## 4457 Sprint
## 4458 Sprint
## 4459 Sprint
## 4460 Sprint
## 4461 Sprint
## 4462 Sprint
## 4463 Sprint
## 4464 Sprint
## 4465 Sprint
## 4466 Sprint
## 4467 Sprint
## 4468 Sprint
## 4469 Sprint
## 4470 Sprint
## 4471 Sprint
## 4472 Sprint
## 4473 Sprint
## 4474 Sprint
## 4475 Sprint
## 4476 Sprint
## 4477 Sprint
## 4478 Sprint
## 4479 Sprint
## 4480 Sprint
## 4481 Sprint
## 4482 Sprint
## 4483 Sprint
## 4484 Sprint
## 4485 Sprint
## 4486 Sprint
## 4487 Sprint
## 4488 Sprint
## 4489 Sprint
## 4490 Sprint
## 4491 Sprint
## 4492 Sprint
## 4493 Sprint
## 4494 Sprint
## 4495 Sprint
## 4496 Sprint
## 4497 Sprint
## 4498 Sprint
## 4499 Sprint
## 4500 Sprint
## 4501 Sprint
## 4502 Sprint
## 4503 Sprint
## 4504 Sprint
## 4505 Sprint
## 4506 Sprint
## 4507 Sprint
## 4508 Sprint
## 4509 Sprint
## 4510 Sprint
## 4511 Sprint
## 4512 Sprint
## 4513 Sprint
## 4514 Sprint
## 4515 Sprint
## 4516 Sprint
## 4517 Sprint
## 4518 Sprint
## 4519 Sprint
## 4520 Sprint
## 4521 Sprint
## 4522 Sprint
## 4523 Sprint
## 4524 Sprint
## 4525 Sprint
## 4526 Sprint
## 4527 Sprint
## 4528 Sprint
## 4529 Sprint
## 4530 Sprint
## 4531 Sprint
## 4532 Sprint
## 4533 Sprint
## 4534 Sprint
## 4535 Sprint
## 4536 Sprint
## 4537 Sprint
## 4538 Sprint
## 4539 Sprint
## 4540 Sprint
## 4541 Sprint
## 4542 Sprint
## 4543 Sprint
## 4544 Sprint
## 4545 Sprint
## 4546 Sprint
## 4547 Sprint
## 4548 Sprint
## 4549 Sprint
## 4550 Sprint
## 4551 Sprint
## 4552 Sprint
## 4553 Sprint
## 4554 Sprint
## 4555 Sprint
## 4556 Sprint
## 4557 Mass start
## 4558 Mass start
## 4559 Mass start
## 4560 Mass start
## 4561 Mass start
## 4562 Mass start
## 4563 Mass start
## 4564 Mass start
## 4565 Mass start
## 4566 Mass start
## 4567 Mass start
## 4568 Mass start
## 4569 Mass start
## 4570 Mass start
## 4571 Mass start
## 4572 Mass start
## 4573 Mass start
## 4574 Mass start
## 4575 Mass start
## 4576 Mass start
## 4577 Mass start
## 4578 Mass start
## 4579 Mass start
## 4580 Mass start
## 4581 Mass start
## 4582 Mass start
## 4583 Mass start
## 4584 Mass start
## 4585 Mass start
## 4586 Mass start
## 4587 Pursuit
## 4588 Pursuit
## 4589 Pursuit
## 4590 Pursuit
## 4591 Pursuit
## 4592 Pursuit
## 4593 Pursuit
## 4594 Pursuit
## 4595 Pursuit
## 4596 Pursuit
## 4597 Pursuit
## 4598 Pursuit
## 4599 Pursuit
## 4600 Pursuit
## 4601 Pursuit
## 4602 Pursuit
## 4603 Pursuit
## 4604 Pursuit
## 4605 Pursuit
## 4606 Pursuit
## 4607 Pursuit
## 4608 Pursuit
## 4609 Pursuit
## 4610 Pursuit
## 4611 Pursuit
## 4612 Pursuit
## 4613 Pursuit
## 4614 Pursuit
## 4615 Pursuit
## 4616 Pursuit
## 4617 Pursuit
## 4618 Pursuit
## 4619 Pursuit
## 4620 Pursuit
## 4621 Pursuit
## 4622 Pursuit
## 4623 Pursuit
## 4624 Pursuit
## 4625 Pursuit
## 4626 Pursuit
## 4627 Pursuit
## 4628 Pursuit
## 4629 Pursuit
## 4630 Pursuit
## 4631 Pursuit
## 4632 Pursuit
## 4633 Pursuit
## 4634 Pursuit
## 4635 Pursuit
## 4636 Pursuit
## 4637 Pursuit
## 4638 Pursuit
## 4639 Pursuit
## 4640 Pursuit
## 4641 Pursuit
## 4642 Pursuit
## 4643 Pursuit
## 4644 Pursuit
## 4645 Pursuit
## 4646 Pursuit
## 4647 Sprint
## 4648 Sprint
## 4649 Sprint
## 4650 Sprint
## 4651 Sprint
## 4652 Sprint
## 4653 Sprint
## 4654 Sprint
## 4655 Sprint
## 4656 Sprint
## 4657 Sprint
## 4658 Sprint
## 4659 Sprint
## 4660 Sprint
## 4661 Sprint
## 4662 Sprint
## 4663 Sprint
## 4664 Sprint
## 4665 Sprint
## 4666 Sprint
## 4667 Sprint
## 4668 Sprint
## 4669 Sprint
## 4670 Sprint
## 4671 Sprint
## 4672 Sprint
## 4673 Sprint
## 4674 Sprint
## 4675 Sprint
## 4676 Sprint
## 4677 Sprint
## 4678 Sprint
## 4679 Sprint
## 4680 Sprint
## 4681 Sprint
## 4682 Sprint
## 4683 Sprint
## 4684 Sprint
## 4685 Sprint
## 4686 Sprint
## 4687 Sprint
## 4688 Sprint
## 4689 Sprint
## 4690 Sprint
## 4691 Sprint
## 4692 Sprint
## 4693 Sprint
## 4694 Sprint
## 4695 Sprint
## 4696 Sprint
## 4697 Sprint
## 4698 Sprint
## 4699 Sprint
## 4700 Sprint
## 4701 Sprint
## 4702 Sprint
## 4703 Sprint
## 4704 Sprint
## 4705 Sprint
## 4706 Sprint
## 4707 Sprint
## 4708 Sprint
## 4709 Sprint
## 4710 Sprint
## 4711 Sprint
## 4712 Sprint
## 4713 Sprint
## 4714 Sprint
## 4715 Sprint
## 4716 Sprint
## 4717 Sprint
## 4718 Sprint
## 4719 Sprint
## 4720 Sprint
## 4721 Sprint
## 4722 Sprint
## 4723 Sprint
## 4724 Sprint
## 4725 Sprint
## 4726 Sprint
## 4727 Sprint
## 4728 Sprint
## 4729 Sprint
## 4730 Sprint
## 4731 Sprint
## 4732 Sprint
## 4733 Sprint
## 4734 Sprint
## 4735 Sprint
## 4736 Sprint
## 4737 Sprint
## 4738 Sprint
## 4739 Sprint
## 4740 Sprint
## 4741 Sprint
## 4742 Sprint
## 4743 Sprint
## 4744 Sprint
## 4745 Sprint
## 4746 Sprint
## 4747 Sprint
## 4748 Sprint
## 4749 Sprint
## 4750 Sprint
## 4751 Sprint
## 4752 Sprint
## 4753 Individual
## 4754 Individual
## 4755 Individual
## 4756 Individual
## 4757 Individual
## 4758 Individual
## 4759 Individual
## 4760 Individual
## 4761 Individual
## 4762 Individual
## 4763 Individual
## 4764 Individual
## 4765 Individual
## 4766 Individual
## 4767 Individual
## 4768 Individual
## 4769 Individual
## 4770 Individual
## 4771 Individual
## 4772 Individual
## 4773 Individual
## 4774 Individual
## 4775 Individual
## 4776 Individual
## 4777 Individual
## 4778 Individual
## 4779 Individual
## 4780 Individual
## 4781 Individual
## 4782 Individual
## 4783 Individual
## 4784 Individual
## 4785 Individual
## 4786 Individual
## 4787 Individual
## 4788 Individual
## 4789 Individual
## 4790 Individual
## 4791 Individual
## 4792 Individual
## 4793 Individual
## 4794 Individual
## 4795 Individual
## 4796 Individual
## 4797 Individual
## 4798 Individual
## 4799 Individual
## 4800 Individual
## 4801 Individual
## 4802 Individual
## 4803 Individual
## 4804 Individual
## 4805 Individual
## 4806 Individual
## 4807 Individual
## 4808 Individual
## 4809 Individual
## 4810 Individual
## 4811 Individual
## 4812 Individual
## 4813 Individual
## 4814 Individual
## 4815 Individual
## 4816 Individual
## 4817 Individual
## 4818 Individual
## 4819 Individual
## 4820 Individual
## 4821 Individual
## 4822 Individual
## 4823 Individual
## 4824 Individual
## 4825 Individual
## 4826 Individual
## 4827 Individual
## 4828 Individual
## 4829 Individual
## 4830 Individual
## 4831 Individual
## 4832 Individual
## 4833 Individual
## 4834 Individual
## 4835 Individual
## 4836 Individual
## 4837 Individual
## 4838 Individual
## 4839 Individual
## 4840 Individual
## 4841 Individual
## 4842 Individual
## 4843 Individual
## 4844 Individual
## 4845 Individual
## 4846 Individual
## 4847 Individual
## 4848 Individual
## 4849 Individual
## 4850 Individual
## 4851 Individual
## 4852 Individual
## 4853 Individual
## 4854 Individual
## 4855 Individual
## 4856 Individual
## 4857 Individual
## 4858 Individual
## 4859 Pursuit
## 4860 Pursuit
## 4861 Pursuit
## 4862 Pursuit
## 4863 Pursuit
## 4864 Pursuit
## 4865 Pursuit
## 4866 Pursuit
## 4867 Pursuit
## 4868 Pursuit
## 4869 Pursuit
## 4870 Pursuit
## 4871 Pursuit
## 4872 Pursuit
## 4873 Pursuit
## 4874 Pursuit
## 4875 Pursuit
## 4876 Pursuit
## 4877 Pursuit
## 4878 Pursuit
## 4879 Pursuit
## 4880 Pursuit
## 4881 Pursuit
## 4882 Pursuit
## 4883 Pursuit
## 4884 Pursuit
## 4885 Pursuit
## 4886 Pursuit
## 4887 Pursuit
## 4888 Pursuit
## 4889 Pursuit
## 4890 Pursuit
## 4891 Pursuit
## 4892 Pursuit
## 4893 Pursuit
## 4894 Pursuit
## 4895 Pursuit
## 4896 Pursuit
## 4897 Pursuit
## 4898 Pursuit
## 4899 Pursuit
## 4900 Pursuit
## 4901 Pursuit
## 4902 Pursuit
## 4903 Pursuit
## 4904 Pursuit
## 4905 Pursuit
## 4906 Pursuit
## 4907 Pursuit
## 4908 Pursuit
## 4909 Pursuit
## 4910 Pursuit
## 4911 Pursuit
## 4912 Pursuit
## 4913 Pursuit
## 4914 Pursuit
## 4915 Pursuit
## 4916 Pursuit
## 4917 Pursuit
## 4918 Pursuit
## 4919 Sprint
## 4920 Sprint
## 4921 Sprint
## 4922 Sprint
## 4923 Sprint
## 4924 Sprint
## 4925 Sprint
## 4926 Sprint
## 4927 Sprint
## 4928 Sprint
## 4929 Sprint
## 4930 Sprint
## 4931 Sprint
## 4932 Sprint
## 4933 Sprint
## 4934 Sprint
## 4935 Sprint
## 4936 Sprint
## 4937 Sprint
## 4938 Sprint
## 4939 Sprint
## 4940 Sprint
## 4941 Sprint
## 4942 Sprint
## 4943 Sprint
## 4944 Sprint
## 4945 Sprint
## 4946 Sprint
## 4947 Sprint
## 4948 Sprint
## 4949 Sprint
## 4950 Sprint
## 4951 Sprint
## 4952 Sprint
## 4953 Sprint
## 4954 Sprint
## 4955 Sprint
## 4956 Sprint
## 4957 Sprint
## 4958 Sprint
## 4959 Sprint
## 4960 Sprint
## 4961 Sprint
## 4962 Sprint
## 4963 Sprint
## 4964 Sprint
## 4965 Sprint
## 4966 Sprint
## 4967 Sprint
## 4968 Sprint
## 4969 Sprint
## 4970 Sprint
## 4971 Sprint
## 4972 Sprint
## 4973 Sprint
## 4974 Sprint
## 4975 Sprint
## 4976 Sprint
## 4977 Sprint
## 4978 Sprint
## 4979 Sprint
## 4980 Sprint
## 4981 Sprint
## 4982 Sprint
## 4983 Sprint
## 4984 Sprint
## 4985 Sprint
## 4986 Sprint
## 4987 Sprint
## 4988 Sprint
## 4989 Sprint
## 4990 Sprint
## 4991 Sprint
## 4992 Sprint
## 4993 Sprint
## 4994 Sprint
## 4995 Sprint
## 4996 Sprint
## 4997 Sprint
## 4998 Sprint
## 4999 Sprint
## 5000 Sprint
## 5001 Sprint
## 5002 Sprint
## 5003 Sprint
## 5004 Sprint
## 5005 Sprint
## 5006 Sprint
## 5007 Sprint
## 5008 Sprint
## 5009 Sprint
## 5010 Sprint
## 5011 Sprint
## 5012 Sprint
## 5013 Sprint
## 5014 Sprint
## 5015 Sprint
## 5016 Sprint
## 5017 Sprint
## 5018 Sprint
## 5019 Sprint
## 5020 Sprint
## 5021 Sprint
## 5022 Sprint
## 5023 Sprint
## 5024 Mass start
## 5025 Mass start
## 5026 Mass start
## 5027 Mass start
## 5028 Mass start
## 5029 Mass start
## 5030 Mass start
## 5031 Mass start
## 5032 Mass start
## 5033 Mass start
## 5034 Mass start
## 5035 Mass start
## 5036 Mass start
## 5037 Mass start
## 5038 Mass start
## 5039 Mass start
## 5040 Mass start
## 5041 Mass start
## 5042 Mass start
## 5043 Mass start
## 5044 Mass start
## 5045 Mass start
## 5046 Mass start
## 5047 Mass start
## 5048 Mass start
## 5049 Mass start
## 5050 Mass start
## 5051 Mass start
## 5052 Mass start
## 5053 Mass start
## 5054 Pursuit
## 5055 Pursuit
## 5056 Pursuit
## 5057 Pursuit
## 5058 Pursuit
## 5059 Pursuit
## 5060 Pursuit
## 5061 Pursuit
## 5062 Pursuit
## 5063 Pursuit
## 5064 Pursuit
## 5065 Pursuit
## 5066 Pursuit
## 5067 Pursuit
## 5068 Pursuit
## 5069 Pursuit
## 5070 Pursuit
## 5071 Pursuit
## 5072 Pursuit
## 5073 Pursuit
## 5074 Pursuit
## 5075 Pursuit
## 5076 Pursuit
## 5077 Pursuit
## 5078 Pursuit
## 5079 Pursuit
## 5080 Pursuit
## 5081 Pursuit
## 5082 Pursuit
## 5083 Pursuit
## 5084 Pursuit
## 5085 Pursuit
## 5086 Pursuit
## 5087 Pursuit
## 5088 Pursuit
## 5089 Pursuit
## 5090 Pursuit
## 5091 Pursuit
## 5092 Pursuit
## 5093 Pursuit
## 5094 Pursuit
## 5095 Pursuit
## 5096 Pursuit
## 5097 Pursuit
## 5098 Pursuit
## 5099 Pursuit
## 5100 Pursuit
## 5101 Pursuit
## 5102 Pursuit
## 5103 Pursuit
## 5104 Pursuit
## 5105 Pursuit
## 5106 Pursuit
## 5107 Pursuit
## 5108 Pursuit
## 5109 Pursuit
## 5110 Pursuit
## 5111 Pursuit
## 5112 Pursuit
## 5113 Pursuit
## 5114 Sprint
## 5115 Sprint
## 5116 Sprint
## 5117 Sprint
## 5118 Sprint
## 5119 Sprint
## 5120 Sprint
## 5121 Sprint
## 5122 Sprint
## 5123 Sprint
## 5124 Sprint
## 5125 Sprint
## 5126 Sprint
## 5127 Sprint
## 5128 Sprint
## 5129 Sprint
## 5130 Sprint
## 5131 Sprint
## 5132 Sprint
## 5133 Sprint
## 5134 Sprint
## 5135 Sprint
## 5136 Sprint
## 5137 Sprint
## 5138 Sprint
## 5139 Sprint
## 5140 Sprint
## 5141 Sprint
## 5142 Sprint
## 5143 Sprint
## 5144 Sprint
## 5145 Sprint
## 5146 Sprint
## 5147 Sprint
## 5148 Sprint
## 5149 Sprint
## 5150 Sprint
## 5151 Sprint
## 5152 Sprint
## 5153 Sprint
## 5154 Sprint
## 5155 Sprint
## 5156 Sprint
## 5157 Sprint
## 5158 Sprint
## 5159 Sprint
## 5160 Sprint
## 5161 Sprint
## 5162 Sprint
## 5163 Sprint
## 5164 Sprint
## 5165 Sprint
## 5166 Sprint
## 5167 Sprint
## 5168 Sprint
## 5169 Sprint
## 5170 Sprint
## 5171 Sprint
## 5172 Sprint
## 5173 Sprint
## 5174 Sprint
## 5175 Sprint
## 5176 Sprint
## 5177 Sprint
## 5178 Sprint
## 5179 Sprint
## 5180 Sprint
## 5181 Sprint
## 5182 Sprint
## 5183 Sprint
## 5184 Sprint
## 5185 Sprint
## 5186 Sprint
## 5187 Sprint
## 5188 Sprint
## 5189 Sprint
## 5190 Sprint
## 5191 Sprint
## 5192 Sprint
## 5193 Sprint
## 5194 Sprint
## 5195 Sprint
## 5196 Sprint
## 5197 Sprint
## 5198 Sprint
## 5199 Sprint
## 5200 Sprint
## 5201 Sprint
## 5202 Sprint
## 5203 Sprint
## 5204 Sprint
## 5205 Sprint
## 5206 Sprint
## 5207 Sprint
## 5208 Sprint
## 5209 Sprint
## 5210 Sprint
## 5211 Sprint
## 5212 Sprint
## 5213 Sprint
## 5214 Sprint
## 5215 Sprint
## 5216 Sprint
## 5217 Sprint
## 5218 Sprint
## 5219 Sprint
## 5220 Sprint
## 5221 Sprint
## 5222 Pursuit
## 5223 Pursuit
## 5224 Pursuit
## 5225 Pursuit
## 5226 Pursuit
## 5227 Pursuit
## 5228 Pursuit
## 5229 Pursuit
## 5230 Pursuit
## 5231 Pursuit
## 5232 Pursuit
## 5233 Pursuit
## 5234 Pursuit
## 5235 Pursuit
## 5236 Pursuit
## 5237 Pursuit
## 5238 Pursuit
## 5239 Pursuit
## 5240 Pursuit
## 5241 Pursuit
## 5242 Pursuit
## 5243 Pursuit
## 5244 Pursuit
## 5245 Pursuit
## 5246 Pursuit
## 5247 Pursuit
## 5248 Pursuit
## 5249 Pursuit
## 5250 Pursuit
## 5251 Pursuit
## 5252 Pursuit
## 5253 Pursuit
## 5254 Pursuit
## 5255 Pursuit
## 5256 Pursuit
## 5257 Pursuit
## 5258 Pursuit
## 5259 Pursuit
## 5260 Pursuit
## 5261 Pursuit
## 5262 Pursuit
## 5263 Pursuit
## 5264 Pursuit
## 5265 Pursuit
## 5266 Pursuit
## 5267 Pursuit
## 5268 Pursuit
## 5269 Pursuit
## 5270 Pursuit
## 5271 Pursuit
## 5272 Pursuit
## 5273 Pursuit
## 5274 Pursuit
## 5275 Pursuit
## 5276 Pursuit
## 5277 Pursuit
## 5278 Pursuit
## 5279 Pursuit
## 5280 Pursuit
## 5281 Pursuit
## 5282 Sprint
## 5283 Sprint
## 5284 Sprint
## 5285 Sprint
## 5286 Sprint
## 5287 Sprint
## 5288 Sprint
## 5289 Sprint
## 5290 Sprint
## 5291 Sprint
## 5292 Sprint
## 5293 Sprint
## 5294 Sprint
## 5295 Sprint
## 5296 Sprint
## 5297 Sprint
## 5298 Sprint
## 5299 Sprint
## 5300 Sprint
## 5301 Sprint
## 5302 Sprint
## 5303 Sprint
## 5304 Sprint
## 5305 Sprint
## 5306 Sprint
## 5307 Sprint
## 5308 Sprint
## 5309 Sprint
## 5310 Sprint
## 5311 Sprint
## 5312 Sprint
## 5313 Sprint
## 5314 Sprint
## 5315 Sprint
## 5316 Sprint
## 5317 Sprint
## 5318 Sprint
## 5319 Sprint
## 5320 Sprint
## 5321 Sprint
## 5322 Sprint
## 5323 Sprint
## 5324 Sprint
## 5325 Sprint
## 5326 Sprint
## 5327 Sprint
## 5328 Sprint
## 5329 Sprint
## 5330 Sprint
## 5331 Sprint
## 5332 Sprint
## 5333 Sprint
## 5334 Sprint
## 5335 Sprint
## 5336 Sprint
## 5337 Sprint
## 5338 Sprint
## 5339 Sprint
## 5340 Sprint
## 5341 Sprint
## 5342 Sprint
## 5343 Sprint
## 5344 Sprint
## 5345 Sprint
## 5346 Sprint
## 5347 Sprint
## 5348 Sprint
## 5349 Sprint
## 5350 Sprint
## 5351 Sprint
## 5352 Sprint
## 5353 Sprint
## 5354 Sprint
## 5355 Sprint
## 5356 Sprint
## 5357 Sprint
## 5358 Sprint
## 5359 Sprint
## 5360 Sprint
## 5361 Sprint
## 5362 Sprint
## 5363 Sprint
## 5364 Sprint
## 5365 Sprint
## 5366 Sprint
## 5367 Sprint
## 5368 Sprint
## 5369 Sprint
## 5370 Sprint
## 5371 Sprint
## 5372 Sprint
## 5373 Sprint
## 5374 Sprint
## 5375 Sprint
## 5376 Sprint
## 5377 Sprint
## 5378 Sprint
## 5379 Sprint
## 5380 Sprint
## 5381 Sprint
## 5382 Sprint
## 5383 Sprint
## 5384 Sprint
## 5385 Sprint
## 5386 Pursuit
## 5387 Pursuit
## 5388 Pursuit
## 5389 Pursuit
## 5390 Pursuit
## 5391 Pursuit
## 5392 Pursuit
## 5393 Pursuit
## 5394 Pursuit
## 5395 Pursuit
## 5396 Pursuit
## 5397 Pursuit
## 5398 Pursuit
## 5399 Pursuit
## 5400 Pursuit
## 5401 Pursuit
## 5402 Pursuit
## 5403 Pursuit
## 5404 Pursuit
## 5405 Pursuit
## 5406 Pursuit
## 5407 Pursuit
## 5408 Pursuit
## 5409 Pursuit
## 5410 Pursuit
## 5411 Pursuit
## 5412 Pursuit
## 5413 Pursuit
## 5414 Pursuit
## 5415 Pursuit
## 5416 Pursuit
## 5417 Pursuit
## 5418 Pursuit
## 5419 Pursuit
## 5420 Pursuit
## 5421 Pursuit
## 5422 Pursuit
## 5423 Pursuit
## 5424 Pursuit
## 5425 Pursuit
## 5426 Pursuit
## 5427 Pursuit
## 5428 Pursuit
## 5429 Pursuit
## 5430 Pursuit
## 5431 Pursuit
## 5432 Pursuit
## 5433 Pursuit
## 5434 Pursuit
## 5435 Pursuit
## 5436 Pursuit
## 5437 Pursuit
## 5438 Pursuit
## 5439 Pursuit
## 5440 Pursuit
## 5441 Pursuit
## 5442 Pursuit
## 5443 Pursuit
## 5444 Pursuit
## 5445 Pursuit
## 5446 Sprint
## 5447 Sprint
## 5448 Sprint
## 5449 Sprint
## 5450 Sprint
## 5451 Sprint
## 5452 Sprint
## 5453 Sprint
## 5454 Sprint
## 5455 Sprint
## 5456 Sprint
## 5457 Sprint
## 5458 Sprint
## 5459 Sprint
## 5460 Sprint
## 5461 Sprint
## 5462 Sprint
## 5463 Sprint
## 5464 Sprint
## 5465 Sprint
## 5466 Sprint
## 5467 Sprint
## 5468 Sprint
## 5469 Sprint
## 5470 Sprint
## 5471 Sprint
## 5472 Sprint
## 5473 Sprint
## 5474 Sprint
## 5475 Sprint
## 5476 Sprint
## 5477 Sprint
## 5478 Sprint
## 5479 Sprint
## 5480 Sprint
## 5481 Sprint
## 5482 Sprint
## 5483 Sprint
## 5484 Sprint
## 5485 Sprint
## 5486 Sprint
## 5487 Sprint
## 5488 Sprint
## 5489 Sprint
## 5490 Sprint
## 5491 Sprint
## 5492 Sprint
## 5493 Sprint
## 5494 Sprint
## 5495 Sprint
## 5496 Sprint
## 5497 Sprint
## 5498 Sprint
## 5499 Sprint
## 5500 Sprint
## 5501 Sprint
## 5502 Sprint
## 5503 Sprint
## 5504 Sprint
## 5505 Sprint
## 5506 Sprint
## 5507 Sprint
## 5508 Sprint
## 5509 Sprint
## 5510 Sprint
## 5511 Sprint
## 5512 Sprint
## 5513 Sprint
## 5514 Sprint
## 5515 Sprint
## 5516 Sprint
## 5517 Sprint
## 5518 Sprint
## 5519 Sprint
## 5520 Sprint
## 5521 Sprint
## 5522 Sprint
## 5523 Sprint
## 5524 Sprint
## 5525 Sprint
## 5526 Sprint
## 5527 Sprint
## 5528 Sprint
## 5529 Sprint
## 5530 Sprint
## 5531 Sprint
## 5532 Sprint
## 5533 Sprint
## 5534 Sprint
## 5535 Sprint
## 5536 Sprint
## 5537 Sprint
## 5538 Sprint
## 5539 Sprint
## 5540 Sprint
## 5541 Sprint
## 5542 Sprint
## 5543 Sprint
## 5544 Sprint
## 5545 Sprint
## 5546 Sprint
## 5547 Sprint
## 5548 Sprint
## 5549 Pursuit
## 5550 Pursuit
## 5551 Pursuit
## 5552 Pursuit
## 5553 Pursuit
## 5554 Pursuit
## 5555 Pursuit
## 5556 Pursuit
## 5557 Pursuit
## 5558 Pursuit
## 5559 Pursuit
## 5560 Pursuit
## 5561 Pursuit
## 5562 Pursuit
## 5563 Pursuit
## 5564 Pursuit
## 5565 Pursuit
## 5566 Pursuit
## 5567 Pursuit
## 5568 Pursuit
## 5569 Pursuit
## 5570 Pursuit
## 5571 Pursuit
## 5572 Pursuit
## 5573 Pursuit
## 5574 Pursuit
## 5575 Pursuit
## 5576 Pursuit
## 5577 Pursuit
## 5578 Pursuit
## 5579 Pursuit
## 5580 Pursuit
## 5581 Pursuit
## 5582 Pursuit
## 5583 Pursuit
## 5584 Pursuit
## 5585 Pursuit
## 5586 Pursuit
## 5587 Pursuit
## 5588 Pursuit
## 5589 Pursuit
## 5590 Pursuit
## 5591 Pursuit
## 5592 Pursuit
## 5593 Pursuit
## 5594 Pursuit
## 5595 Pursuit
## 5596 Pursuit
## 5597 Pursuit
## 5598 Pursuit
## 5599 Pursuit
## 5600 Pursuit
## 5601 Pursuit
## 5602 Pursuit
## 5603 Pursuit
## 5604 Pursuit
## 5605 Pursuit
## 5606 Pursuit
## 5607 Pursuit
## 5608 Pursuit
## 5609 Sprint
## 5610 Sprint
## 5611 Sprint
## 5612 Sprint
## 5613 Sprint
## 5614 Sprint
## 5615 Sprint
## 5616 Sprint
## 5617 Sprint
## 5618 Sprint
## 5619 Sprint
## 5620 Sprint
## 5621 Sprint
## 5622 Sprint
## 5623 Sprint
## 5624 Sprint
## 5625 Sprint
## 5626 Sprint
## 5627 Sprint
## 5628 Sprint
## 5629 Sprint
## 5630 Sprint
## 5631 Sprint
## 5632 Sprint
## 5633 Sprint
## 5634 Sprint
## 5635 Sprint
## 5636 Sprint
## 5637 Sprint
## 5638 Sprint
## 5639 Sprint
## 5640 Sprint
## 5641 Sprint
## 5642 Sprint
## 5643 Sprint
## 5644 Sprint
## 5645 Sprint
## 5646 Sprint
## 5647 Sprint
## 5648 Sprint
## 5649 Sprint
## 5650 Sprint
## 5651 Sprint
## 5652 Sprint
## 5653 Sprint
## 5654 Sprint
## 5655 Sprint
## 5656 Sprint
## 5657 Sprint
## 5658 Sprint
## 5659 Sprint
## 5660 Sprint
## 5661 Sprint
## 5662 Sprint
## 5663 Sprint
## 5664 Sprint
## 5665 Sprint
## 5666 Sprint
## 5667 Sprint
## 5668 Sprint
## 5669 Sprint
## 5670 Sprint
## 5671 Sprint
## 5672 Sprint
## 5673 Sprint
## 5674 Sprint
## 5675 Sprint
## 5676 Sprint
## 5677 Sprint
## 5678 Sprint
## 5679 Sprint
## 5680 Sprint
## 5681 Sprint
## 5682 Sprint
## 5683 Sprint
## 5684 Sprint
## 5685 Sprint
## 5686 Sprint
## 5687 Sprint
## 5688 Sprint
## 5689 Sprint
## 5690 Sprint
## 5691 Sprint
## 5692 Sprint
## 5693 Sprint
## 5694 Sprint
## 5695 Sprint
## 5696 Sprint
## 5697 Sprint
## 5698 Sprint
## 5699 Sprint
## 5700 Sprint
## 5701 Sprint
## 5702 Sprint
## 5703 Sprint
## 5704 Sprint
## 5705 Sprint
## 5706 Sprint
## 5707 Sprint
## 5708 Sprint
## 5709 Sprint
## 5710 Sprint
## 5711 Sprint
## 5712 Sprint
## 5713 Sprint
## 5714 Sprint
## 5715 Sprint
## 5716 Mass start
## 5717 Mass start
## 5718 Mass start
## 5719 Mass start
## 5720 Mass start
## 5721 Mass start
## 5722 Mass start
## 5723 Mass start
## 5724 Mass start
## 5725 Mass start
## 5726 Mass start
## 5727 Mass start
## 5728 Mass start
## 5729 Mass start
## 5730 Mass start
## 5731 Mass start
## 5732 Mass start
## 5733 Mass start
## 5734 Mass start
## 5735 Mass start
## 5736 Mass start
## 5737 Mass start
## 5738 Mass start
## 5739 Mass start
## 5740 Mass start
## 5741 Mass start
## 5742 Mass start
## 5743 Mass start
## 5744 Mass start
## 5745 Mass start
## 5746 Pursuit
## 5747 Pursuit
## 5748 Pursuit
## 5749 Pursuit
## 5750 Pursuit
## 5751 Pursuit
## 5752 Pursuit
## 5753 Pursuit
## 5754 Pursuit
## 5755 Pursuit
## 5756 Pursuit
## 5757 Pursuit
## 5758 Pursuit
## 5759 Pursuit
## 5760 Pursuit
## 5761 Pursuit
## 5762 Pursuit
## 5763 Pursuit
## 5764 Pursuit
## 5765 Pursuit
## 5766 Pursuit
## 5767 Pursuit
## 5768 Pursuit
## 5769 Pursuit
## 5770 Pursuit
## 5771 Pursuit
## 5772 Pursuit
## 5773 Pursuit
## 5774 Pursuit
## 5775 Pursuit
## 5776 Pursuit
## 5777 Pursuit
## 5778 Pursuit
## 5779 Pursuit
## 5780 Pursuit
## 5781 Pursuit
## 5782 Pursuit
## 5783 Pursuit
## 5784 Pursuit
## 5785 Pursuit
## 5786 Pursuit
## 5787 Pursuit
## 5788 Pursuit
## 5789 Pursuit
## 5790 Pursuit
## 5791 Pursuit
## 5792 Pursuit
## 5793 Pursuit
## 5794 Pursuit
## 5795 Pursuit
## 5796 Pursuit
## 5797 Pursuit
## 5798 Pursuit
## 5799 Pursuit
## 5800 Pursuit
## 5801 Pursuit
## 5802 Pursuit
## 5803 Pursuit
## 5804 Pursuit
## 5805 Pursuit
## 5806 Sprint
## 5807 Sprint
## 5808 Sprint
## 5809 Sprint
## 5810 Sprint
## 5811 Sprint
## 5812 Sprint
## 5813 Sprint
## 5814 Sprint
## 5815 Sprint
## 5816 Sprint
## 5817 Sprint
## 5818 Sprint
## 5819 Sprint
## 5820 Sprint
## 5821 Sprint
## 5822 Sprint
## 5823 Sprint
## 5824 Sprint
## 5825 Sprint
## 5826 Sprint
## 5827 Sprint
## 5828 Sprint
## 5829 Sprint
## 5830 Sprint
## 5831 Sprint
## 5832 Sprint
## 5833 Sprint
## 5834 Sprint
## 5835 Sprint
## 5836 Sprint
## 5837 Sprint
## 5838 Sprint
## 5839 Sprint
## 5840 Sprint
## 5841 Sprint
## 5842 Sprint
## 5843 Sprint
## 5844 Sprint
## 5845 Sprint
## 5846 Sprint
## 5847 Sprint
## 5848 Sprint
## 5849 Sprint
## 5850 Sprint
## 5851 Sprint
## 5852 Sprint
## 5853 Sprint
## 5854 Sprint
## 5855 Sprint
## 5856 Sprint
## 5857 Sprint
## 5858 Sprint
## 5859 Sprint
## 5860 Sprint
## 5861 Sprint
## 5862 Sprint
## 5863 Sprint
## 5864 Sprint
## 5865 Sprint
## 5866 Sprint
## 5867 Sprint
## 5868 Sprint
## 5869 Sprint
## 5870 Sprint
## 5871 Sprint
## 5872 Sprint
## 5873 Sprint
## 5874 Sprint
## 5875 Sprint
## 5876 Sprint
## 5877 Sprint
## 5878 Sprint
## 5879 Sprint
## 5880 Sprint
## 5881 Sprint
## 5882 Sprint
## 5883 Sprint
## 5884 Sprint
## 5885 Sprint
## 5886 Sprint
## 5887 Sprint
## 5888 Sprint
## 5889 Sprint
## 5890 Sprint
## 5891 Sprint
## 5892 Sprint
## 5893 Sprint
## 5894 Sprint
## 5895 Sprint
## 5896 Sprint
## 5897 Sprint
## 5898 Sprint
## 5899 Sprint
## 5900 Sprint
## 5901 Sprint
## 5902 Sprint
## 5903 Sprint
## 5904 Sprint
## 5905 Sprint
## 5906 Sprint
## 5907 Sprint
## 5908 Sprint
## 5909 Sprint
## 5910 Sprint
## 5911 Sprint
## 5912 Mass start
## 5913 Mass start
## 5914 Mass start
## 5915 Mass start
## 5916 Mass start
## 5917 Mass start
## 5918 Mass start
## 5919 Mass start
## 5920 Mass start
## 5921 Mass start
## 5922 Mass start
## 5923 Mass start
## 5924 Mass start
## 5925 Mass start
## 5926 Mass start
## 5927 Mass start
## 5928 Mass start
## 5929 Mass start
## 5930 Mass start
## 5931 Mass start
## 5932 Mass start
## 5933 Mass start
## 5934 Mass start
## 5935 Mass start
## 5936 Mass start
## 5937 Mass start
## 5938 Mass start
## 5939 Mass start
## 5940 Mass start
## 5941 Mass start
## 5942 Pursuit
## 5943 Pursuit
## 5944 Pursuit
## 5945 Pursuit
## 5946 Pursuit
## 5947 Pursuit
## 5948 Pursuit
## 5949 Pursuit
## 5950 Pursuit
## 5951 Pursuit
## 5952 Pursuit
## 5953 Pursuit
## 5954 Pursuit
## 5955 Pursuit
## 5956 Pursuit
## 5957 Pursuit
## 5958 Pursuit
## 5959 Pursuit
## 5960 Pursuit
## 5961 Pursuit
## 5962 Pursuit
## 5963 Pursuit
## 5964 Pursuit
## 5965 Pursuit
## 5966 Pursuit
## 5967 Pursuit
## 5968 Pursuit
## 5969 Pursuit
## 5970 Pursuit
## 5971 Pursuit
## 5972 Pursuit
## 5973 Pursuit
## 5974 Pursuit
## 5975 Pursuit
## 5976 Pursuit
## 5977 Pursuit
## 5978 Pursuit
## 5979 Pursuit
## 5980 Pursuit
## 5981 Pursuit
## 5982 Pursuit
## 5983 Pursuit
## 5984 Pursuit
## 5985 Pursuit
## 5986 Pursuit
## 5987 Pursuit
## 5988 Pursuit
## 5989 Pursuit
## 5990 Pursuit
## 5991 Pursuit
## 5992 Pursuit
## 5993 Pursuit
## 5994 Pursuit
## 5995 Pursuit
## 5996 Pursuit
## 5997 Pursuit
## 5998 Pursuit
## 5999 Pursuit
## 6000 Pursuit
## 6001 Pursuit
## 6002 Sprint
## 6003 Sprint
## 6004 Sprint
## 6005 Sprint
## 6006 Sprint
## 6007 Sprint
## 6008 Sprint
## 6009 Sprint
## 6010 Sprint
## 6011 Sprint
## 6012 Sprint
## 6013 Sprint
## 6014 Sprint
## 6015 Sprint
## 6016 Sprint
## 6017 Sprint
## 6018 Sprint
## 6019 Sprint
## 6020 Sprint
## 6021 Sprint
## 6022 Sprint
## 6023 Sprint
## 6024 Sprint
## 6025 Sprint
## 6026 Sprint
## 6027 Sprint
## 6028 Sprint
## 6029 Sprint
## 6030 Sprint
## 6031 Sprint
## 6032 Sprint
## 6033 Sprint
## 6034 Sprint
## 6035 Sprint
## 6036 Sprint
## 6037 Sprint
## 6038 Sprint
## 6039 Sprint
## 6040 Sprint
## 6041 Sprint
## 6042 Sprint
## 6043 Sprint
## 6044 Sprint
## 6045 Sprint
## 6046 Sprint
## 6047 Sprint
## 6048 Sprint
## 6049 Sprint
## 6050 Sprint
## 6051 Sprint
## 6052 Sprint
## 6053 Sprint
## 6054 Sprint
## 6055 Sprint
## 6056 Sprint
## 6057 Sprint
## 6058 Sprint
## 6059 Sprint
## 6060 Sprint
## 6061 Sprint
## 6062 Sprint
## 6063 Sprint
## 6064 Sprint
## 6065 Sprint
## 6066 Sprint
## 6067 Sprint
## 6068 Sprint
## 6069 Sprint
## 6070 Sprint
## 6071 Sprint
## 6072 Sprint
## 6073 Sprint
## 6074 Sprint
## 6075 Sprint
## 6076 Sprint
## 6077 Sprint
## 6078 Sprint
## 6079 Sprint
## 6080 Sprint
## 6081 Sprint
## 6082 Sprint
## 6083 Sprint
## 6084 Sprint
## 6085 Sprint
## 6086 Sprint
## 6087 Sprint
## 6088 Sprint
## 6089 Sprint
## 6090 Sprint
## 6091 Sprint
## 6092 Sprint
## 6093 Sprint
## 6094 Sprint
## 6095 Sprint
## 6096 Sprint
## 6097 Sprint
## 6098 Sprint
## 6099 Sprint
## 6100 Sprint
## 6101 Sprint
## 6102 Sprint
## 6103 Sprint
## 6104 Sprint
## 6105 Sprint
## 6106 Sprint
## 6107 Sprint
## 6108 Sprint
## 6109 Sprint
## 6110 Sprint
## 6111 Sprint
## 6112 Pursuit
## 6113 Pursuit
## 6114 Pursuit
## 6115 Pursuit
## 6116 Pursuit
## 6117 Pursuit
## 6118 Pursuit
## 6119 Pursuit
## 6120 Pursuit
## 6121 Pursuit
## 6122 Pursuit
## 6123 Pursuit
## 6124 Pursuit
## 6125 Pursuit
## 6126 Pursuit
## 6127 Pursuit
## 6128 Pursuit
## 6129 Pursuit
## 6130 Pursuit
## 6131 Pursuit
## 6132 Pursuit
## 6133 Pursuit
## 6134 Pursuit
## 6135 Pursuit
## 6136 Pursuit
## 6137 Pursuit
## 6138 Pursuit
## 6139 Pursuit
## 6140 Pursuit
## 6141 Pursuit
## 6142 Pursuit
## 6143 Pursuit
## 6144 Pursuit
## 6145 Pursuit
## 6146 Pursuit
## 6147 Pursuit
## 6148 Pursuit
## 6149 Pursuit
## 6150 Pursuit
## 6151 Pursuit
## 6152 Pursuit
## 6153 Pursuit
## 6154 Pursuit
## 6155 Pursuit
## 6156 Pursuit
## 6157 Pursuit
## 6158 Pursuit
## 6159 Pursuit
## 6160 Pursuit
## 6161 Pursuit
## 6162 Pursuit
## 6163 Pursuit
## 6164 Pursuit
## 6165 Pursuit
## 6166 Pursuit
## 6167 Pursuit
## 6168 Pursuit
## 6169 Pursuit
## 6170 Pursuit
## 6171 Pursuit
## 6172 Sprint
## 6173 Sprint
## 6174 Sprint
## 6175 Sprint
## 6176 Sprint
## 6177 Sprint
## 6178 Sprint
## 6179 Sprint
## 6180 Sprint
## 6181 Sprint
## 6182 Sprint
## 6183 Sprint
## 6184 Sprint
## 6185 Sprint
## 6186 Sprint
## 6187 Sprint
## 6188 Sprint
## 6189 Sprint
## 6190 Sprint
## 6191 Sprint
## 6192 Sprint
## 6193 Sprint
## 6194 Sprint
## 6195 Sprint
## 6196 Sprint
## 6197 Sprint
## 6198 Sprint
## 6199 Sprint
## 6200 Sprint
## 6201 Sprint
## 6202 Sprint
## 6203 Sprint
## 6204 Sprint
## 6205 Sprint
## 6206 Sprint
## 6207 Sprint
## 6208 Sprint
## 6209 Sprint
## 6210 Sprint
## 6211 Sprint
## 6212 Sprint
## 6213 Sprint
## 6214 Sprint
## 6215 Sprint
## 6216 Sprint
## 6217 Sprint
## 6218 Sprint
## 6219 Sprint
## 6220 Sprint
## 6221 Sprint
## 6222 Sprint
## 6223 Sprint
## 6224 Sprint
## 6225 Sprint
## 6226 Sprint
## 6227 Sprint
## 6228 Sprint
## 6229 Sprint
## 6230 Sprint
## 6231 Sprint
## 6232 Sprint
## 6233 Sprint
## 6234 Sprint
## 6235 Sprint
## 6236 Sprint
## 6237 Sprint
## 6238 Sprint
## 6239 Sprint
## 6240 Sprint
## 6241 Sprint
## 6242 Sprint
## 6243 Sprint
## 6244 Sprint
## 6245 Sprint
## 6246 Sprint
## 6247 Sprint
## 6248 Sprint
## 6249 Sprint
## 6250 Sprint
## 6251 Sprint
## 6252 Sprint
## 6253 Sprint
## 6254 Sprint
## 6255 Sprint
## 6256 Sprint
## 6257 Sprint
## 6258 Sprint
## 6259 Sprint
## 6260 Sprint
## 6261 Sprint
## 6262 Sprint
## 6263 Sprint
## 6264 Sprint
## 6265 Sprint
## 6266 Sprint
## 6267 Sprint
## 6268 Sprint
## 6269 Sprint
## 6270 Sprint
## 6271 Sprint
## 6272 Sprint
## 6273 Sprint
## 6274 Sprint
## 6275 Sprint
## 6276 Sprint
## 6277 Sprint
## 6278 Sprint
## 6279 Sprint
## 6280 Sprint
## 6281 Mass start
## 6282 Mass start
## 6283 Mass start
## 6284 Mass start
## 6285 Mass start
## 6286 Mass start
## 6287 Mass start
## 6288 Mass start
## 6289 Mass start
## 6290 Mass start
## 6291 Mass start
## 6292 Mass start
## 6293 Mass start
## 6294 Mass start
## 6295 Mass start
## 6296 Mass start
## 6297 Mass start
## 6298 Mass start
## 6299 Mass start
## 6300 Mass start
## 6301 Mass start
## 6302 Mass start
## 6303 Mass start
## 6304 Mass start
## 6305 Mass start
## 6306 Mass start
## 6307 Mass start
## 6308 Mass start
## 6309 Mass start
## 6310 Mass start
## 6311 Sprint
## 6312 Sprint
## 6313 Sprint
## 6314 Sprint
## 6315 Sprint
## 6316 Sprint
## 6317 Sprint
## 6318 Sprint
## 6319 Sprint
## 6320 Sprint
## 6321 Sprint
## 6322 Sprint
## 6323 Sprint
## 6324 Sprint
## 6325 Sprint
## 6326 Sprint
## 6327 Sprint
## 6328 Sprint
## 6329 Sprint
## 6330 Sprint
## 6331 Sprint
## 6332 Sprint
## 6333 Sprint
## 6334 Sprint
## 6335 Sprint
## 6336 Sprint
## 6337 Sprint
## 6338 Sprint
## 6339 Sprint
## 6340 Sprint
## 6341 Sprint
## 6342 Sprint
## 6343 Sprint
## 6344 Sprint
## 6345 Sprint
## 6346 Sprint
## 6347 Sprint
## 6348 Sprint
## 6349 Sprint
## 6350 Sprint
## 6351 Sprint
## 6352 Sprint
## 6353 Sprint
## 6354 Sprint
## 6355 Sprint
## 6356 Sprint
## 6357 Sprint
## 6358 Sprint
## 6359 Sprint
## 6360 Sprint
## 6361 Sprint
## 6362 Sprint
## 6363 Sprint
## 6364 Sprint
## 6365 Sprint
## 6366 Sprint
## 6367 Sprint
## 6368 Sprint
## 6369 Sprint
## 6370 Sprint
## 6371 Sprint
## 6372 Sprint
## 6373 Sprint
## 6374 Sprint
## 6375 Sprint
## 6376 Sprint
## 6377 Sprint
## 6378 Sprint
## 6379 Sprint
## 6380 Sprint
## 6381 Sprint
## 6382 Sprint
## 6383 Sprint
## 6384 Sprint
## 6385 Sprint
## 6386 Sprint
## 6387 Sprint
## 6388 Sprint
## 6389 Sprint
## 6390 Sprint
## 6391 Sprint
## 6392 Sprint
## 6393 Sprint
## 6394 Sprint
## 6395 Sprint
## 6396 Sprint
## 6397 Sprint
## 6398 Sprint
## 6399 Sprint
## 6400 Sprint
## 6401 Sprint
## 6402 Sprint
## 6403 Sprint
## 6404 Sprint
## 6405 Sprint
## 6406 Sprint
## 6407 Sprint
## 6408 Sprint
## 6409 Sprint
## 6410 Sprint
## 6411 Sprint
## 6412 Sprint
## 6413 Sprint
## 6414 Sprint
## 6415 Pursuit
## 6416 Pursuit
## 6417 Pursuit
## 6418 Pursuit
## 6419 Pursuit
## 6420 Pursuit
## 6421 Pursuit
## 6422 Pursuit
## 6423 Pursuit
## 6424 Pursuit
## 6425 Pursuit
## 6426 Pursuit
## 6427 Pursuit
## 6428 Pursuit
## 6429 Pursuit
## 6430 Pursuit
## 6431 Pursuit
## 6432 Pursuit
## 6433 Pursuit
## 6434 Pursuit
## 6435 Pursuit
## 6436 Pursuit
## 6437 Pursuit
## 6438 Pursuit
## 6439 Pursuit
## 6440 Pursuit
## 6441 Pursuit
## 6442 Pursuit
## 6443 Pursuit
## 6444 Pursuit
## 6445 Pursuit
## 6446 Pursuit
## 6447 Pursuit
## 6448 Pursuit
## 6449 Pursuit
## 6450 Pursuit
## 6451 Pursuit
## 6452 Pursuit
## 6453 Pursuit
## 6454 Pursuit
## 6455 Pursuit
## 6456 Pursuit
## 6457 Pursuit
## 6458 Pursuit
## 6459 Pursuit
## 6460 Pursuit
## 6461 Pursuit
## 6462 Pursuit
## 6463 Pursuit
## 6464 Pursuit
## 6465 Pursuit
## 6466 Pursuit
## 6467 Pursuit
## 6468 Pursuit
## 6469 Pursuit
## 6470 Pursuit
## 6471 Pursuit
## 6472 Pursuit
## 6473 Pursuit
## 6474 Pursuit
## 6475 Sprint
## 6476 Sprint
## 6477 Sprint
## 6478 Sprint
## 6479 Sprint
## 6480 Sprint
## 6481 Sprint
## 6482 Sprint
## 6483 Sprint
## 6484 Sprint
## 6485 Sprint
## 6486 Sprint
## 6487 Sprint
## 6488 Sprint
## 6489 Sprint
## 6490 Sprint
## 6491 Sprint
## 6492 Sprint
## 6493 Sprint
## 6494 Sprint
## 6495 Sprint
## 6496 Sprint
## 6497 Sprint
## 6498 Sprint
## 6499 Sprint
## 6500 Sprint
## 6501 Sprint
## 6502 Sprint
## 6503 Sprint
## 6504 Sprint
## 6505 Sprint
## 6506 Sprint
## 6507 Sprint
## 6508 Sprint
## 6509 Sprint
## 6510 Sprint
## 6511 Sprint
## 6512 Sprint
## 6513 Sprint
## 6514 Sprint
## 6515 Sprint
## 6516 Sprint
## 6517 Sprint
## 6518 Sprint
## 6519 Sprint
## 6520 Sprint
## 6521 Sprint
## 6522 Sprint
## 6523 Sprint
## 6524 Sprint
## 6525 Sprint
## 6526 Sprint
## 6527 Sprint
## 6528 Sprint
## 6529 Sprint
## 6530 Sprint
## 6531 Sprint
## 6532 Sprint
## 6533 Sprint
## 6534 Sprint
## 6535 Sprint
## 6536 Sprint
## 6537 Sprint
## 6538 Sprint
## 6539 Sprint
## 6540 Sprint
## 6541 Sprint
## 6542 Sprint
## 6543 Sprint
## 6544 Sprint
## 6545 Sprint
## 6546 Sprint
## 6547 Sprint
## 6548 Sprint
## 6549 Sprint
## 6550 Sprint
## 6551 Sprint
## 6552 Sprint
## 6553 Sprint
## 6554 Sprint
## 6555 Sprint
## 6556 Sprint
## 6557 Sprint
## 6558 Sprint
## 6559 Sprint
## 6560 Sprint
## 6561 Sprint
## 6562 Sprint
## 6563 Sprint
## 6564 Sprint
## 6565 Sprint
## 6566 Sprint
## 6567 Sprint
## 6568 Sprint
## 6569 Sprint
## 6570 Sprint
## 6571 Sprint
## 6572 Sprint
## 6573 Sprint
## 6574 Sprint
## 6575 Sprint
## 6576 Sprint
## 6577 Sprint
## 6578 Sprint
## 6579 Sprint
## 6580 Individual
## 6581 Individual
## 6582 Individual
## 6583 Individual
## 6584 Individual
## 6585 Individual
## 6586 Individual
## 6587 Individual
## 6588 Individual
## 6589 Individual
## 6590 Individual
## 6591 Individual
## 6592 Individual
## 6593 Individual
## 6594 Individual
## 6595 Individual
## 6596 Individual
## 6597 Individual
## 6598 Individual
## 6599 Individual
## 6600 Individual
## 6601 Individual
## 6602 Individual
## 6603 Individual
## 6604 Individual
## 6605 Individual
## 6606 Individual
## 6607 Individual
## 6608 Individual
## 6609 Individual
## 6610 Individual
## 6611 Individual
## 6612 Individual
## 6613 Individual
## 6614 Individual
## 6615 Individual
## 6616 Individual
## 6617 Individual
## 6618 Individual
## 6619 Individual
## 6620 Individual
## 6621 Individual
## 6622 Individual
## 6623 Individual
## 6624 Individual
## 6625 Individual
## 6626 Individual
## 6627 Individual
## 6628 Individual
## 6629 Individual
## 6630 Individual
## 6631 Individual
## 6632 Individual
## 6633 Individual
## 6634 Individual
## 6635 Individual
## 6636 Individual
## 6637 Individual
## 6638 Individual
## 6639 Individual
## 6640 Individual
## 6641 Individual
## 6642 Individual
## 6643 Individual
## 6644 Individual
## 6645 Individual
## 6646 Individual
## 6647 Individual
## 6648 Individual
## 6649 Individual
## 6650 Individual
## 6651 Individual
## 6652 Individual
## 6653 Individual
## 6654 Individual
## 6655 Individual
## 6656 Individual
## 6657 Individual
## 6658 Individual
## 6659 Individual
## 6660 Individual
## 6661 Individual
## 6662 Individual
## 6663 Individual
## 6664 Individual
## 6665 Individual
## 6666 Individual
## 6667 Individual
## 6668 Individual
## 6669 Individual
## 6670 Individual
## 6671 Individual
## 6672 Individual
## 6673 Individual
## 6674 Individual
## 6675 Individual
## 6676 Individual
## 6677 Individual
## 6678 Individual
## 6679 Individual
## 6680 Individual
## 6681 Individual
## 6682 Individual
## 6683 Individual
## 6684 Individual
## 6685 Individual
## 6686 Individual
## 6687 Individual
## 6688 Pursuit
## 6689 Pursuit
## 6690 Pursuit
## 6691 Pursuit
## 6692 Pursuit
## 6693 Pursuit
## 6694 Pursuit
## 6695 Pursuit
## 6696 Pursuit
## 6697 Pursuit
## 6698 Pursuit
## 6699 Pursuit
## 6700 Pursuit
## 6701 Pursuit
## 6702 Pursuit
## 6703 Pursuit
## 6704 Pursuit
## 6705 Pursuit
## 6706 Pursuit
## 6707 Pursuit
## 6708 Pursuit
## 6709 Pursuit
## 6710 Pursuit
## 6711 Pursuit
## 6712 Pursuit
## 6713 Pursuit
## 6714 Pursuit
## 6715 Pursuit
## 6716 Pursuit
## 6717 Pursuit
## 6718 Pursuit
## 6719 Pursuit
## 6720 Pursuit
## 6721 Pursuit
## 6722 Pursuit
## 6723 Pursuit
## 6724 Pursuit
## 6725 Pursuit
## 6726 Pursuit
## 6727 Pursuit
## 6728 Pursuit
## 6729 Pursuit
## 6730 Pursuit
## 6731 Pursuit
## 6732 Pursuit
## 6733 Pursuit
## 6734 Pursuit
## 6735 Pursuit
## 6736 Pursuit
## 6737 Pursuit
## 6738 Pursuit
## 6739 Pursuit
## 6740 Pursuit
## 6741 Pursuit
## 6742 Pursuit
## 6743 Pursuit
## 6744 Pursuit
## 6745 Pursuit
## 6746 Pursuit
## 6747 Pursuit
## 6748 Sprint
## 6749 Sprint
## 6750 Sprint
## 6751 Sprint
## 6752 Sprint
## 6753 Sprint
## 6754 Sprint
## 6755 Sprint
## 6756 Sprint
## 6757 Sprint
## 6758 Sprint
## 6759 Sprint
## 6760 Sprint
## 6761 Sprint
## 6762 Sprint
## 6763 Sprint
## 6764 Sprint
## 6765 Sprint
## 6766 Sprint
## 6767 Sprint
## 6768 Sprint
## 6769 Sprint
## 6770 Sprint
## 6771 Sprint
## 6772 Sprint
## 6773 Sprint
## 6774 Sprint
## 6775 Sprint
## 6776 Sprint
## 6777 Sprint
## 6778 Sprint
## 6779 Sprint
## 6780 Sprint
## 6781 Sprint
## 6782 Sprint
## 6783 Sprint
## 6784 Sprint
## 6785 Sprint
## 6786 Sprint
## 6787 Sprint
## 6788 Sprint
## 6789 Sprint
## 6790 Sprint
## 6791 Sprint
## 6792 Sprint
## 6793 Sprint
## 6794 Sprint
## 6795 Sprint
## 6796 Sprint
## 6797 Sprint
## 6798 Sprint
## 6799 Sprint
## 6800 Sprint
## 6801 Sprint
## 6802 Sprint
## 6803 Sprint
## 6804 Sprint
## 6805 Sprint
## 6806 Sprint
## 6807 Sprint
## 6808 Sprint
## 6809 Sprint
## 6810 Sprint
## 6811 Sprint
## 6812 Sprint
## 6813 Sprint
## 6814 Sprint
## 6815 Sprint
## 6816 Sprint
## 6817 Sprint
## 6818 Sprint
## 6819 Sprint
## 6820 Sprint
## 6821 Sprint
## 6822 Sprint
## 6823 Sprint
## 6824 Sprint
## 6825 Sprint
## 6826 Sprint
## 6827 Sprint
## 6828 Sprint
## 6829 Sprint
## 6830 Sprint
## 6831 Sprint
## 6832 Sprint
## 6833 Sprint
## 6834 Sprint
## 6835 Sprint
## 6836 Sprint
## 6837 Sprint
## 6838 Sprint
## 6839 Sprint
## 6840 Sprint
## 6841 Sprint
## 6842 Sprint
## 6843 Sprint
## 6844 Sprint
## 6845 Sprint
## 6846 Sprint
## 6847 Sprint
## 6848 Sprint
## 6849 Sprint
## 6850 Sprint
## 6851 Sprint
## 6852 Sprint
## 6853 Sprint
## 6854 Sprint
## 6855 Sprint
## 6856 Pursuit
## 6857 Pursuit
## 6858 Pursuit
## 6859 Pursuit
## 6860 Pursuit
## 6861 Pursuit
## 6862 Pursuit
## 6863 Pursuit
## 6864 Pursuit
## 6865 Pursuit
## 6866 Pursuit
## 6867 Pursuit
## 6868 Pursuit
## 6869 Pursuit
## 6870 Pursuit
## 6871 Pursuit
## 6872 Pursuit
## 6873 Pursuit
## 6874 Pursuit
## 6875 Pursuit
## 6876 Pursuit
## 6877 Pursuit
## 6878 Pursuit
## 6879 Pursuit
## 6880 Pursuit
## 6881 Pursuit
## 6882 Pursuit
## 6883 Pursuit
## 6884 Pursuit
## 6885 Pursuit
## 6886 Pursuit
## 6887 Pursuit
## 6888 Pursuit
## 6889 Pursuit
## 6890 Pursuit
## 6891 Pursuit
## 6892 Pursuit
## 6893 Pursuit
## 6894 Pursuit
## 6895 Pursuit
## 6896 Pursuit
## 6897 Pursuit
## 6898 Pursuit
## 6899 Pursuit
## 6900 Pursuit
## 6901 Pursuit
## 6902 Pursuit
## 6903 Pursuit
## 6904 Pursuit
## 6905 Pursuit
## 6906 Pursuit
## 6907 Pursuit
## 6908 Pursuit
## 6909 Pursuit
## 6910 Pursuit
## 6911 Pursuit
## 6912 Pursuit
## 6913 Pursuit
## 6914 Pursuit
## 6915 Pursuit
## 6916 Sprint
## 6917 Sprint
## 6918 Sprint
## 6919 Sprint
## 6920 Sprint
## 6921 Sprint
## 6922 Sprint
## 6923 Sprint
## 6924 Sprint
## 6925 Sprint
## 6926 Sprint
## 6927 Sprint
## 6928 Sprint
## 6929 Sprint
## 6930 Sprint
## 6931 Sprint
## 6932 Sprint
## 6933 Sprint
## 6934 Sprint
## 6935 Sprint
## 6936 Sprint
## 6937 Sprint
## 6938 Sprint
## 6939 Sprint
## 6940 Sprint
## 6941 Sprint
## 6942 Sprint
## 6943 Sprint
## 6944 Sprint
## 6945 Sprint
## 6946 Sprint
## 6947 Sprint
## 6948 Sprint
## 6949 Sprint
## 6950 Sprint
## 6951 Sprint
## 6952 Sprint
## 6953 Sprint
## 6954 Sprint
## 6955 Sprint
## 6956 Sprint
## 6957 Sprint
## 6958 Sprint
## 6959 Sprint
## 6960 Sprint
## 6961 Sprint
## 6962 Sprint
## 6963 Sprint
## 6964 Sprint
## 6965 Sprint
## 6966 Sprint
## 6967 Sprint
## 6968 Sprint
## 6969 Sprint
## 6970 Sprint
## 6971 Sprint
## 6972 Sprint
## 6973 Sprint
## 6974 Sprint
## 6975 Sprint
## 6976 Sprint
## 6977 Sprint
## 6978 Sprint
## 6979 Sprint
## 6980 Sprint
## 6981 Sprint
## 6982 Sprint
## 6983 Sprint
## 6984 Sprint
## 6985 Sprint
## 6986 Sprint
## 6987 Sprint
## 6988 Sprint
## 6989 Sprint
## 6990 Sprint
## 6991 Sprint
## 6992 Sprint
## 6993 Sprint
## 6994 Sprint
## 6995 Sprint
## 6996 Sprint
## 6997 Sprint
## 6998 Sprint
## 6999 Sprint
## 7000 Sprint
## 7001 Sprint
## 7002 Sprint
## 7003 Sprint
## 7004 Sprint
## 7005 Sprint
## 7006 Sprint
## 7007 Sprint
## 7008 Sprint
## 7009 Sprint
## 7010 Sprint
## 7011 Sprint
## 7012 Sprint
## 7013 Sprint
## 7014 Sprint
## 7015 Sprint
## 7016 Sprint
## 7017 Sprint
## 7018 Sprint
## 7019 Sprint
## 7020 Sprint
## 7021 Individual
## 7022 Individual
## 7023 Individual
## 7024 Individual
## 7025 Individual
## 7026 Individual
## 7027 Individual
## 7028 Individual
## 7029 Individual
## 7030 Individual
## 7031 Individual
## 7032 Individual
## 7033 Individual
## 7034 Individual
## 7035 Individual
## 7036 Individual
## 7037 Individual
## 7038 Individual
## 7039 Individual
## 7040 Individual
## 7041 Individual
## 7042 Individual
## 7043 Individual
## 7044 Individual
## 7045 Individual
## 7046 Individual
## 7047 Individual
## 7048 Individual
## 7049 Individual
## 7050 Individual
## 7051 Individual
## 7052 Individual
## 7053 Individual
## 7054 Individual
## 7055 Individual
## 7056 Individual
## 7057 Individual
## 7058 Individual
## 7059 Individual
## 7060 Individual
## 7061 Individual
## 7062 Individual
## 7063 Individual
## 7064 Individual
## 7065 Individual
## 7066 Individual
## 7067 Individual
## 7068 Individual
## 7069 Individual
## 7070 Individual
## 7071 Individual
## 7072 Individual
## 7073 Individual
## 7074 Individual
## 7075 Individual
## 7076 Individual
## 7077 Individual
## 7078 Individual
## 7079 Individual
## 7080 Individual
## 7081 Individual
## 7082 Individual
## 7083 Individual
## 7084 Individual
## 7085 Individual
## 7086 Individual
## 7087 Individual
## 7088 Individual
## 7089 Individual
## 7090 Individual
## 7091 Individual
## 7092 Individual
## 7093 Individual
## 7094 Individual
## 7095 Individual
## 7096 Individual
## 7097 Individual
## 7098 Individual
## 7099 Individual
## 7100 Individual
## 7101 Individual
## 7102 Individual
## 7103 Individual
## 7104 Individual
## 7105 Individual
## 7106 Individual
## 7107 Mass start
## 7108 Mass start
## 7109 Mass start
## 7110 Mass start
## 7111 Mass start
## 7112 Mass start
## 7113 Mass start
## 7114 Mass start
## 7115 Mass start
## 7116 Mass start
## 7117 Mass start
## 7118 Mass start
## 7119 Mass start
## 7120 Mass start
## 7121 Mass start
## 7122 Mass start
## 7123 Mass start
## 7124 Mass start
## 7125 Mass start
## 7126 Mass start
## 7127 Mass start
## 7128 Mass start
## 7129 Mass start
## 7130 Mass start
## 7131 Mass start
## 7132 Mass start
## 7133 Mass start
## 7134 Mass start
## 7135 Mass start
## 7136 Mass start
## 7137 Pursuit
## 7138 Pursuit
## 7139 Pursuit
## 7140 Pursuit
## 7141 Pursuit
## 7142 Pursuit
## [ reached 'max' / getOption("max.print") -- omitted 7611 rows ]
df_final_loop_men
## Rank Bib Family.Name Given.Name Nation Cumulative.Time Loop.Time
## 1 1 29 Schempp Simon GER 957.9 476.0
## 2 2 42 Garanichev Evgeniy RUS 967.8 483.9
## 3 3 48 Fak Jakov SLO 975.8 500.5
## 4 4 49 Weger Benjamin SUI 986.8 483.2
## 5 5 53 Green Brendan CAN 981.3 489.7
## 6 6 85 L'Abee-Lund Henrik NOR 985.4 491.3
## 7 7 27 Shipulin Anton RUS 985.5 502.1
## 8 8 46 Eder Simon AUT 979.6 488.9
## 9 9 9 Bjoerndalen Ole Einar NOR 991.3 504.9
## 10 10 15 Moravec Ondrej CZE 994.0 496.9
## 11 11 68 Peiffer Arnd GER 1004.3 517.2
## 12 12 57 Eberhard Julian AUT 1011.9 483.5
## 13 13 17 Pidruchnyi Dmytro UKR 998.9 511.5
## 14 14 6 Iliev Vladimir BUL 1010.0 519.4
## 15 15 4 Malyshko Dmitry RUS 1000.6 499.9
## 16 16 28 Lapshin Timofei RUS 998.2 514.8
## 17 17 40 Beatrix Jean Guillaume FRA 1008.6 511.6
## 18 18 34 Fourcade Simon FRA 1005.6 501.1
## 19 19 45 Lesser Erik GER 1017.6 532.0
## 20 20 32 Lindstroem Fredrik SWE 1019.1 500.8
## 21 21 50 Rastorgujevs Andrejs LAT 1022.2 495.7
## 22 22 38 Pryma Artem UKR 1021.9 525.6
## 23 23 1 Krcmar Michal CZE 1020.5 517.3
## 24 24 66 Os Alexander NOR 1017.5 497.5
## 25 25 10 Fourcade Martin FRA 1014.2 508.0
## 26 26 88 Doll Benedikt GER 1028.8 518.4
## 27 27 76 Dolder Mario SUI 1013.6 505.2
## 28 28 3 Svendsen Emil Hegle NOR 1035.9 520.0
## 29 29 19 Fillon Maillet Quentin FRA 1033.3 488.0
## 30 30 14 Boehm Daniel GER 1020.6 529.0
## 31 31 5 Boe Johannes Thingnes NOR 1040.0 515.7
## 32 32 37 Bailey Lowell USA 1025.7 527.4
## 33 33 41 Chepelin Vladimir BLR 1029.8 540.3
## 34 34 16 Hofer Lukas ITA 1031.8 528.5
## 35 34 44 Kazar Matej SVK 1049.7 506.3
## 36 36 11 Birnbacher Andreas GER 1035.2 497.9
## 37 37 47 Komatz David AUT 1026.6 528.5
## 38 38 25 Windisch Dominik ITA 1046.3 518.2
## 39 39 92 Hasilla Tomas SVK 1032.2 527.7
## 40 40 63 Soukup Jaroslav CZE 1051.0 525.6
## 41 41 13 Puchianu Cornel ROU 1055.0 557.1
## 42 42 102 Zhyrnyi Oleksandr UKR 1028.4 525.3
## 43 43 99 De Lorenzi Christian ITA 1039.1 536.6
## 44 44 23 Mesotitsch Daniel AUT 1049.0 531.6
## 45 45 36 Boe Tarjei NOR 1047.5 546.7
## 46 46 94 Jouty Baptiste FRA 1046.5 536.5
## 47 47 67 Burke Tim USA 1059.2 543.8
## 48 48 22 Savitskiy Yan KAZ 1044.3 516.7
## 49 49 18 Slesingr Michal CZE 1052.4 535.5
## 50 50 39 Roesch Michael BEL 1047.5 559.8
## 51 51 103 Gow Christian CAN 1041.3 523.1
## 52 52 52 Trsan Rok SLO 1052.2 527.0
## 53 53 33 Grossegger Sven AUT 1040.4 540.0
## 54 54 7 Liadov Yuryi BLR 1067.1 559.0
## 55 55 35 Anev Krasimir BUL 1060.3 511.9
## 56 56 96 Pinter Friedrich AUT 1057.1 549.0
## 57 57 74 Kaukenas Tomas LTU 1054.7 538.7
## 58 58 75 Desthieux Simon FRA 1065.0 560.2
## 59 59 59 Pantov Anton KAZ 1063.7 504.0
## 60 60 82 Oblak Lenart SLO 1048.7 533.4
## 61 61 30 Toivanen Ahti FIN 1083.3 542.9
## 62 62 83 Doherty Sean USA 1075.1 553.8
## 63 63 31 Krupcik Tomas CZE 1064.0 548.8
## 64 64 69 Tsvetkov Maxim RUS 1067.0 576.6
## 65 65 81 Matiasko Miroslav SVK 1068.5 557.8
## 66 66 72 Tyshchenko Artem UKR 1055.2 559.7
## 67 67 70 Faur Remus ROU 1055.1 528.6
## 68 68 54 Dokl Peter SLO 1052.9 532.1
## 69 69 60 Bormolini Thomas ITA 1060.1 563.3
## 70 70 51 Tobreluts Indrek EST 1088.6 564.2
## 71 71 8 Semenov Sergii UKR 1106.8 518.9
## 72 72 56 Hiidensalo Olli FIN 1084.5 531.3
## 73 73 20 Gow Scott CAN 1093.3 541.2
## 74 74 24 Lessing Roland EST 1077.9 526.8
## 75 75 73 Zlatev Ivan BUL 1058.5 546.8
## 76 76 86 Zahkna Rene EST 1070.0 523.3
## 77 77 43 Smith Nathan CAN 1074.9 549.1
## 78 78 101 Abasheu Dzmitry BLR 1073.2 564.3
## 79 79 21 Nordgren Leif USA 1088.4 547.9
## 80 80 87 Kauppinen Jarkko FIN 1071.5 540.0
## 81 81 100 Stegmayr Gabriel SWE 1077.0 537.5
## 82 82 2 Otcenas Martin SVK 1105.6 567.7
## 83 83 62 Guzik Grzegorz POL 1084.7 526.2
## 84 84 77 Sloof Joel NED 1069.2 558.1
## 85 85 61 Almoukov Alexei AUS 1063.6 546.9
## 86 86 71 Armgren Ted SWE 1100.2 556.5
## 87 87 78 Dyuzhev Dmitriy BLR 1108.7 560.2
## 88 88 65 Lobo Escolar Victor ESP 1095.0 554.0
## 89 89 89 Dombrovski Karol LTU 1090.8 554.1
## 90 90 58 Puzulis Rolands LAT 1098.5 542.3
## 91 91 12 Wiestner Serafin SUI 1142.1 580.8
## 92 92 95 Trifonov Alexandr KAZ 1101.4 554.0
## 93 93 80 Stenersen Torstein SWE 1130.5 576.4
## 94 94 79 Kane Kevin GBR 1110.8 556.0
## 95 95 97 Cuenot Gaspard SUI 1115.0 565.0
## 96 96 55 Rastic Damir SRB 1139.1 583.7
## 97 97 90 Szczurek Lukasz POL 1180.2 545.4
## 98 98 91 Slotins Roberts LAT 1168.1 637.9
## 99 99 64 Inomata Kazuya JPN 1162.1 592.2
## 100 100 98 Laponder Marcel GBR 1188.8 603.6
## 101 101 93 Krsmanovic Dejan SRB 1236.9 642.0
## 102 1 1 Schempp Simon GER 1555.9 379.1
## 103 2 8 Eder Simon AUT 1554.5 380.8
## 104 3 2 Garanichev Evgeniy RUS 1553.9 382.4
## 105 4 9 Bjoerndalen Ole Einar NOR 1555.5 380.4
## 106 5 25 Fourcade Martin FRA 1579.0 378.8
## 107 6 19 Lesser Erik GER 1584.3 383.3
## 108 7 3 Fak Jakov SLO 1599.0 397.6
## 109 8 18 Fourcade Simon FRA 1600.5 380.4
## 110 9 13 Pidruchnyi Dmytro UKR 1615.6 377.9
## 111 10 11 Peiffer Arnd GER 1608.5 391.3
## 112 11 10 Moravec Ondrej CZE 1615.1 382.4
## 113 12 30 Boehm Daniel GER 1603.4 379.4
## 114 13 7 Shipulin Anton RUS 1622.9 397.8
## 115 14 16 Lapshin Timofei RUS 1612.7 393.5
## 116 15 12 Eberhard Julian AUT 1622.6 401.6
## 117 16 17 Beatrix Jean Guillaume FRA 1639.0 418.5
## 118 17 28 Svendsen Emil Hegle NOR 1641.2 409.0
## 119 18 5 Green Brendan CAN 1656.6 386.9
## 120 19 37 Birnbacher Andreas GER 1655.1 387.8
## 121 20 20 Lindstroem Fredrik SWE 1658.2 426.9
## 122 21 29 Fillon Maillet Quentin FRA 1667.1 408.5
## 123 22 31 Boe Johannes Thingnes NOR 1687.6 447.5
## 124 23 26 Doll Benedikt GER 1702.8 429.6
## 125 24 23 Krcmar Michal CZE 1699.7 412.2
## 126 25 46 Boe Tarjei NOR 1697.9 412.7
## 127 26 22 Pryma Artem UKR 1695.6 405.8
## 128 27 54 Grossegger Sven AUT 1697.0 398.0
## 129 28 4 Weger Benjamin SUI 1696.0 438.2
## 130 29 45 Mesotitsch Daniel AUT 1704.1 404.6
## 131 30 34 Hofer Lukas ITA 1717.3 426.0
## 132 31 32 Bailey Lowell USA 1717.7 428.8
## 133 32 14 Iliev Vladimir BUL 1720.5 449.3
## 134 33 44 De Lorenzi Christian ITA 1710.3 418.3
## 135 34 24 Os Alexander NOR 1723.5 439.5
## 136 35 21 Rastorgujevs Andrejs LAT 1731.4 414.7
## 137 36 39 Windisch Dominik ITA 1736.5 445.0
## 138 37 38 Komatz David AUT 1736.1 395.5
## 139 38 33 Chepelin Vladimir BLR 1734.4 463.5
## 140 39 51 Roesch Michael BEL 1755.2 446.3
## 141 40 48 Burke Tim USA 1761.5 405.9
## 142 41 41 Soukup Jaroslav CZE 1765.4 419.7
## 143 42 43 Zhyrnyi Oleksandr UKR 1771.0 400.6
## 144 43 15 Malyshko Dmitry RUS 1768.3 405.4
## 145 44 49 Savitskiy Yan KAZ 1765.1 430.5
## 146 45 27 Dolder Mario SUI 1791.0 477.5
## 147 46 52 Gow Christian CAN 1778.7 430.2
## 148 47 58 Kaukenas Tomas LTU 1807.4 444.2
## 149 48 42 Puchianu Cornel ROU 1801.0 454.2
## 150 49 40 Hasilla Tomas SVK 1816.2 447.6
## 151 50 35 Kazar Matej SVK 1824.3 490.5
## 152 51 57 Pinter Friedrich AUT 1833.4 469.4
## 153 52 47 Jouty Baptiste FRA 1863.3 460.9
## 154 53 60 Pantov Anton KAZ 1890.0 424.3
## 155 1 13 Boe Johannes Thingnes NOR 1134.7 777.8
## 156 2 19 Schempp Simon GER 1149.9 778.8
## 157 3 16 Birnbacher Andreas GER 1149.0 775.9
## 158 4 27 Landertinger Dominik AUT 1156.1 791.8
## 159 5 25 Fak Jakov SLO 1157.4 771.3
## 160 6 6 Boe Tarjei NOR 1161.7 792.3
## 161 7 83 Fourcade Martin FRA 1150.7 787.4
## 162 8 30 Malyshko Dmitry RUS 1153.2 781.5
## 163 9 2 Svendsen Emil Hegle NOR 1163.3 801.2
## 164 10 5 Moravec Ondrej CZE 1167.9 773.8
## 165 11 33 Shipulin Anton RUS 1165.4 773.6
## 166 12 10 Weger Benjamin SUI 1161.5 799.9
## 167 13 7 Burke Tim USA 1168.8 802.8
## 168 14 4 Mesotitsch Daniel AUT 1171.6 804.5
## 169 15 52 Boehm Daniel GER 1173.2 804.7
## 170 16 88 Lapshin Timofei RUS 1170.8 812.4
## 171 17 23 Anev Krasimir BUL 1169.6 797.7
## 172 17 41 Bailey Lowell USA 1171.0 800.2
## 173 19 31 Iliev Vladimir BUL 1183.9 808.1
## 174 20 26 Kazar Matej SVK 1183.6 814.3
## 175 21 14 Savitskiy Yan KAZ 1169.7 791.6
## 176 22 18 Tsvetkov Maxim RUS 1179.4 808.7
## 177 23 28 Rastorgujevs Andrejs LAT 1198.9 784.7
## 178 24 12 Eder Simon AUT 1190.2 810.4
## 179 25 36 Os Alexander NOR 1205.9 789.4
## 180 26 8 Pryma Artem UKR 1204.4 825.7
## 181 27 9 Puchianu Cornel ROU 1208.7 834.8
## 182 28 39 Lesser Erik GER 1217.3 831.0
## 183 29 105 Fourcade Simon FRA 1192.6 821.8
## 184 30 21 Desthieux Simon FRA 1219.7 849.3
## 185 31 22 Semenov Sergii UKR 1212.0 800.7
## 186 32 43 Peiffer Arnd GER 1209.9 845.1
## 187 33 42 Garanichev Evgeniy RUS 1214.1 849.6
## 188 34 47 Dolder Mario SUI 1213.8 838.2
## 189 35 85 Pidruchnyi Dmytro UKR 1216.1 817.2
## 190 36 17 Soukup Jaroslav CZE 1226.8 829.5
## 191 37 91 Beatrix Jean Guillaume FRA 1225.5 856.4
## 192 38 73 Birkeland Lars Helge NOR 1225.7 813.1
## 193 39 101 Bjoerndalen Ole Einar NOR 1220.7 811.3
## 194 40 24 Bauer Klemen SLO 1227.1 863.4
## 195 41 82 Eberhard Julian AUT 1238.9 822.0
## 196 42 15 Slesingr Michal CZE 1229.2 851.4
## 197 43 29 Smith Nathan CAN 1235.7 820.5
## 198 44 35 Fillon Maillet Quentin FRA 1223.1 845.3
## 199 45 1 Liadov Yuryi BLR 1228.8 828.7
## 200 46 40 Lindstroem Fredrik SWE 1246.1 855.4
## 201 47 79 Otcenas Martin SVK 1242.5 877.5
## 202 48 74 Green Brendan CAN 1244.6 813.5
## 203 49 54 Koiv Kauri EST 1225.1 852.2
## 204 50 70 Nordgren Leif USA 1243.9 833.6
## 205 51 50 Sloof Joel NED 1229.4 845.2
## 206 52 69 Hiidensalo Olli FIN 1255.6 822.8
## 207 53 57 Chepelin Vladimir BLR 1255.6 881.2
## 208 54 65 Zhyrnyi Oleksandr UKR 1242.0 830.6
## 209 55 48 Krcmar Michal CZE 1260.6 879.4
## 210 56 3 Arwidson Tobias SWE 1236.1 866.0
## 211 57 53 Cuenot Gaspard SUI 1256.6 854.3
## 212 58 37 Windisch Dominik ITA 1258.3 843.4
## 213 59 96 Tobreluts Indrek EST 1262.3 878.3
## 214 60 97 Currier Russell USA 1269.0 830.7
## 215 61 94 Dombrovski Karol LTU 1240.2 835.8
## 216 62 102 Wiestner Serafin SUI 1262.1 836.5
## 217 63 67 Darozhka Aliaksandr BLR 1263.3 865.9
## 218 64 51 Kaukenas Tomas LTU 1261.6 885.6
## 219 65 20 Hofer Lukas ITA 1264.6 853.5
## 220 66 56 Bormolini Thomas ITA 1260.1 836.2
## 221 67 46 Eriksson Christofer SWE 1267.1 877.1
## 222 68 93 Willeitner Michael GER 1282.7 897.2
## 223 69 103 Rastic Damir SRB 1260.6 864.5
## 224 70 89 Budzilovich Dzmitry BLR 1267.9 874.6
## 225 71 64 Eberhard Tobias AUT 1274.0 859.0
## 226 72 32 Tyshchenko Artem UKR 1275.9 865.6
## 227 73 34 Lessing Roland EST 1291.7 856.1
## 228 74 86 Armgren Ted SWE 1283.7 858.7
## 229 75 84 Trsan Rok SLO 1280.4 899.0
## 230 76 58 Oblak Lenart SLO 1276.8 837.7
## 231 77 76 Dokl Peter SLO 1265.9 876.3
## 232 78 45 Krupcik Tomas CZE 1277.2 874.5
## 233 79 75 Hakala Matti FIN 1290.5 857.6
## 234 80 80 Roesch Michael BEL 1261.4 893.2
## 235 81 49 Bedard Marc Andre CAN 1283.7 850.5
## 236 82 38 Komatz David AUT 1288.1 875.4
## 237 83 81 Buta George ROU 1298.5 884.9
## 238 84 68 Almoukov Alexei AUS 1302.7 864.6
## 239 85 90 Martinelli Christian ITA 1291.4 861.8
## 240 86 59 Boeuf Alexis FRA 1297.8 890.5
## 241 87 44 Hasilla Tomas SVK 1293.9 888.4
## 242 88 77 Trifonov Alexandr KAZ 1293.4 876.8
## 243 89 87 Janik Mateusz POL 1309.1 885.6
## 244 90 78 Lobo Escolar Victor ESP 1302.7 908.0
## 245 91 11 Kobonoki Tsukasa JPN 1301.7 872.6
## 246 92 104 Gronman Tuomas FIN 1304.4 889.2
## 247 93 60 Sinapov Anton BUL 1317.1 931.7
## 248 94 62 Szczurek Lukasz POL 1332.7 864.6
## 249 95 61 Jackson Lee-Steve GBR 1325.4 852.7
## 250 96 66 Femling Peppe SWE 1301.4 877.4
## 251 97 98 Podkorytov Vassiliy KAZ 1336.0 845.7
## 252 98 99 Matiasko Miroslav SVK 1349.6 932.0
## 253 99 92 Perras Scott CAN 1365.9 902.7
## 254 100 55 Puzulis Rolands LAT 1332.3 929.1
## 255 101 95 Patrijuks Aleksandrs LAT 1373.4 934.9
## 256 102 71 Crnkovic Kresimir CRO 1377.5 942.1
## 257 103 100 Kane Kevin GBR 1403.2 987.1
## 258 104 72 Hodzic Edin SRB 1406.8 934.2
## 259 1 7 Fourcade Martin FRA 1612.2 416.0
## 260 2 2 Schempp Simon GER 1620.3 422.0
## 261 3 5 Fak Jakov SLO 1638.4 443.7
## 262 4 1 Boe Johannes Thingnes NOR 1637.8 415.3
## 263 5 11 Shipulin Anton RUS 1647.5 415.2
## 264 6 6 Boe Tarjei NOR 1657.9 419.6
## 265 7 3 Birnbacher Andreas GER 1665.8 417.5
## 266 8 4 Landertinger Dominik AUT 1691.9 462.9
## 267 9 10 Moravec Ondrej CZE 1683.5 422.8
## 268 10 8 Malyshko Dmitry RUS 1684.8 423.0
## 269 11 19 Iliev Vladimir BUL 1685.9 446.5
## 270 12 15 Boehm Daniel GER 1686.4 423.2
## 271 13 16 Lapshin Timofei RUS 1691.7 443.9
## 272 14 9 Svendsen Emil Hegle NOR 1691.3 445.6
## 273 15 45 Fillon Maillet Quentin FRA 1711.1 417.8
## 274 16 25 Eder Simon AUT 1737.5 454.0
## 275 17 24 Rastorgujevs Andrejs LAT 1736.8 420.3
## 276 18 29 Lesser Erik GER 1746.2 423.8
## 277 19 14 Mesotitsch Daniel AUT 1735.4 451.1
## 278 20 12 Weger Benjamin SUI 1751.2 446.2
## 279 21 23 Tsvetkov Maxim RUS 1766.6 436.3
## 280 22 47 Lindstroem Fredrik SWE 1766.0 424.1
## 281 23 17 Anev Krasimir BUL 1732.0 453.0
## 282 24 20 Kazar Matej SVK 1776.0 433.7
## 283 25 13 Burke Tim USA 1772.8 425.8
## 284 26 30 Fourcade Simon FRA 1779.0 421.4
## 285 27 34 Garanichev Evgeniy RUS 1781.3 440.1
## 286 28 21 Savitskiy Yan KAZ 1751.6 435.0
## 287 29 27 Pryma Artem UKR 1775.7 452.1
## 288 30 39 Birkeland Lars Helge NOR 1789.9 444.7
## 289 31 36 Pidruchnyi Dmytro UKR 1782.1 457.8
## 290 32 18 Bailey Lowell USA 1784.9 478.1
## 291 33 26 Os Alexander NOR 1800.2 441.9
## 292 34 32 Semenov Sergii UKR 1800.8 433.7
## 293 35 41 Bauer Klemen SLO 1803.5 431.9
## 294 36 51 Nordgren Leif USA 1802.0 428.1
## 295 37 38 Beatrix Jean Guillaume FRA 1822.1 486.1
## 296 38 42 Eberhard Julian AUT 1840.9 446.1
## 297 39 31 Desthieux Simon FRA 1839.1 505.5
## 298 40 54 Chepelin Vladimir BLR 1844.5 443.0
## 299 41 59 Windisch Dominik ITA 1844.3 468.5
## 300 42 33 Peiffer Arnd GER 1853.9 454.3
## 301 43 49 Green Brendan CAN 1868.4 494.1
## 302 44 35 Dolder Mario SUI 1861.0 467.1
## 303 45 57 Arwidson Tobias SWE 1860.4 440.9
## 304 46 48 Otcenas Martin SVK 1886.9 505.6
## 305 47 56 Krcmar Michal CZE 1889.7 486.6
## 306 48 44 Smith Nathan CAN 1912.9 553.9
## 307 49 58 Cuenot Gaspard SUI 1921.3 504.3
## 308 50 55 Zhyrnyi Oleksandr UKR 1924.9 471.2
## 309 51 37 Soukup Jaroslav CZE 1913.6 549.9
## 310 52 46 Liadov Yuryi BLR 1928.3 510.7
## 311 53 28 Puchianu Cornel ROU 1963.8 493.9
## 312 54 53 Hiidensalo Olli FIN 1967.2 476.2
## 313 55 50 Koiv Kauri EST 2032.7 515.7
## 314 56 52 Sloof Joel NED 2020.4 508.0
## 315 1 38 Fourcade Martin FRA 988.2 495.7
## 316 2 43 Shipulin Anton RUS 999.6 500.0
## 317 3 27 Doll Benedikt GER 1013.4 517.9
## 318 4 32 Rastorgujevs Andrejs LAT 1011.7 502.1
## 319 5 24 Smith Nathan CAN 1025.1 505.4
## 320 6 52 Peiffer Arnd GER 1029.9 519.5
## 321 7 26 Lindstroem Fredrik SWE 1019.6 512.2
## 322 8 23 Fourcade Simon FRA 1022.2 504.8
## 323 9 30 Bjoerndalen Ole Einar NOR 1017.6 509.2
## 324 10 3 Kuehn Johannes GER 1043.2 538.0
## 325 11 31 Boehm Daniel GER 1031.3 530.7
## 326 12 2 Beatrix Jean Guillaume FRA 1021.2 513.5
## 327 13 37 Svendsen Emil Hegle NOR 1027.7 527.0
## 328 14 14 Tsvetkov Maxim RUS 1036.8 518.0
## 329 15 28 Slesingr Michal CZE 1042.6 524.6
## 330 16 67 Schempp Simon GER 1048.9 546.9
## 331 17 45 Dolder Mario SUI 1039.4 533.1
## 332 18 19 Fak Jakov SLO 1058.7 541.0
## 333 19 39 Weger Benjamin SUI 1051.6 548.3
## 334 20 6 Anev Krasimir BUL 1032.6 518.4
## 335 21 41 Nordgren Leif USA 1045.5 534.3
## 336 22 29 Eberhard Julian AUT 1066.1 561.1
## 337 23 87 Graf Florian GER 1048.7 530.7
## 338 24 66 Volkov Alexey RUS 1030.7 524.7
## 339 25 36 Chepelin Vladimir BLR 1058.6 530.7
## 340 26 53 Lesser Erik GER 1057.1 553.6
## 341 27 51 Koiv Kauri EST 1043.0 540.0
## 342 28 9 Kazar Matej SVK 1052.3 532.3
## 343 29 11 Liadov Yuryi BLR 1055.3 531.7
## 344 30 47 Green Brendan CAN 1058.0 542.2
## 345 31 88 Joller Ivan SUI 1051.4 522.8
## 346 32 15 Wiestner Serafin SUI 1069.7 541.9
## 347 33 22 Garanichev Evgeniy RUS 1067.5 525.5
## 348 34 20 Iliev Vladimir BUL 1075.5 551.6
## 349 35 65 Grossegger Sven AUT 1044.7 535.6
## 350 36 1 Semenov Sergii UKR 1071.8 513.5
## 351 37 35 Bauer Klemen SLO 1076.3 525.4
## 352 38 42 Moravec Ondrej CZE 1073.4 508.2
## 353 39 4 Bjoentegaard Erlend NOR 1069.0 536.5
## 354 40 33 Malyshko Dmitry RUS 1067.9 515.4
## 355 41 55 Zhyrnyi Oleksandr UKR 1067.3 561.6
## 356 42 48 Femling Peppe SWE 1069.2 540.5
## 357 43 34 Roesch Michael BEL 1073.8 563.2
## 358 44 69 Slepov Alexey RUS 1096.5 527.9
## 359 44 75 Abasheu Dzmitry BLR 1068.2 548.6
## 360 46 63 Fillon Maillet Quentin FRA 1079.4 511.8
## 361 47 74 Gjermundshaug Vegard NOR 1068.8 533.8
## 362 48 81 Eder Simon AUT 1073.1 532.7
## 363 49 46 Hiidensalo Olli FIN 1088.7 556.1
## 364 50 12 Boe Tarjei NOR 1082.4 560.5
## 365 51 82 Bailey Lowell USA 1072.2 561.0
## 366 52 21 Pryma Artem UKR 1088.6 546.3
## 367 53 80 Mesotitsch Daniel AUT 1061.9 554.1
## 368 54 49 Windisch Dominik ITA 1081.0 568.2
## 369 55 56 Burke Tim USA 1096.7 574.7
## 370 56 16 Krcmar Michal CZE 1083.9 567.0
## 371 57 17 Hofer Lukas ITA 1109.3 555.9
## 372 57 70 L'Abee-Lund Henrik NOR 1078.2 568.6
## 373 59 62 Birkeland Lars Helge NOR 1073.4 531.8
## 374 60 5 Lapshin Timofei RUS 1089.7 526.8
## 375 61 7 Komatz David AUT 1085.4 548.9
## 376 62 25 Otcenas Martin SVK 1096.6 567.7
## 377 63 59 Matiasko Miroslav SVK 1082.0 552.2
## 378 64 71 Buta George ROU 1094.1 528.2
## 379 65 40 Savitskiy Yan KAZ 1087.0 548.4
## 380 66 89 Tyshchenko Artem UKR 1086.8 549.2
## 381 67 86 Dombrovski Karol LTU 1083.1 563.0
## 382 68 18 Boe Johannes Thingnes NOR 1099.3 574.5
## 383 69 54 Dyuzhev Dmitriy BLR 1107.8 549.4
## 384 70 85 Bormolini Thomas ITA 1102.0 551.9
## 385 71 78 Oblak Lenart SLO 1087.6 545.8
## 386 72 13 Puchianu Cornel ROU 1126.9 598.3
## 387 73 58 Zlatev Ivan BUL 1119.9 536.7
## 388 74 61 Braun Maxim KAZ 1135.9 545.0
## 389 75 44 Sloof Joel NED 1114.9 538.8
## 390 76 8 Arwidson Tobias SWE 1114.7 557.6
## 391 77 50 Trsan Rok SLO 1138.8 569.1
## 392 78 72 Krupcik Tomas CZE 1119.6 593.1
## 393 79 84 Pantov Anton KAZ 1142.4 565.6
## 394 80 90 Eliseev Matvey RUS 1143.4 571.9
## 395 81 68 Almoukov Alexei AUS 1137.4 565.7
## 396 82 83 Slotins Roberts LAT 1156.2 598.0
## 397 83 64 Kaukenas Tomas LTU 1175.4 628.1
## 398 84 77 Stephan Christoph GER 1210.8 706.5
## 399 85 60 Puzulis Rolands LAT 1173.1 604.7
## 400 86 79 Koivunen Mikael FIN 1188.2 635.5
## 401 87 57 Rastic Damir SRB 1206.4 668.4
## 402 88 76 Krsmanovic Dejan SRB 1281.3 683.7
## 403 1 3 Fak Jakov SLO 1894.7 470.8
## 404 2 2 Shipulin Anton RUS 1910.9 455.6
## 405 3 18 Boe Tarjei NOR 1901.0 471.3
## 406 4 10 Fourcade Simon FRA 1913.2 464.9
## 407 5 14 Eder Simon AUT 1918.0 464.4
## 408 6 19 Beatrix Jean Guillaume FRA 1918.0 468.3
## 409 7 13 Peiffer Arnd GER 1941.3 494.7
## 410 8 17 Boehm Daniel GER 1932.6 474.7
## 411 9 4 Boe Johannes Thingnes NOR 1935.7 492.6
## 412 10 16 Weger Benjamin SUI 1951.9 467.7
## 413 11 24 Rastorgujevs Andrejs LAT 1961.5 469.1
## 414 12 7 Garanichev Evgeniy RUS 1957.1 501.5
## 415 13 9 Lesser Erik GER 1937.5 505.2
## 416 14 22 Fillon Maillet Quentin FRA 1935.3 501.1
## 417 15 12 Lindstroem Fredrik SWE 1957.7 486.8
## 418 16 30 Eberhard Julian AUT 1982.1 469.8
## 419 17 15 Smith Nathan CAN 1971.6 489.9
## 420 18 27 Chepelin Vladimir BLR 1971.3 496.5
## 421 19 28 Kuehn Johannes GER 1981.2 499.9
## 422 20 1 Fourcade Martin FRA 1969.6 504.8
## 423 21 5 Moravec Ondrej CZE 1991.1 481.9
## 424 22 20 Doll Benedikt GER 2009.0 558.8
## 425 23 6 Slesingr Michal CZE 2009.3 503.2
## 426 24 26 Nordgren Leif USA 1998.6 503.8
## 427 25 25 Anev Krasimir BUL 1995.6 500.3
## 428 26 23 Semenov Sergii UKR 2019.7 477.1
## 429 27 8 Svendsen Emil Hegle NOR 2005.2 533.5
## 430 28 11 Lapshin Timofei RUS 2020.3 482.2
## 431 29 29 Graf Florian GER 2044.9 561.5
## 432 30 21 Iliev Vladimir BUL 2066.9 534.4
## 433 1 5 Smith Nathan CAN 1590.9 414.0
## 434 2 3 Doll Benedikt GER 1628.6 420.7
## 435 3 2 Shipulin Anton RUS 1636.8 444.6
## 436 4 1 Fourcade Martin FRA 1637.2 439.0
## 437 5 11 Boehm Daniel GER 1645.7 426.2
## 438 6 6 Peiffer Arnd GER 1653.0 446.5
## 439 7 7 Lindstroem Fredrik SWE 1656.6 423.2
## 440 8 4 Rastorgujevs Andrejs LAT 1685.9 461.0
## 441 9 15 Slesingr Michal CZE 1705.7 400.1
## 442 10 18 Fak Jakov SLO 1716.3 395.9
## 443 11 8 Fourcade Simon FRA 1697.4 459.5
## 444 11 50 Boe Tarjei NOR 1715.8 400.4
## 445 13 19 Weger Benjamin SUI 1714.2 438.4
## 446 14 57 Hofer Lukas ITA 1716.3 430.4
## 447 15 25 Chepelin Vladimir BLR 1712.2 432.9
## 448 16 36 Semenov Sergii UKR 1718.4 420.2
## 449 17 21 Nordgren Leif USA 1703.4 404.0
## 450 18 23 Graf Florian GER 1714.4 407.4
## 451 19 22 Eberhard Julian AUT 1734.6 437.2
## 452 20 12 Beatrix Jean Guillaume FRA 1707.5 447.8
## 453 21 40 Malyshko Dmitry RUS 1734.4 435.6
## 454 22 51 Bailey Lowell USA 1721.9 424.0
## 455 23 30 Green Brendan CAN 1725.3 408.4
## 456 24 53 Mesotitsch Daniel AUT 1739.0 415.6
## 457 25 26 Lesser Erik GER 1735.6 485.7
## 458 26 31 Joller Ivan SUI 1729.9 427.2
## 459 27 9 Bjoerndalen Ole Einar NOR 1740.3 410.7
## 460 28 44 Slepov Alexey RUS 1758.8 446.0
## 461 29 24 Volkov Alexey RUS 1742.3 458.7
## 462 30 43 Roesch Michael BEL 1745.5 454.9
## 463 31 10 Kuehn Johannes GER 1760.9 503.4
## 464 32 20 Anev Krasimir BUL 1759.6 406.9
## 465 33 34 Iliev Vladimir BUL 1776.7 423.6
## 466 34 17 Dolder Mario SUI 1760.5 457.0
## 467 35 48 Eder Simon AUT 1800.4 459.1
## 468 36 33 Garanichev Evgeniy RUS 1799.5 452.1
## 469 37 27 Koiv Kauri EST 1789.3 466.4
## 470 38 41 Zhyrnyi Oleksandr UKR 1798.3 440.4
## 471 39 35 Grossegger Sven AUT 1799.0 482.0
## 472 40 37 Bauer Klemen SLO 1810.5 433.5
## 473 41 14 Tsvetkov Maxim RUS 1807.9 455.4
## 474 42 38 Moravec Ondrej CZE 1817.7 413.3
## 475 43 54 Windisch Dominik ITA 1826.4 400.6
## 476 44 60 Lapshin Timofei RUS 1817.2 422.7
## 477 45 28 Kazar Matej SVK 1833.4 455.4
## 478 46 29 Liadov Yuryi BLR 1841.9 456.3
## 479 47 59 Birkeland Lars Helge NOR 1836.9 462.1
## 480 48 52 Pryma Artem UKR 1843.5 458.4
## 481 49 32 Wiestner Serafin SUI 1855.6 500.0
## 482 50 56 Krcmar Michal CZE 1854.2 427.3
## 483 51 58 L'Abee-Lund Henrik NOR 1855.2 425.5
## 484 52 45 Abasheu Dzmitry BLR 1868.0 435.8
## 485 53 55 Burke Tim USA 1881.2 462.1
## 486 54 49 Hiidensalo Olli FIN 1890.8 469.3
## 487 55 47 Gjermundshaug Vegard NOR 1890.3 494.8
## 488 1 16 Boe Johannes Thingnes NOR 1014.1 527.7
## 489 2 12 Smith Nathan CAN 1021.7 527.7
## 490 3 38 Boe Tarjei NOR 1032.5 528.2
## 491 4 41 Fourcade Simon FRA 1034.7 547.0
## 492 5 36 Lesser Erik GER 1036.8 537.4
## 493 6 11 Garanichev Evgeniy RUS 1041.8 552.1
## 494 7 10 Slesingr Michal CZE 1047.4 527.5
## 495 8 4 Iliev Vladimir BUL 1033.4 513.1
## 496 9 23 Moravec Ondrej CZE 1048.5 555.3
## 497 10 39 Doll Benedikt GER 1055.8 559.7
## 498 11 43 Soukup Jaroslav CZE 1036.4 528.8
## 499 12 25 Fourcade Martin FRA 1061.8 575.1
## 500 13 7 Weger Benjamin SUI 1063.2 544.6
## 501 14 17 Fak Jakov SLO 1069.1 556.7
## 502 15 5 Burke Tim USA 1063.4 542.4
## 503 16 21 Liadov Yuryi BLR 1061.7 566.1
## 504 17 40 Bailey Lowell USA 1058.0 543.7
## 505 18 28 Shipulin Anton RUS 1066.6 551.4
## 506 19 34 Bjoerndalen Ole Einar NOR 1069.9 558.0
## 507 20 26 Lindstroem Fredrik SWE 1077.7 586.2
## 508 21 18 Green Brendan CAN 1064.9 556.2
## 509 21 54 Roesch Michael BEL 1050.0 530.2
## 510 23 14 Windisch Dominik ITA 1077.9 541.7
## 511 24 2 Hofer Lukas ITA 1079.9 569.3
## 512 25 58 De Lorenzi Christian ITA 1061.0 548.8
## 513 26 6 Semenov Sergii UKR 1091.2 566.9
## 514 27 31 Lapshin Timofei RUS 1086.4 567.8
## 515 28 3 Dolder Mario SUI 1073.1 572.6
## 516 29 53 Wiestner Serafin SUI 1093.6 553.3
## 517 30 27 Peiffer Arnd GER 1085.0 575.0
## 518 31 57 Lessing Roland EST 1070.1 527.3
## 519 32 51 Puchianu Cornel ROU 1084.4 548.3
## 520 33 48 Kazar Matej SVK 1083.9 570.3
## 521 34 37 Malyshko Dmitry RUS 1088.9 519.2
## 522 35 59 L'Abee-Lund Henrik NOR 1075.0 544.8
## 523 36 8 Svendsen Emil Hegle NOR 1105.2 557.9
## 524 36 46 Joller Ivan SUI 1092.8 561.1
## 525 38 29 Fillon Maillet Quentin FRA 1089.7 585.0
## 526 39 30 Landertinger Dominik AUT 1096.0 566.1
## 527 39 42 Beatrix Jean Guillaume FRA 1096.3 599.7
## 528 41 35 Mesotitsch Daniel AUT 1101.2 554.3
## 529 42 1 Rastorgujevs Andrejs LAT 1107.4 568.0
## 530 43 9 Chepelin Vladimir BLR 1110.4 548.2
## 531 44 50 Eberhard Julian AUT 1125.9 561.1
## 532 45 22 Nordgren Leif USA 1106.6 610.4
## 533 46 19 Eder Simon AUT 1121.7 583.5
## 534 47 15 Bauer Klemen SLO 1127.6 588.8
## 535 48 56 Zhyrnyi Oleksandr UKR 1107.9 551.8
## 536 49 24 Pidruchnyi Dmytro UKR 1105.3 557.8
## 537 50 55 Gow Scott CAN 1102.1 566.4
## 538 51 70 Kauppinen Jarkko FIN 1091.7 577.5
## 539 52 13 Anev Krasimir BUL 1127.9 624.8
## 540 53 89 Koiv Kauri EST 1112.9 582.7
## 541 54 61 Toivanen Ahti FIN 1111.5 575.3
## 542 55 97 Doherty Sean USA 1128.2 557.1
## 543 56 47 Dyuzhev Dmitriy BLR 1130.4 590.4
## 544 57 64 Zlatev Ivan BUL 1139.2 590.0
## 545 58 120 Plywaczyk Krzysztof POL 1123.7 610.4
## 546 59 33 Krcmar Michal CZE 1155.3 581.2
## 547 60 88 Kaukenas Tomas LTU 1134.6 608.2
## 548 61 108 Buta George ROU 1133.8 611.7
## 549 62 32 Pryma Artem UKR 1157.6 621.7
## 550 63 68 Szczurek Lukasz POL 1144.8 581.8
## 551 64 52 Ermits Kalev EST 1158.8 567.2
## 552 65 62 Otcenas Martin SVK 1148.3 603.6
## 553 66 102 Maric Janez SLO 1159.5 641.5
## 554 67 44 Kobonoki Tsukasa JPN 1155.7 604.2
## 555 68 80 Dombrovski Karol LTU 1148.3 620.7
## 556 69 110 Strolia Vytautas LTU 1150.1 607.4
## 557 70 99 Abasheu Dzmitry BLR 1162.9 600.2
## 558 71 98 Trsan Rok SLO 1160.6 639.8
## 559 72 60 Armgren Ted SWE 1165.4 638.2
## 560 73 109 Gow Christian CAN 1157.4 608.7
## 561 74 111 Matiasko Miroslav SVK 1165.1 626.8
## 562 75 92 Hasilla Tomas SVK 1148.9 602.0
## 563 76 128 Sinapov Anton BUL 1165.5 581.3
## 564 77 20 Schempp Simon GER 1203.5 608.7
## 565 78 49 Femling Peppe SWE 1187.1 608.1
## 566 79 93 Jackson Lee-Steve GBR 1171.2 607.7
## 567 80 105 Tachizaki Mikito JPN 1174.6 599.9
## 568 81 78 Dixon Scott GBR 1158.7 614.9
## 569 82 69 Pantov Anton KAZ 1157.1 617.7
## 570 83 74 Eriksson Christofer SWE 1199.0 632.7
## 571 84 77 Inomata Kazuya JPN 1198.8 615.3
## 572 85 83 Hiidensalo Olli FIN 1210.0 641.2
## 573 86 100 Braun Maxim KAZ 1162.1 626.2
## 574 87 96 Tang Jinle CHN 1219.9 657.2
## 575 88 73 Ren Long CHN 1235.9 686.0
## 576 89 90 Guzik Grzegorz POL 1227.3 597.1
## 577 90 45 Bormolini Thomas ITA 1210.3 661.1
## 578 91 84 Kim Yonggyu KOR 1205.3 629.8
## 579 92 104 Almoukov Alexei AUS 1215.2 629.3
## 580 93 94 Slotins Roberts LAT 1219.6 656.1
## 581 94 101 Faur Remus ROU 1231.3 648.7
## 582 95 106 Rastic Damir SRB 1237.1 668.5
## 583 96 63 Savitskiy Yan KAZ 1247.0 670.2
## 584 97 91 Jun Jeuk KOR 1230.8 630.8
## 585 98 75 Angelis Apostolos GRE 1249.2 638.4
## 586 99 86 Langer Thorsten BEL 1211.9 616.0
## 587 100 124 Kim Jongmin KOR 1238.3 638.2
## 588 101 118 Danila Marian Marcel ROU 1267.3 670.8
## 589 102 103 Gombos Karoly HUN 1270.5 666.4
## 590 103 126 Gronman Tuomas FIN 1286.5 703.8
## 591 104 107 Hodzic Edin SRB 1245.8 648.6
## 592 105 125 Lee Suyoung KOR 1289.5 704.1
## 593 106 127 Praulitis Toms LAT 1273.1 690.7
## 594 107 85 Petrovic Filip CRO 1281.2 700.4
## 595 108 114 Kane Kevin GBR 1302.6 677.9
## 596 109 123 Suslavicius Rokas LTU 1303.3 648.1
## 597 110 121 Langer Thierry BEL 1335.1 639.2
## 598 111 112 Ustuntas Ahmet TUR 1302.3 691.7
## 599 112 119 Maeda Ryo JPN 1315.7 707.2
## 600 113 129 Podkorytov Vassiliy KAZ 1341.0 791.6
## 601 114 81 Icoski Gjorgji MKD 1318.0 720.5
## 602 115 66 Puzulis Rolands LAT 1336.5 693.5
## 603 116 116 Kyriazis Dimitrios GRE 1309.1 713.6
## 604 117 95 Karamichas Kleanthis GRE 1331.3 657.2
## 605 118 115 Laponder Marcel GBR 1364.4 757.6
## 606 119 82 Lahaye-Goffart Tom BEL 1381.9 702.5
## 607 120 122 Krsmanovic Dejan SRB 1405.9 723.1
## 608 1 34 Fourcade Martin FRA 2341.8 576.3
## 609 2 17 Svendsen Emil Hegle NOR 2345.3 602.7
## 610 3 40 Moravec Ondrej CZE 2373.5 584.8
## 611 4 3 Fourcade Simon FRA 2359.6 598.2
## 612 5 12 Semenov Sergii UKR 2386.2 588.8
## 613 6 69 Bjoerndalen Ole Einar NOR 2386.8 598.1
## 614 7 29 Boe Johannes Thingnes NOR 2402.3 589.8
## 615 8 24 Schempp Simon GER 2422.3 582.2
## 616 9 84 Volkov Alexey RUS 2404.3 621.6
## 617 10 13 Fak Jakov SLO 2444.9 664.9
## 618 11 42 Boehm Daniel GER 2435.1 650.5
## 619 12 76 De Lorenzi Christian ITA 2421.5 602.2
## 620 13 10 Roesch Michael BEL 2449.6 663.0
## 621 14 4 Slesingr Michal CZE 2460.2 637.6
## 622 15 45 Lessing Roland EST 2445.7 594.5
## 623 16 19 Shipulin Anton RUS 2455.8 648.1
## 624 17 31 Liadov Yuryi BLR 2430.9 628.0
## 625 18 22 Lesser Erik GER 2436.5 676.6
## 626 19 2 Anev Krasimir BUL 2471.3 590.6
## 627 20 38 Eder Simon AUT 2492.0 643.7
## 628 21 53 Green Brendan CAN 2492.8 609.4
## 629 22 104 Peiffer Arnd GER 2505.5 718.1
## 630 23 18 Bauer Klemen SLO 2512.5 589.3
## 631 24 65 Bailey Lowell USA 2505.4 598.8
## 632 25 105 Boe Tarjei NOR 2508.1 669.0
## 633 26 75 Krupcik Tomas CZE 2497.0 619.3
## 634 27 56 Iliev Vladimir BUL 2521.1 714.0
## 635 28 47 Landertinger Dominik AUT 2516.8 673.1
## 636 29 126 Grossegger Sven AUT 2533.7 731.7
## 637 30 36 Weger Benjamin SUI 2547.5 666.5
## 638 31 23 Burke Tim USA 2569.6 717.4
## 639 32 43 Maric Janez SLO 2545.1 747.5
## 640 33 101 Nordgren Leif USA 2540.5 662.3
## 641 34 63 Pryma Artem UKR 2548.0 656.8
## 642 35 6 Garanichev Evgeniy RUS 2568.7 713.7
## 643 36 41 Soukup Jaroslav CZE 2568.3 732.8
## 644 37 37 Armgren Ted SWE 2565.7 615.2
## 645 38 92 Lindstroem Fredrik SWE 2578.7 737.9
## 646 39 50 Jackson Lee-Steve GBR 2545.8 690.9
## 647 40 27 Ermits Kalev EST 2573.0 610.8
## 648 41 67 Chepelin Vladimir BLR 2570.8 660.9
## 649 42 54 Kazar Matej SVK 2589.6 662.2
## 650 43 35 Almoukov Alexei AUS 2557.8 659.5
## 651 44 28 Smith Nathan CAN 2623.1 713.9
## 652 45 11 Matiasko Miroslav SVK 2614.8 616.7
## 653 46 60 Szczurek Lukasz POL 2596.8 623.8
## 654 47 125 Doherty Sean USA 2621.5 614.7
## 655 48 8 Rastorgujevs Andrejs LAT 2634.2 645.1
## 656 49 122 Desthieux Simon FRA 2603.1 762.1
## 657 50 7 Hofer Lukas ITA 2650.3 727.1
## 658 51 9 Toivanen Ahti FIN 2620.2 687.9
## 659 52 108 Rusinov Dmytro UKR 2620.3 634.5
## 660 53 94 Braun Maxim KAZ 2619.1 694.5
## 661 54 86 Mesotitsch Daniel AUT 2659.0 723.8
## 662 55 96 Buta George ROU 2643.8 685.1
## 663 56 71 Pantov Anton KAZ 2625.2 642.1
## 664 57 98 Beatrix Jean Guillaume FRA 2602.9 643.4
## 665 58 66 Lapshin Timofei RUS 2645.8 622.5
## 666 59 85 Koiv Kauri EST 2657.1 624.2
## 667 60 103 Tyshchenko Artem UKR 2668.2 758.4
## 668 61 83 Wiestner Serafin SUI 2691.2 739.4
## 669 62 55 Femling Peppe SWE 2674.1 657.9
## 670 63 79 Gow Scott CAN 2678.8 677.3
## 671 64 82 Hiidensalo Olli FIN 2685.7 753.9
## 672 65 124 Gow Christian CAN 2664.5 627.2
## 673 66 99 Strolia Vytautas LTU 2680.1 647.1
## 674 67 51 Puchianu Cornel ROU 2706.6 713.8
## 675 68 110 Arwidson Tobias SWE 2653.4 703.1
## 676 69 20 Kobonoki Tsukasa JPN 2693.8 623.0
## 677 70 33 Sloof Joel NED 2663.5 708.4
## 678 71 14 Plywaczyk Krzysztof POL 2670.5 702.0
## 679 72 25 Faur Remus ROU 2682.8 699.1
## 680 73 32 Kaukenas Tomas LTU 2715.1 612.6
## 681 74 117 Darozhka Aliaksandr BLR 2697.2 682.2
## 682 75 57 Kauppinen Jarkko FIN 2707.1 687.2
## 683 76 127 Podkorytov Vassiliy KAZ 2692.0 785.7
## 684 77 74 Guzik Grzegorz POL 2721.8 753.7
## 685 78 39 Dixon Scott GBR 2700.7 653.6
## 686 79 70 Fillon Maillet Quentin FRA 2721.4 690.5
## 687 80 114 Koivunen Mikael FIN 2665.8 741.7
## 688 81 21 Ren Long CHN 2740.6 770.1
## 689 81 111 Gerdzhikov Dimitar BUL 2734.1 618.0
## 690 83 107 Bormolini Thomas ITA 2736.0 698.7
## 691 84 77 Hodzic Edin SRB 2700.6 683.2
## 692 85 78 Inomata Kazuya JPN 2767.5 689.4
## 693 86 16 Savitskiy Yan KAZ 2732.3 772.9
## 694 87 116 Joller Ivan SUI 2774.9 703.0
## 695 88 87 Otcenas Martin SVK 2789.2 748.5
## 696 89 88 Praulitis Toms LAT 2763.4 662.6
## 697 90 62 Jun Jeuk KOR 2795.4 840.1
## 698 91 64 Windisch Dominik ITA 2821.0 728.1
## 699 92 59 Dolder Mario SUI 2818.0 750.2
## 700 93 72 Dombrovski Karol LTU 2824.6 818.2
## 701 94 30 Gombos Karoly HUN 2791.2 772.7
## 702 95 1 Kim Yonggyu KOR 2827.5 658.1
## 703 96 106 Maeda Ryo JPN 2835.1 733.9
## 704 97 100 Abasheu Dzmitry BLR 2878.7 685.7
## 705 98 97 Langer Thierry BEL 2870.8 716.8
## 706 99 113 Sima Michal SVK 2880.2 828.1
## 707 100 46 Langer Thorsten BEL 2864.5 762.3
## 708 101 93 Oblak Lenart SLO 2912.0 646.5
## 709 102 112 Remmelg Martin EST 2912.2 778.4
## 710 103 44 Slotins Roberts LAT 2956.7 839.2
## 711 104 90 Laponder Marcel GBR 2952.5 722.6
## 712 105 109 Patrijuks Aleksandrs LAT 2955.2 870.5
## 713 106 52 Tachizaki Mikito JPN 3009.1 810.7
## 714 107 26 Ustuntas Ahmet TUR 2964.3 685.5
## 715 108 49 Rastic Damir SRB 3031.6 772.2
## 716 109 89 Zlatev Ivan BUL 3062.1 765.5
## 717 110 115 Lee Suyoung KOR 3080.8 797.8
## 718 111 68 Ustuntas Mehmet TUR 3027.3 786.4
## 719 112 120 Danila Marian Marcel ROU 3119.9 828.5
## 720 113 118 Suslavicius Rokas LTU 3073.6 753.1
## 721 114 119 Kane Kevin GBR 3100.8 791.9
## 722 115 15 Krsmanovic Dejan SRB 3110.4 674.3
## 723 116 61 Angelis Apostolos GRE 3121.1 773.8
## 724 117 80 Stanoeski Toni MKD 3088.0 865.4
## 725 118 91 Kyriazis Dimitrios GRE 3118.6 771.8
## 726 119 95 Kim Jongmin KOR 3176.9 971.2
## 727 120 123 Rastic Ajlan SRB 3195.9 802.6
## 728 1 9 Fak Jakov SLO 1812.5 444.1
## 729 2 8 Moravec Ondrej CZE 1811.8 458.8
## 730 3 7 Boe Tarjei NOR 1810.0 440.0
## 731 4 15 Bjoerndalen Ole Einar NOR 1808.4 462.2
## 732 5 12 Slesingr Michal CZE 1830.6 437.4
## 733 6 1 Boe Johannes Thingnes NOR 1827.0 438.7
## 734 7 5 Shipulin Anton RUS 1827.4 439.4
## 735 8 10 Schempp Simon GER 1822.5 447.4
## 736 9 14 Fourcade Simon FRA 1826.7 480.9
## 737 10 3 Fourcade Martin FRA 1842.8 454.2
## 738 11 11 Garanichev Evgeniy RUS 1835.1 468.3
## 739 12 16 Lindstroem Fredrik SWE 1829.8 458.9
## 740 13 28 Bailey Lowell USA 1833.5 461.9
## 741 14 26 Burke Tim USA 1845.9 470.6
## 742 15 6 Svendsen Emil Hegle NOR 1834.5 460.4
## 743 16 29 Doll Benedikt GER 1851.1 476.6
## 744 17 2 Lesser Erik GER 1845.1 451.0
## 745 18 22 De Lorenzi Christian ITA 1844.2 472.2
## 746 19 13 Eder Simon AUT 1854.8 505.2
## 747 20 20 Liadov Yuryi BLR 1858.9 493.4
## 748 21 23 Green Brendan CAN 1851.9 492.5
## 749 22 25 Peiffer Arnd GER 1875.8 456.3
## 750 23 4 Smith Nathan CAN 1865.9 465.1
## 751 24 30 Landertinger Dominik AUT 1873.2 481.2
## 752 25 18 Iliev Vladimir BUL 1871.3 478.9
## 753 26 21 Roesch Michael BEL 1893.1 494.7
## 754 27 19 Semenov Sergii UKR 1899.2 480.3
## 755 28 24 Soukup Jaroslav CZE 1892.2 473.7
## 756 29 17 Weger Benjamin SUI 1898.7 491.4
## 757 30 27 Lessing Roland EST 1929.3 521.1
## 758 1 5 Lesser Erik GER 1528.3 382.7
## 759 2 18 Shipulin Anton RUS 1560.5 374.8
## 760 3 3 Boe Tarjei NOR 1559.7 382.7
## 761 4 7 Slesingr Michal CZE 1566.5 383.5
## 762 5 19 Bjoerndalen Ole Einar NOR 1580.3 395.3
## 763 6 8 Iliev Vladimir BUL 1578.3 403.1
## 764 7 12 Fourcade Martin FRA 1589.0 393.2
## 765 8 14 Fak Jakov SLO 1605.4 378.0
## 766 9 9 Moravec Ondrej CZE 1606.8 383.6
## 767 10 4 Fourcade Simon FRA 1591.3 423.3
## 768 11 26 Semenov Sergii UKR 1608.9 378.7
## 769 12 46 Eder Simon AUT 1607.5 372.0
## 770 13 2 Smith Nathan CAN 1623.3 398.1
## 771 14 30 Peiffer Arnd GER 1639.7 398.0
## 772 15 39 Landertinger Dominik AUT 1633.9 394.7
## 773 16 21 Green Brendan CAN 1629.0 411.9
## 774 17 16 Liadov Yuryi BLR 1638.3 408.3
## 775 18 11 Soukup Jaroslav CZE 1627.2 380.0
## 776 19 36 Svendsen Emil Hegle NOR 1639.3 396.5
## 777 20 15 Burke Tim USA 1644.8 429.5
## 778 21 25 De Lorenzi Christian ITA 1640.6 398.2
## 779 22 6 Garanichev Evgeniy RUS 1646.6 400.1
## 780 23 22 Roesch Michael BEL 1634.3 434.8
## 781 24 20 Lindstroem Fredrik SWE 1652.0 403.0
## 782 25 42 Rastorgujevs Andrejs LAT 1671.9 378.8
## 783 26 41 Mesotitsch Daniel AUT 1671.2 385.9
## 784 27 31 Lessing Roland EST 1672.7 386.7
## 785 28 10 Doll Benedikt GER 1681.5 442.5
## 786 29 35 L'Abee-Lund Henrik NOR 1679.5 434.4
## 787 30 24 Hofer Lukas ITA 1694.2 409.3
## 788 31 1 Boe Johannes Thingnes NOR 1693.8 430.2
## 789 32 28 Dolder Mario SUI 1694.8 417.6
## 790 33 13 Weger Benjamin SUI 1707.1 403.5
## 791 34 32 Puchianu Cornel ROU 1706.8 407.1
## 792 35 23 Windisch Dominik ITA 1709.4 427.1
## 793 36 17 Bailey Lowell USA 1706.2 419.7
## 794 37 44 Eberhard Julian AUT 1740.0 416.1
## 795 38 43 Chepelin Vladimir BLR 1719.4 406.3
## 796 39 47 Bauer Klemen SLO 1726.0 453.1
## 797 40 27 Lapshin Timofei RUS 1731.0 432.0
## 798 41 40 Beatrix Jean Guillaume FRA 1729.0 468.4
## 799 42 33 Kazar Matej SVK 1755.5 412.0
## 800 43 49 Pidruchnyi Dmytro UKR 1749.8 416.9
## 801 44 48 Zhyrnyi Oleksandr UKR 1753.8 414.8
## 802 45 55 Doherty Sean USA 1754.7 409.5
## 803 46 38 Fillon Maillet Quentin FRA 1769.0 410.5
## 804 47 34 Malyshko Dmitry RUS 1776.5 436.9
## 805 48 56 Dyuzhev Dmitriy BLR 1786.5 427.5
## 806 49 52 Anev Krasimir BUL 1782.7 399.2
## 807 50 29 Wiestner Serafin SUI 1798.5 448.5
## 808 51 45 Nordgren Leif USA 1792.1 434.7
## 809 52 50 Gow Scott CAN 1794.0 399.3
## 810 53 53 Koiv Kauri EST 1792.8 468.0
## 811 54 54 Toivanen Ahti FIN 1794.6 432.4
## 812 55 37 Joller Ivan SUI 1790.8 412.9
## 813 56 60 Kaukenas Tomas LTU 1839.5 448.1
## 814 57 59 Krcmar Michal CZE 1877.7 452.6
## 815 58 51 Kauppinen Jarkko FIN 1900.9 473.9
## 816 59 57 Zlatev Ivan BUL 1938.2 434.9
## 817 60 58 Plywaczyk Krzysztof POL 1948.9 434.1
## 818 1 18 Fak Jakov SLO 1022.9 515.7
## 819 2 29 Schempp Simon GER 1027.2 517.2
## 820 3 2 Beatrix Jean Guillaume FRA 1030.7 517.2
## 821 4 27 Fourcade Martin FRA 1039.0 539.9
## 822 5 10 Slesingr Michal CZE 1042.3 527.3
## 823 6 41 Shipulin Anton RUS 1034.8 525.2
## 824 7 25 Smith Nathan CAN 1039.0 524.8
## 825 8 21 Semenov Sergii UKR 1046.2 531.5
## 826 9 72 Peiffer Arnd GER 1050.6 540.8
## 827 10 28 Boe Johannes Thingnes NOR 1055.1 551.4
## 828 11 34 Boehm Daniel GER 1040.1 527.9
## 829 12 26 Landertinger Dominik AUT 1069.1 551.9
## 830 13 42 Lesser Erik GER 1055.5 550.0
## 831 14 9 Pidruchnyi Dmytro UKR 1058.6 535.2
## 832 15 6 Lindstroem Fredrik SWE 1059.2 522.7
## 833 16 44 Nordgren Leif USA 1060.2 548.6
## 834 17 94 Eliseev Matvey RUS 1051.6 524.5
## 835 18 22 Birnbacher Andreas GER 1054.4 530.2
## 836 19 36 Garanichev Evgeniy RUS 1058.2 542.2
## 837 20 78 Doll Benedikt GER 1075.2 544.6
## 838 21 24 Fillon Maillet Quentin FRA 1063.5 549.8
## 839 22 39 Green Brendan CAN 1076.5 548.8
## 840 23 31 Fourcade Simon FRA 1058.3 550.0
## 841 24 12 Bauer Klemen SLO 1083.2 554.7
## 842 24 43 Soukup Jaroslav CZE 1070.4 558.1
## 843 26 13 Eder Simon AUT 1063.9 546.3
## 844 27 51 Bjoentegaard Erlend NOR 1085.6 547.4
## 845 28 38 Dolder Mario SUI 1079.2 533.3
## 846 29 17 Weger Benjamin SUI 1071.9 550.2
## 847 30 57 Ermits Kalev EST 1059.6 538.1
## 848 31 55 Dyuzhev Dmitriy BLR 1066.3 540.6
## 849 32 56 Krcmar Michal CZE 1084.8 543.9
## 850 33 76 Armgren Ted SWE 1081.6 549.2
## 851 34 71 Desthieux Simon FRA 1081.9 563.8
## 852 35 8 Bjoerndalen Ole Einar NOR 1093.3 563.0
## 853 36 33 Iliev Vladimir BUL 1102.5 547.4
## 854 37 35 Grossegger Sven AUT 1092.7 557.7
## 855 38 4 Burke Tim USA 1107.8 520.4
## 856 39 3 Roesch Michael BEL 1090.2 560.9
## 857 40 19 Tsvetkov Maxim RUS 1096.3 576.2
## 858 41 5 Kazar Matej SVK 1099.1 562.4
## 859 42 1 Moravec Ondrej CZE 1099.0 544.7
## 860 43 23 Svendsen Emil Hegle NOR 1115.5 558.1
## 861 44 83 L'Abee-Lund Henrik NOR 1100.3 580.3
## 862 45 79 Guigonnat Antonin FRA 1100.2 557.9
## 863 46 81 Kaukenas Tomas LTU 1097.3 570.3
## 864 47 37 Liadov Yuryi BLR 1111.1 585.3
## 865 48 14 Anev Krasimir BUL 1107.0 578.1
## 866 49 30 Pryma Artem UKR 1121.0 600.6
## 867 50 16 Chepelin Vladimir BLR 1122.8 584.1
## 868 51 50 Pinter Friedrich AUT 1121.9 577.9
## 869 52 60 Szczurek Lukasz POL 1109.9 553.3
## 870 53 67 Slepov Alexey RUS 1135.2 574.7
## 871 54 86 Davies Macx CAN 1118.1 558.4
## 872 55 80 Reiter Michael AUT 1103.0 578.0
## 873 56 15 Eberhard Julian AUT 1156.9 542.5
## 874 57 47 Doherty Sean USA 1141.8 536.4
## 875 58 7 De Lorenzi Christian ITA 1130.0 602.5
## 876 59 45 Boe Tarjei NOR 1141.7 579.8
## 877 60 69 Tyshchenko Artem UKR 1139.6 585.4
## 878 61 48 Guzik Grzegorz POL 1128.8 593.7
## 879 62 62 Dombrovski Karol LTU 1115.2 583.9
## 880 63 68 Gow Scott CAN 1141.4 552.7
## 881 64 20 Puchianu Cornel ROU 1123.9 556.2
## 882 65 64 Maric Janez SLO 1145.0 575.1
## 883 66 70 Trsan Rok SLO 1141.3 582.6
## 884 67 93 Yaliotnau Raman BLR 1134.3 565.4
## 885 68 82 Remmelg Martin EST 1116.6 576.5
## 886 69 58 Matiasko Miroslav SVK 1136.8 575.5
## 887 70 11 Toivanen Ahti FIN 1155.7 588.7
## 888 71 91 Krupcik Tomas CZE 1153.2 624.3
## 889 72 59 Gerdzhikov Dimitar BUL 1146.7 578.0
## 890 73 63 Martinelli Christian ITA 1144.3 613.7
## 891 74 90 Raatikainen Antti FIN 1138.9 581.7
## 892 75 52 Babikov Anton RUS 1162.3 580.2
## 893 76 73 Koiv Kauri EST 1161.2 593.2
## 894 77 85 Hasilla Tomas SVK 1165.2 615.6
## 895 78 49 Danila Marian Marcel ROU 1153.1 599.0
## 896 79 87 Siemakov Volodymyr UKR 1175.7 549.0
## 897 80 32 Arwidson Tobias SWE 1155.9 589.6
## 898 81 92 Joller Ivan SUI 1186.0 620.3
## 899 82 66 Tachizaki Mikito JPN 1205.7 608.8
## 900 83 75 Gronman Tuomas FIN 1194.2 625.9
## 901 84 54 Rastic Damir SRB 1215.2 650.0
## 902 85 40 Otcenas Martin SVK 1210.4 616.6
## 903 86 74 Wiestner Serafin SUI 1242.3 624.2
## 904 87 53 Sloof Joel NED 1238.5 627.8
## 905 88 84 Femling Peppe SWE 1223.9 590.9
## 906 89 61 Kane Kevin GBR 1236.3 642.6
## 907 90 89 Dixon Scott GBR 1259.7 680.3
## 908 91 46 Praulitis Toms LAT 1226.9 647.4
## 909 92 96 Krsmanovic Dejan SRB 1269.9 633.9
## 910 93 88 Lusa Daumants LAT 1260.4 660.7
## 911 94 65 Patrijuks Aleksandrs LAT 1317.1 660.2
## 912 1 1 Fak Jakov SLO 1861.2 480.8
## 913 2 2 Schempp Simon GER 1862.6 455.8
## 914 3 4 Fourcade Martin FRA 1861.7 475.3
## 915 4 8 Semenov Sergii UKR 1878.7 455.8
## 916 5 7 Smith Nathan CAN 1883.9 459.2
## 917 6 19 Garanichev Evgeniy RUS 1905.9 480.2
## 918 7 18 Birnbacher Andreas GER 1909.9 466.6
## 919 8 13 Lesser Erik GER 1904.5 484.2
## 920 9 9 Peiffer Arnd GER 1921.5 469.6
## 921 10 15 Lindstroem Fredrik SWE 1923.1 470.1
## 922 11 5 Slesingr Michal CZE 1918.9 491.5
## 923 12 10 Boe Johannes Thingnes NOR 1935.0 491.3
## 924 13 23 Fourcade Simon FRA 1947.6 495.5
## 925 14 6 Shipulin Anton RUS 1961.4 467.4
## 926 15 34 Desthieux Simon FRA 2002.6 516.7
## 927 16 3 Beatrix Jean Guillaume FRA 1981.0 505.7
## 928 17 11 Boehm Daniel GER 1985.8 506.8
## 929 18 37 Grossegger Sven AUT 1986.4 498.5
## 930 19 21 Fillon Maillet Quentin FRA 1995.5 496.1
## 931 20 16 Nordgren Leif USA 1996.1 500.7
## 932 21 20 Doll Benedikt GER 2016.1 492.9
## 933 22 48 Anev Krasimir BUL 2003.1 499.7
## 934 23 43 Svendsen Emil Hegle NOR 2001.9 493.0
## 935 24 36 Iliev Vladimir BUL 2021.7 499.1
## 936 25 45 Guigonnat Antonin FRA 2032.3 501.3
## 937 26 29 Weger Benjamin SUI 2038.9 501.8
## 938 27 17 Eliseev Matvey RUS 2012.4 551.3
## 939 28 40 Tsvetkov Maxim RUS 2033.1 489.8
## 940 29 28 Dolder Mario SUI 2043.0 485.3
## 941 30 22 Green Brendan CAN 2023.0 526.3
## 942 31 25 Soukup Jaroslav CZE 2040.0 481.6
## 943 32 26 Eder Simon AUT 2037.2 512.7
## 944 33 32 Krcmar Michal CZE 2047.1 511.0
## 945 34 12 Landertinger Dominik AUT 2051.7 560.2
## 946 35 35 Bjoerndalen Ole Einar NOR 2054.3 468.4
## 947 36 53 Slepov Alexey RUS 2062.6 486.0
## 948 37 38 Burke Tim USA 2070.0 473.7
## 949 38 27 Bjoentegaard Erlend NOR 2071.8 500.2
## 950 39 42 Moravec Ondrej CZE 2082.7 500.3
## 951 40 44 L'Abee-Lund Henrik NOR 2086.7 493.8
## 952 41 56 Eberhard Julian AUT 2106.5 540.7
## 953 42 46 Kaukenas Tomas LTU 2114.6 555.8
## 954 43 49 Pryma Artem UKR 2135.2 497.1
## 955 44 33 Armgren Ted SWE 2126.8 478.7
## 956 45 57 Doherty Sean USA 2133.7 500.8
## 957 46 24 Bauer Klemen SLO 2119.4 526.5
## 958 47 39 Roesch Michael BEL 2090.2 555.3
## 959 48 41 Kazar Matej SVK 2129.3 544.6
## 960 49 30 Ermits Kalev EST 2158.5 494.5
## 961 50 59 Boe Tarjei NOR 2146.7 532.2
## 962 51 51 Pinter Friedrich AUT 2165.6 538.8
## 963 52 31 Dyuzhev Dmitriy BLR 2181.0 522.5
## 964 53 52 Szczurek Lukasz POL 2200.4 522.1
## 965 54 54 Davies Macx CAN 2308.9 553.2
## 966 1 27 Fourcade Martin FRA 1289.8 806.9
## 967 2 8 Bjoerndalen Ole Einar NOR 1281.9 830.8
## 968 3 48 Lapshin Timofei RUS 1292.2 844.1
## 969 4 21 Boe Johannes Thingnes NOR 1303.4 860.2
## 970 5 1 Weger Benjamin SUI 1300.6 810.2
## 971 6 19 Rastorgujevs Andrejs LAT 1318.8 827.3
## 972 7 37 Lessing Roland EST 1311.3 830.3
## 973 8 88 Doll Benedikt GER 1318.5 837.1
## 974 9 4 Anev Krasimir BUL 1318.5 815.2
## 975 10 23 Tyshchenko Artem UKR 1320.8 867.2
## 976 11 36 Liadov Yuryi BLR 1321.5 823.5
## 977 12 20 Eder Simon AUT 1322.3 830.5
## 978 13 26 Slesingr Michal CZE 1331.0 857.4
## 979 14 39 Iliev Vladimir BUL 1323.6 852.7
## 980 15 9 Bauer Klemen SLO 1332.9 867.6
## 981 16 3 Fak Jakov SLO 1333.4 818.3
## 982 16 15 Fillon Maillet Quentin FRA 1330.9 849.0
## 983 18 17 Chepelin Vladimir BLR 1329.6 876.8
## 984 19 33 Fourcade Simon FRA 1321.4 870.2
## 985 20 25 Birnbacher Andreas GER 1335.7 834.8
## 986 21 31 Bormolini Thomas ITA 1327.7 841.2
## 987 22 56 Bjoentegaard Erlend NOR 1355.6 882.3
## 988 23 35 Malyshko Dmitry RUS 1345.9 812.8
## 989 24 16 Mesotitsch Daniel AUT 1341.9 882.6
## 990 25 28 Moravec Ondrej CZE 1346.6 850.2
## 991 26 44 Lesser Erik GER 1335.9 880.1
## 992 27 40 Os Alexander NOR 1357.7 879.6
## 993 28 92 Wiestner Serafin SUI 1331.5 854.0
## 994 29 59 Eriksson Christofer SWE 1354.1 868.3
## 995 30 6 Schempp Simon GER 1353.4 863.7
## 996 31 32 Soukup Jaroslav CZE 1348.3 877.4
## 997 32 65 Roesch Michael BEL 1348.0 903.8
## 998 33 12 Windisch Dominik ITA 1355.9 876.7
## 999 34 10 Bailey Lowell USA 1361.2 906.0
## 1000 35 11 Smith Nathan CAN 1369.4 902.1
## 1001 36 13 Boehm Daniel GER 1351.1 833.8
## 1002 37 2 Lindstroem Fredrik SWE 1366.4 850.8
## 1003 38 24 Kazar Matej SVK 1369.5 886.4
## 1004 39 95 Matiasko Miroslav SVK 1378.6 907.6
## 1005 40 80 Volkov Alexey RUS 1370.9 890.0
## 1006 41 82 Pinter Friedrich AUT 1367.8 900.5
## 1007 42 45 Burke Tim USA 1384.3 898.5
## 1008 43 29 Shipulin Anton RUS 1393.3 883.9
## 1009 43 78 Koiv Kauri EST 1377.3 904.5
## 1010 45 38 Dolder Mario SUI 1386.2 894.0
## 1011 46 22 Savitskiy Yan KAZ 1372.3 867.9
## 1012 47 41 Eberhard Tobias AUT 1372.5 892.4
## 1013 48 47 Gow Christian CAN 1401.4 903.9
## 1014 49 73 Bedard Marc Andre CAN 1384.6 895.4
## 1015 50 34 Grossegger Sven AUT 1399.6 863.0
## 1016 51 53 Kauppinen Jarkko FIN 1382.0 925.9
## 1017 52 77 Dombrovski Karol LTU 1370.2 891.1
## 1018 53 43 Otcenas Martin SVK 1413.2 967.5
## 1019 54 90 Davies Macx CAN 1407.5 899.9
## 1020 55 83 Krcmar Michal CZE 1403.2 894.8
## 1021 56 30 Beatrix Jean Guillaume FRA 1383.2 895.1
## 1022 57 49 Hasilla Tomas SVK 1395.1 877.8
## 1023 57 51 Desthieux Simon FRA 1402.3 909.7
## 1024 59 76 Yaliotnau Raman BLR 1421.1 889.4
## 1025 60 42 Arwidson Tobias SWE 1397.0 864.5
## 1026 61 5 Garanichev Evgeniy RUS 1431.2 922.2
## 1027 62 79 Gronman Tuomas FIN 1403.7 874.7
## 1028 63 84 Armgren Ted SWE 1410.3 907.9
## 1029 64 62 Peiffer Arnd GER 1403.0 938.3
## 1030 65 46 De Lorenzi Christian ITA 1433.0 862.7
## 1031 66 91 Zhyrnyi Oleksandr UKR 1431.2 900.2
## 1032 67 93 Christiansen Vetle Sjaastad NOR 1416.5 867.6
## 1033 68 89 Kryuko Viktar BLR 1436.4 906.5
## 1034 69 14 Puchianu Cornel ROU 1447.6 934.1
## 1035 70 63 Tobreluts Indrek EST 1453.2 947.6
## 1036 71 18 Toivanen Ahti FIN 1440.7 953.8
## 1037 72 60 Kilchytskyy Vitaliy UKR 1448.9 934.9
## 1038 73 68 Plywaczyk Krzysztof POL 1423.6 943.3
## 1039 74 50 Joller Ivan SUI 1432.6 935.0
## 1040 75 64 Danila Marian Marcel ROU 1436.4 905.0
## 1041 75 71 Maric Janez SLO 1452.7 945.0
## 1042 77 69 Pantov Anton KAZ 1441.4 899.4
## 1043 78 98 Trifonov Alexandr KAZ 1439.1 926.5
## 1044 79 54 Siemakov Volodymyr UKR 1446.7 919.3
## 1045 80 72 Eberhard Julian AUT 1477.0 876.8
## 1046 81 7 Tsvetkov Maxim RUS 1453.8 881.5
## 1047 82 96 Demetz Maikol ITA 1446.1 943.6
## 1048 83 97 Jouty Baptiste FRA 1462.1 960.6
## 1049 84 52 Femling Peppe SWE 1453.5 1004.3
## 1050 85 85 Slotins Roberts LAT 1475.6 952.3
## 1051 86 70 Zlatev Ivan BUL 1478.2 994.1
## 1052 87 99 Strolia Vytautas LTU 1492.1 967.0
## 1053 88 61 Krupcik Tomas CZE 1502.2 1007.1
## 1054 89 57 Inomata Kazuya JPN 1512.8 974.5
## 1055 90 58 Kane Kevin GBR 1507.8 973.0
## 1056 91 74 Sloof Joel NED 1497.2 944.5
## 1057 92 94 Laponder Marcel GBR 1510.3 964.7
## 1058 93 75 Trsan Rok SLO 1542.2 905.6
## 1059 94 55 Rastic Damir SRB 1573.9 1005.8
## 1060 95 66 Puzulis Rolands LAT 1554.0 1024.1
## 1061 96 81 Oblak Lenart SLO 1551.9 1066.3
## 1062 97 86 Guzik Grzegorz POL 1572.7 921.7
## 1063 98 67 Almoukov Alexei AUS 1579.9 989.5
## 1064 99 87 Krsmanovic Dejan SRB 1679.8 1057.7
## 1065 1 1 Fourcade Martin FRA 2311.4 495.6
## 1066 2 2 Shipulin Anton RUS 2338.2 466.9
## 1067 3 21 Malyshko Dmitry RUS 2350.8 507.1
## 1068 4 16 Anev Krasimir BUL 2353.3 483.1
## 1069 5 14 Slesingr Michal CZE 2366.9 505.0
## 1070 6 26 Rastorgujevs Andrejs LAT 2371.1 484.6
## 1071 7 4 Fak Jakov SLO 2367.4 496.8
## 1072 8 28 Doll Benedikt GER 2370.6 512.4
## 1073 9 18 Lapshin Timofei RUS 2377.4 503.6
## 1074 10 5 Schempp Simon GER 2377.9 504.8
## 1075 11 9 Eder Simon AUT 2386.6 483.4
## 1076 12 15 Lesser Erik GER 2384.0 537.0
## 1077 13 6 Moravec Ondrej CZE 2414.2 534.1
## 1078 14 7 Boe Johannes Thingnes NOR 2431.4 499.6
## 1079 15 27 Lessing Roland EST 2416.1 479.0
## 1080 16 25 Fourcade Simon FRA 2433.6 539.5
## 1081 17 19 Bjoerndalen Ole Einar NOR 2438.3 542.3
## 1082 18 8 Birnbacher Andreas GER 2430.8 502.2
## 1083 19 23 Iliev Vladimir BUL 2435.8 482.9
## 1084 20 11 Lindstroem Fredrik SWE 2437.4 503.5
## 1085 20 24 Smith Nathan CAN 2440.9 537.0
## 1086 22 17 Fillon Maillet Quentin FRA 2430.0 499.8
## 1087 23 10 Garanichev Evgeniy RUS 2479.7 555.9
## 1088 24 22 Tsvetkov Maxim RUS 2473.0 497.2
## 1089 25 13 Weger Benjamin SUI 2484.3 555.3
## 1090 26 29 Tyshchenko Artem UKR 2471.6 490.6
## 1091 27 3 Svendsen Emil Hegle NOR 2459.6 529.9
## 1092 28 30 Liadov Yuryi BLR 2481.5 514.4
## 1093 29 20 Bailey Lowell USA 2579.0 556.0
## 1094 1 17 Fourcade Martin FRA 1039.2 515.6
## 1095 2 20 Moravec Ondrej CZE 1065.5 528.8
## 1096 3 27 Fak Jakov SLO 1066.6 530.4
## 1097 4 10 Slesingr Michal CZE 1074.8 532.9
## 1098 5 21 Garanichev Evgeniy RUS 1066.4 527.8
## 1099 6 18 Shipulin Anton RUS 1081.8 529.8
## 1100 7 25 Svendsen Emil Hegle NOR 1082.8 545.3
## 1101 8 19 Bjoerndalen Ole Einar NOR 1092.1 540.6
## 1102 9 3 Smith Nathan CAN 1086.7 537.2
## 1103 10 32 Eder Simon AUT 1094.9 558.7
## 1104 11 31 Schempp Simon GER 1095.4 550.8
## 1105 12 26 Lesser Erik GER 1096.0 538.0
## 1106 13 6 Rastorgujevs Andrejs LAT 1094.8 532.7
## 1107 14 37 Boehm Daniel GER 1088.0 540.7
## 1108 15 39 Boe Tarjei NOR 1110.8 573.6
## 1109 16 101 Os Alexander NOR 1095.3 532.2
## 1110 17 4 Burke Tim USA 1111.2 548.7
## 1111 18 5 Pryma Artem UKR 1105.3 534.8
## 1112 19 44 Beatrix Jean Guillaume FRA 1118.3 577.1
## 1113 20 23 Malyshko Dmitry RUS 1105.8 559.5
## 1114 21 71 Birnbacher Andreas GER 1109.6 540.9
## 1115 22 41 Bailey Lowell USA 1111.4 535.3
## 1116 23 9 Fourcade Simon FRA 1113.5 575.4
## 1117 24 7 Kazar Matej SVK 1113.2 564.9
## 1118 25 43 Bauer Klemen SLO 1120.2 559.6
## 1119 26 15 Peiffer Arnd GER 1116.6 539.5
## 1120 27 8 Semenov Sergii UKR 1124.0 553.4
## 1121 28 38 Komatz David AUT 1110.3 562.3
## 1122 29 22 Landertinger Dominik AUT 1124.0 557.6
## 1123 30 84 Tsvetkov Maxim RUS 1121.6 564.2
## 1124 31 68 Mesotitsch Daniel AUT 1129.8 543.1
## 1125 32 61 Krupcik Tomas CZE 1119.2 556.5
## 1126 33 40 Hofer Lukas ITA 1120.3 562.0
## 1127 34 48 Puchianu Cornel ROU 1139.6 570.0
## 1128 35 11 Lindstroem Fredrik SWE 1131.1 545.1
## 1129 36 60 Liadov Yuryi BLR 1120.9 570.8
## 1130 37 29 Anev Krasimir BUL 1125.3 544.2
## 1131 38 1 Eberhard Tobias AUT 1124.6 575.1
## 1132 39 2 Boe Johannes Thingnes NOR 1148.5 576.9
## 1133 40 14 Savitskiy Yan KAZ 1142.9 594.6
## 1134 41 45 Lapshin Timofei RUS 1140.9 583.4
## 1135 42 13 Fillon Maillet Quentin FRA 1154.3 583.9
## 1136 43 35 Hasilla Tomas SVK 1138.3 551.1
## 1137 44 47 Christiansen Vetle Sjaastad NOR 1132.3 557.8
## 1138 45 64 Toivanen Ahti FIN 1144.6 569.9
## 1139 46 59 Femling Peppe SWE 1135.9 582.7
## 1140 47 87 Cuenot Gaspard SUI 1148.1 577.0
## 1141 48 83 Krcmar Michal CZE 1153.0 576.4
## 1142 49 98 Graf Florian GER 1140.6 585.2
## 1143 50 79 Nordgren Leif USA 1143.7 578.6
## 1144 51 34 Arwidson Tobias SWE 1132.8 555.0
## 1145 52 28 Chepelin Vladimir BLR 1173.0 633.6
## 1146 53 12 Windisch Dominik ITA 1164.9 599.1
## 1147 54 81 Zhyrnyi Oleksandr UKR 1150.2 566.2
## 1148 55 33 Soukup Jaroslav CZE 1169.0 593.6
## 1149 56 46 Iliev Vladimir BUL 1169.3 618.7
## 1150 57 75 Bormolini Thomas ITA 1152.0 575.0
## 1151 58 94 Grossegger Sven AUT 1151.4 584.9
## 1152 59 52 Desthieux Simon FRA 1171.9 600.3
## 1153 60 99 Bedard Marc Andre CAN 1161.9 591.4
## 1154 61 62 Almoukov Alexei AUS 1145.5 576.2
## 1155 62 36 Green Brendan CAN 1180.3 593.7
## 1156 63 90 Eriksson Christofer SWE 1166.4 587.3
## 1157 64 30 Koiv Kauri EST 1156.4 600.7
## 1158 65 76 Armgren Ted SWE 1170.6 580.4
## 1159 66 42 Pidruchnyi Dmytro UKR 1174.9 620.4
## 1160 67 57 Finello Jeremy SUI 1174.3 596.1
## 1161 68 69 Dombrovski Karol LTU 1173.5 604.6
## 1162 69 56 Sloof Joel NED 1167.9 592.5
## 1163 69 100 Hiidensalo Olli FIN 1192.4 586.4
## 1164 71 78 Joller Ivan SUI 1196.5 592.3
## 1165 72 65 Otcenas Martin SVK 1197.7 617.0
## 1166 73 95 Braun Maxim KAZ 1196.4 613.7
## 1167 74 63 Remmelg Martin EST 1179.4 579.9
## 1168 75 70 Roesch Michael BEL 1173.5 582.0
## 1169 76 89 Ermits Kalev EST 1196.2 558.8
## 1170 77 72 Szczurek Lukasz POL 1183.6 575.0
## 1171 78 50 Trifonov Alexandr KAZ 1177.5 607.3
## 1172 79 54 Kobonoki Tsukasa JPN 1204.5 634.3
## 1173 80 24 Weger Benjamin SUI 1219.1 608.4
## 1174 81 102 De Lorenzi Christian ITA 1199.3 616.4
## 1175 82 96 Budzilovich Dzmitry BLR 1201.1 604.7
## 1176 83 51 Hakala Matti FIN 1196.8 630.8
## 1177 84 86 Danila Marian Marcel ROU 1206.2 616.8
## 1178 85 85 Plywaczyk Krzysztof POL 1205.2 630.3
## 1179 86 67 Darozhka Aliaksandr BLR 1223.5 635.7
## 1180 87 66 Oblak Lenart SLO 1217.3 616.5
## 1181 88 16 Kaukenas Tomas LTU 1232.1 580.7
## 1182 89 93 Currier Russell USA 1254.2 581.7
## 1183 90 49 Puzulis Rolands LAT 1246.6 638.6
## 1184 91 55 Rastic Damir SRB 1241.3 651.9
## 1185 92 97 Patrijuks Aleksandrs LAT 1249.1 597.9
## 1186 93 73 Lobo Escolar Victor ESP 1255.6 624.4
## 1187 94 77 Jackson Lee-Steve GBR 1267.2 626.4
## 1188 95 88 Hodzic Edin SRB 1270.8 613.3
## 1189 96 82 Sima Michal SVK 1278.1 623.5
## 1190 97 80 Zlatev Ivan BUL 1310.8 652.5
## 1191 98 92 Laponder Marcel GBR 1322.2 673.6
## 1192 99 58 Tyshchenko Artem UKR 1385.0 654.9
## 1193 1 4 Svendsen Emil Hegle NOR 2607.4 675.6
## 1194 2 7 Semenov Sergii UKR 2679.9 667.9
## 1195 3 16 Slesingr Michal CZE 2739.5 686.7
## 1196 4 41 Lesser Erik GER 2738.5 692.7
## 1197 5 12 Lindstroem Fredrik SWE 2751.9 748.6
## 1198 6 21 Bjoerndalen Ole Einar NOR 2756.4 648.2
## 1199 7 18 Landertinger Dominik AUT 2787.2 674.5
## 1200 8 6 Boe Johannes Thingnes NOR 2791.8 716.9
## 1201 9 45 Fourcade Simon FRA 2753.8 693.7
## 1202 10 98 Fillon Maillet Quentin FRA 2783.9 766.2
## 1203 11 39 Burke Tim USA 2819.2 674.2
## 1204 12 17 Moravec Ondrej CZE 2766.8 746.9
## 1205 13 44 Windisch Dominik ITA 2797.1 754.5
## 1206 14 28 Anev Krasimir BUL 2814.8 817.4
## 1207 15 20 Garanichev Evgeniy RUS 2850.5 782.0
## 1208 16 34 Peiffer Arnd GER 2841.0 819.0
## 1209 17 3 Weger Benjamin SUI 2865.6 735.2
## 1210 18 51 Tsvetkov Maxim RUS 2858.0 770.6
## 1211 19 97 Bormolini Thomas ITA 2862.9 771.0
## 1212 20 15 Bailey Lowell USA 2880.7 822.6
## 1213 21 38 Arwidson Tobias SWE 2834.5 704.2
## 1214 22 42 Bauer Klemen SLO 2888.7 810.1
## 1215 23 26 Boehm Daniel GER 2880.9 795.8
## 1216 24 14 Fak Jakov SLO 2908.3 801.3
## 1217 25 19 Schempp Simon GER 2881.4 703.3
## 1218 26 87 Finello Jeremy SUI 2894.8 757.0
## 1219 27 27 Beatrix Jean Guillaume FRA 2906.9 730.9
## 1220 28 69 Puchianu Cornel ROU 2893.9 817.3
## 1221 29 33 Boe Tarjei NOR 2912.0 804.3
## 1222 30 37 Iliev Vladimir BUL 2926.2 796.6
## 1223 31 35 Eberhard Tobias AUT 2943.4 800.2
## 1224 32 78 Kobonoki Tsukasa JPN 2891.9 791.1
## 1225 33 36 Soukup Jaroslav CZE 2935.3 894.9
## 1226 34 73 Lessing Roland EST 2933.5 710.7
## 1227 35 95 Birnbacher Andreas GER 2968.8 810.5
## 1228 36 88 Komatz David AUT 2978.5 760.3
## 1229 37 76 Tyshchenko Artem UKR 2961.5 791.5
## 1230 38 61 Toivanen Ahti FIN 2974.6 826.2
## 1231 39 23 Desthieux Simon FRA 2978.8 871.8
## 1232 40 43 Hasilla Tomas SVK 2961.5 738.2
## 1233 41 32 Koiv Kauri EST 2983.2 773.0
## 1234 42 40 Lapshin Timofei RUS 3018.5 811.5
## 1235 43 24 Mesotitsch Daniel AUT 3010.2 792.6
## 1236 44 22 Kazar Matej SVK 2993.9 772.6
## 1237 45 5 Savitskiy Yan KAZ 3007.3 751.7
## 1238 46 96 Krupcik Tomas CZE 2979.9 838.0
## 1239 47 13 Chepelin Vladimir BLR 2998.4 789.1
## 1240 48 25 Hofer Lukas ITA 2965.8 892.4
## 1241 49 30 Green Brendan CAN 3017.4 725.6
## 1242 50 48 Roesch Michael BEL 2993.5 832.5
## 1243 51 63 De Lorenzi Christian ITA 3020.0 766.5
## 1244 52 70 Trifonov Alexandr KAZ 3009.9 790.7
## 1245 53 101 Christiansen Vetle Sjaastad NOR 3027.3 896.8
## 1246 54 8 Smith Nathan CAN 3075.7 792.4
## 1247 55 92 Stegmayr Gabriel SWE 3017.4 751.8
## 1248 56 64 Armgren Ted SWE 3059.5 754.5
## 1249 57 75 Rastic Damir SRB 3045.0 775.8
## 1250 58 29 Malyshko Dmitry RUS 3055.9 777.2
## 1251 59 1 Shipulin Anton RUS 3114.5 724.1
## 1252 60 85 Kilchytskyy Vitaliy UKR 3076.6 713.9
## 1253 61 86 Bedard Marc Andre CAN 3083.4 848.6
## 1254 62 71 Boeuf Alexis FRA 3031.5 860.7
## 1255 63 62 Almoukov Alexei AUS 3081.8 783.0
## 1256 64 66 Grossegger Sven AUT 3119.5 817.9
## 1257 65 74 Puzulis Rolands LAT 3084.1 809.7
## 1258 66 67 Zlatev Ivan BUL 3130.1 731.7
## 1259 67 80 Hakala Matti FIN 3114.4 770.5
## 1260 68 31 Pidruchnyi Dmytro UKR 3101.2 786.9
## 1261 69 11 Eder Simon AUT 3142.6 761.2
## 1262 70 72 Szczurek Lukasz POL 3123.5 725.2
## 1263 71 49 Nordgren Leif USA 3091.9 795.3
## 1264 72 46 Liadov Yuryi BLR 3146.6 905.8
## 1265 73 50 Perras Scott CAN 3123.9 780.8
## 1266 74 94 Currier Russell USA 3171.5 710.8
## 1267 75 56 Graf Florian GER 3174.4 859.1
## 1268 76 81 Tcherezov Ivan RUS 3142.7 724.8
## 1269 77 52 Dombrovski Karol LTU 3163.4 772.1
## 1270 78 93 Plywaczyk Krzysztof POL 3154.2 801.2
## 1271 79 58 Joller Ivan SUI 3182.6 888.4
## 1272 80 79 Krcmar Michal CZE 3174.9 890.5
## 1273 81 10 Fourcade Martin FRA 3099.2 842.6
## 1274 82 9 Kaukenas Tomas LTU 3192.2 757.1
## 1275 83 54 Eriksson Christofer SWE 3226.5 769.4
## 1276 84 59 Birkeland Lars Helge NOR 3257.0 851.9
## 1277 85 53 Otcenas Martin SVK 3235.3 850.1
## 1278 86 84 Matiasko Miroslav SVK 3208.6 853.2
## 1279 87 83 Braun Maxim KAZ 3215.3 888.4
## 1280 88 100 Hodzic Edin SRB 3213.8 835.9
## 1281 89 89 Danila Marian Marcel ROU 3280.0 924.2
## 1282 90 60 Cuenot Gaspard SUI 3299.3 901.0
## 1283 91 57 Darozhka Aliaksandr BLR 3265.4 793.3
## 1284 92 77 Sloof Joel NED 3249.2 882.2
## 1285 93 90 Ermits Kalev EST 3363.7 888.0
## 1286 94 99 Budzilovich Dzmitry BLR 3328.8 812.0
## 1287 95 47 Jackson Lee-Steve GBR 3378.6 784.9
## 1288 96 91 Patrijuks Aleksandrs LAT 3340.5 874.8
## 1289 97 68 Oblak Lenart SLO 3381.2 944.5
## 1290 98 102 Laponder Marcel GBR 3454.9 829.9
## 1291 99 65 Lobo Escolar Victor ESP 3559.4 831.1
## 1292 1 1 Fourcade Martin FRA 1698.4 419.2
## 1293 2 6 Shipulin Anton RUS 1708.8 403.6
## 1294 3 7 Svendsen Emil Hegle NOR 1723.1 424.4
## 1295 4 3 Fak Jakov SLO 1729.0 458.4
## 1296 5 30 Landertinger Dominik AUT 1736.1 423.7
## 1297 6 11 Schempp Simon GER 1735.5 428.9
## 1298 7 22 Birnbacher Andreas GER 1735.1 425.9
## 1299 8 16 Os Alexander NOR 1734.7 427.5
## 1300 9 20 Beatrix Jean Guillaume FRA 1763.0 435.2
## 1301 10 8 Bjoerndalen Ole Einar NOR 1762.5 432.2
## 1302 11 5 Garanichev Evgeniy RUS 1772.7 416.9
## 1303 12 26 Bauer Klemen SLO 1772.1 436.3
## 1304 13 36 Lindstroem Fredrik SWE 1778.5 452.9
## 1305 14 15 Boe Tarjei NOR 1800.5 453.4
## 1306 15 45 Christiansen Vetle Sjaastad NOR 1785.7 427.8
## 1307 16 9 Smith Nathan CAN 1779.0 492.5
## 1308 17 23 Bailey Lowell USA 1799.5 439.7
## 1309 18 27 Peiffer Arnd GER 1803.7 466.1
## 1310 19 4 Slesingr Michal CZE 1807.0 477.0
## 1311 20 2 Moravec Ondrej CZE 1807.7 468.3
## 1312 21 33 Krupcik Tomas CZE 1820.5 420.3
## 1313 22 38 Anev Krasimir BUL 1821.1 427.0
## 1314 23 12 Lesser Erik GER 1833.4 474.2
## 1315 24 10 Eder Simon AUT 1836.6 442.7
## 1316 25 32 Mesotitsch Daniel AUT 1824.7 450.7
## 1317 26 43 Fillon Maillet Quentin FRA 1831.1 436.8
## 1318 27 41 Savitskiy Yan KAZ 1830.4 417.1
## 1319 28 13 Rastorgujevs Andrejs LAT 1851.5 460.0
## 1320 29 31 Tsvetkov Maxim RUS 1848.4 453.8
## 1321 30 40 Boe Johannes Thingnes NOR 1857.5 486.2
## 1322 31 42 Lapshin Timofei RUS 1854.9 443.5
## 1323 32 34 Hofer Lukas ITA 1847.5 480.0
## 1324 33 14 Boehm Daniel GER 1854.5 487.5
## 1325 34 24 Fourcade Simon FRA 1871.4 477.8
## 1326 35 17 Burke Tim USA 1872.3 499.9
## 1327 36 28 Semenov Sergii UKR 1872.0 500.2
## 1328 37 57 Iliev Vladimir BUL 1882.7 445.7
## 1329 38 19 Pryma Artem UKR 1890.8 418.3
## 1330 39 37 Liadov Yuryi BLR 1887.0 437.9
## 1331 40 29 Komatz David AUT 1889.8 428.2
## 1332 41 50 Graf Florian GER 1919.0 475.6
## 1333 42 49 Krcmar Michal CZE 1921.9 457.0
## 1334 43 21 Malyshko Dmitry RUS 1914.0 478.3
## 1335 44 35 Puchianu Cornel ROU 1941.6 468.8
## 1336 45 51 Nordgren Leif USA 1940.1 480.6
## 1337 46 53 Chepelin Vladimir BLR 1964.7 474.2
## 1338 47 59 Grossegger Sven AUT 1953.7 483.7
## 1339 48 55 Zhyrnyi Oleksandr UKR 1961.6 461.8
## 1340 49 52 Arwidson Tobias SWE 1949.4 463.8
## 1341 50 60 Desthieux Simon FRA 1976.3 478.3
## 1342 51 44 Hasilla Tomas SVK 1981.7 486.7
## 1343 52 58 Bormolini Thomas ITA 1997.3 468.5
## 1344 53 54 Windisch Dominik ITA 2028.0 499.6
## 1345 54 47 Femling Peppe SWE 2032.9 480.0
## 1346 55 56 Soukup Jaroslav CZE 2014.7 498.1
## 1347 56 25 Kazar Matej SVK 2044.9 561.1
## 1348 57 39 Eberhard Tobias AUT 2042.9 497.4
## 1349 58 48 Cuenot Gaspard SUI 2058.6 539.3
## 1350 59 46 Toivanen Ahti FIN 2050.0 491.3
## 1351 1 70 Peiffer Arnd GER 1002.9 505.8
## 1352 2 27 Fourcade Martin FRA 1007.7 507.9
## 1353 3 11 Shipulin Anton RUS 1007.8 510.1
## 1354 4 7 Birnbacher Andreas GER 1006.3 501.9
## 1355 5 44 Birkeland Lars Helge NOR 1001.4 504.3
## 1356 6 14 Fillon Maillet Quentin FRA 1021.6 515.4
## 1357 7 6 Moravec Ondrej CZE 1015.9 513.8
## 1358 8 21 Boe Johannes Thingnes NOR 1021.9 532.0
## 1359 9 26 Landertinger Dominik AUT 1038.0 524.8
## 1360 10 33 Garanichev Evgeniy RUS 1019.6 515.2
## 1361 11 100 Doll Benedikt GER 1029.3 528.0
## 1362 12 30 Pidruchnyi Dmytro UKR 1032.7 523.0
## 1363 13 19 Schempp Simon GER 1045.1 527.1
## 1364 14 24 Lesser Erik GER 1032.8 538.2
## 1365 15 13 Semenov Sergii UKR 1041.6 534.2
## 1366 16 43 Dolder Mario SUI 1031.5 523.9
## 1367 17 34 Mesotitsch Daniel AUT 1026.5 521.0
## 1368 18 77 Tsvetkov Maxim RUS 1038.8 530.1
## 1369 19 31 Fak Jakov SLO 1035.6 524.9
## 1370 20 15 Ermits Kalev EST 1045.6 515.0
## 1371 21 25 Beatrix Jean Guillaume FRA 1045.9 518.1
## 1372 22 16 Smith Nathan CAN 1045.6 538.2
## 1373 23 88 Slepov Alexey RUS 1053.4 552.5
## 1374 24 2 Slesingr Michal CZE 1045.1 546.1
## 1375 25 94 Guigonnat Antonin FRA 1047.1 538.7
## 1376 26 1 Weger Benjamin SUI 1050.3 556.0
## 1377 27 23 Iliev Vladimir BUL 1061.9 536.3
## 1378 28 36 Grossegger Sven AUT 1046.6 524.5
## 1379 29 8 Nordgren Leif USA 1050.5 517.6
## 1380 30 47 Boehm Daniel GER 1059.6 537.2
## 1381 31 4 Eder Simon AUT 1065.8 567.7
## 1382 32 48 Fourcade Simon FRA 1077.2 510.3
## 1383 33 60 Desthieux Simon FRA 1066.0 556.1
## 1384 34 3 Lindstroem Fredrik SWE 1056.9 558.3
## 1385 35 45 Malyshko Dmitry RUS 1070.1 540.4
## 1386 36 76 Gow Scott CAN 1076.4 533.6
## 1387 37 50 Chepelin Vladimir BLR 1096.9 580.4
## 1388 38 17 Os Alexander NOR 1055.3 536.2
## 1389 39 40 Green Brendan CAN 1066.8 527.5
## 1390 40 37 Hofer Lukas ITA 1077.7 526.0
## 1391 41 52 Wiestner Serafin SUI 1083.3 525.0
## 1392 42 101 Stenersen Torstein SWE 1056.2 537.5
## 1393 43 20 Lapshin Timofei RUS 1053.3 532.1
## 1394 44 41 Anev Krasimir BUL 1063.6 539.4
## 1395 45 67 Bormolini Thomas ITA 1059.4 536.1
## 1396 46 39 Krcmar Michal CZE 1074.1 560.7
## 1397 47 5 Liadov Yuryi BLR 1080.2 574.3
## 1398 48 28 L'Abee-Lund Henrik NOR 1092.2 570.3
## 1399 49 18 Bauer Klemen SLO 1092.4 541.0
## 1400 50 68 Matiasko Miroslav SVK 1083.2 558.8
## 1401 51 12 Rastorgujevs Andrejs LAT 1088.6 519.5
## 1402 52 29 Roesch Michael BEL 1064.0 550.3
## 1403 53 38 Arwidson Tobias SWE 1059.2 539.8
## 1404 54 75 Krupcik Tomas CZE 1084.2 560.1
## 1405 55 73 Tyshchenko Artem UKR 1088.1 542.1
## 1406 56 62 Waernes Andreas Dahloe NOR 1088.7 576.9
## 1407 57 66 Dyuzhev Dmitriy BLR 1102.1 536.2
## 1408 58 56 Hasilla Tomas SVK 1083.7 552.4
## 1409 59 89 Siemakov Volodymyr UKR 1088.5 557.7
## 1410 60 53 Eberhard Julian AUT 1126.6 538.3
## 1411 61 91 Joller Ivan SUI 1093.5 555.3
## 1412 62 32 Soukup Jaroslav CZE 1094.8 560.5
## 1413 63 80 Bailey Lowell USA 1106.4 580.6
## 1414 64 49 Lessing Roland EST 1103.7 556.6
## 1415 65 9 Puchianu Cornel ROU 1084.8 564.9
## 1416 65 82 Kubaliak Michal SVK 1090.4 550.0
## 1417 67 92 Gow Christian CAN 1096.7 543.6
## 1418 68 42 Burke Tim USA 1119.8 600.8
## 1419 69 81 Abasheu Dzmitry BLR 1106.5 557.1
## 1420 70 58 Armgren Ted SWE 1104.3 581.1
## 1421 71 46 Pryma Artem UKR 1135.2 594.6
## 1422 72 83 Gronman Tuomas FIN 1110.5 572.0
## 1423 73 55 Hiidensalo Olli FIN 1119.1 577.0
## 1424 74 61 Koiv Kauri EST 1117.1 579.1
## 1425 75 78 Dombrovski Karol LTU 1119.9 594.6
## 1426 76 72 Trsan Rok SLO 1132.9 575.8
## 1427 77 98 Sima Michal SVK 1119.1 569.9
## 1428 78 93 Kaukenas Tomas LTU 1129.8 560.7
## 1429 79 35 Femling Peppe SWE 1121.7 556.1
## 1430 80 65 Podkorytov Vassiliy KAZ 1125.5 596.7
## 1431 81 63 Danila Marian Marcel ROU 1139.4 582.1
## 1432 82 97 Szczurek Lukasz POL 1137.6 597.8
## 1433 83 87 Komatz David AUT 1152.1 591.7
## 1434 84 69 Zlatev Ivan BUL 1139.7 583.1
## 1435 85 85 De Lorenzi Christian ITA 1166.4 604.7
## 1436 86 86 Slotins Roberts LAT 1141.8 591.7
## 1437 87 10 Windisch Dominik ITA 1171.9 571.3
## 1438 88 64 Lobo Escolar Victor ESP 1172.6 571.4
## 1439 89 71 Guzik Grzegorz POL 1170.5 560.0
## 1440 90 57 Braun Maxim KAZ 1186.6 576.0
## 1441 91 59 Jackson Lee-Steve GBR 1178.5 598.8
## 1442 92 22 Kobonoki Tsukasa JPN 1170.8 615.2
## 1443 93 51 Kauppinen Jarkko FIN 1164.1 582.3
## 1444 94 74 Puzulis Rolands LAT 1189.5 592.8
## 1445 95 96 Kane Kevin GBR 1159.9 609.4
## 1446 96 79 Rastic Damir SRB 1223.3 626.2
## 1447 97 99 Krsmanovic Dejan SRB 1254.4 618.6
## 1448 1 1 Fourcade Martin FRA 2473.7 626.7
## 1449 2 4 Garanichev Evgeniy RUS 2477.7 625.5
## 1450 3 18 Semenov Sergii UKR 2501.7 635.5
## 1451 4 16 Fak Jakov SLO 2570.6 688.6
## 1452 5 3 Weger Benjamin SUI 2552.6 651.6
## 1453 6 32 Boe Johannes Thingnes NOR 2565.1 644.7
## 1454 7 15 Shipulin Anton RUS 2573.8 631.1
## 1455 8 22 Slesingr Michal CZE 2589.5 639.8
## 1456 9 48 Lesser Erik GER 2580.5 645.7
## 1457 10 67 Tsvetkov Maxim RUS 2584.8 653.9
## 1458 11 14 Birnbacher Andreas GER 2601.3 627.1
## 1459 12 10 Smith Nathan CAN 2608.3 707.1
## 1460 13 13 Lapshin Timofei RUS 2603.2 657.9
## 1461 14 8 Fillon Maillet Quentin FRA 2619.8 697.3
## 1462 15 17 Boehm Daniel GER 2615.0 693.1
## 1463 16 46 Fourcade Simon FRA 2622.4 638.1
## 1464 17 37 Iliev Vladimir BUL 2623.0 654.1
## 1465 18 21 Liadov Yuryi BLR 2620.1 658.6
## 1466 19 36 Chepelin Vladimir BLR 2619.2 764.8
## 1467 20 57 Nordgren Leif USA 2616.4 653.4
## 1468 21 61 Femling Peppe SWE 2625.5 661.6
## 1469 22 6 Rastorgujevs Andrejs LAT 2627.9 728.2
## 1470 23 9 Lindstroem Fredrik SWE 2649.3 710.9
## 1471 24 94 Guigonnat Antonin FRA 2642.7 654.8
## 1472 25 74 Peiffer Arnd GER 2660.7 655.2
## 1473 26 49 Krcmar Michal CZE 2654.4 664.1
## 1474 27 19 Schempp Simon GER 2668.0 700.0
## 1475 28 91 Doll Benedikt GER 2687.4 658.0
## 1476 29 93 Birkeland Lars Helge NOR 2670.8 708.0
## 1477 30 75 L'Abee-Lund Henrik NOR 2668.5 737.0
## 1478 31 29 Eder Simon AUT 2673.1 655.2
## 1479 32 98 Volkov Alexey RUS 2666.5 668.1
## 1480 33 65 Zhyrnyi Oleksandr UKR 2690.6 676.0
## 1481 34 30 Roesch Michael BEL 2681.7 774.8
## 1482 35 5 Beatrix Jean Guillaume FRA 2713.9 769.4
## 1483 36 11 Windisch Dominik ITA 2713.2 646.4
## 1484 37 34 Pryma Artem UKR 2713.0 640.5
## 1485 38 38 Malyshko Dmitry RUS 2701.5 664.3
## 1486 39 43 Bjoentegaard Erlend NOR 2700.2 685.9
## 1487 40 20 Ermits Kalev EST 2715.8 668.3
## 1488 41 44 Grossegger Sven AUT 2724.7 660.8
## 1489 42 35 Landertinger Dominik AUT 2715.5 680.8
## 1490 43 28 Anev Krasimir BUL 2738.2 775.3
## 1491 44 41 Green Brendan CAN 2747.8 785.0
## 1492 45 90 De Lorenzi Christian ITA 2728.2 663.7
## 1493 46 53 Eberhard Julian AUT 2758.8 634.3
## 1494 47 24 Burke Tim USA 2765.5 818.1
## 1495 48 27 Mesotitsch Daniel AUT 2742.9 724.5
## 1496 49 2 Soukup Jaroslav CZE 2747.7 839.6
## 1497 50 40 Hofer Lukas ITA 2774.2 643.3
## 1498 51 79 Szczurek Lukasz POL 2710.8 702.1
## 1499 52 12 Armgren Ted SWE 2786.2 692.9
## 1500 53 83 Joller Ivan SUI 2762.8 677.9
## 1501 54 71 Desthieux Simon FRA 2769.7 736.0
## 1502 55 42 Arwidson Tobias SWE 2761.9 679.8
## 1503 56 39 Tyshchenko Artem UKR 2776.8 747.4
## 1504 57 56 Kauppinen Jarkko FIN 2764.7 691.5
## 1505 58 31 Os Alexander NOR 2769.3 676.7
## 1506 59 85 Dombrovski Karol LTU 2776.2 689.2
## 1507 60 73 Gow Scott CAN 2810.0 677.7
## 1508 61 45 Dolder Mario SUI 2825.4 724.9
## 1509 62 50 Bailey Lowell USA 2819.1 795.3
## 1510 63 88 Komatz David AUT 2842.2 679.2
## 1511 64 51 Dyuzhev Dmitriy BLR 2845.7 721.9
## 1512 65 70 Hasilla Tomas SVK 2830.0 692.1
## 1513 66 64 Krupcik Tomas CZE 2848.6 698.3
## 1514 67 59 Bormolini Thomas ITA 2869.4 730.9
## 1515 68 89 Stegmayr Gabriel SWE 2834.2 707.2
## 1516 69 66 Koiv Kauri EST 2891.1 734.6
## 1517 70 23 Moravec Ondrej CZE 2905.9 839.1
## 1518 71 82 Kubaliak Michal SVK 2844.1 708.0
## 1519 72 63 Podkorytov Vassiliy KAZ 2881.1 694.2
## 1520 73 54 Buta George ROU 2897.4 702.1
## 1521 74 84 Sima Michal SVK 2890.9 764.0
## 1522 75 60 Sloof Joel NED 2868.2 773.5
## 1523 76 26 Kobonoki Tsukasa JPN 2917.9 751.3
## 1524 77 86 Abasheu Dzmitry BLR 2942.9 753.7
## 1525 78 47 Lessing Roland EST 2958.6 669.4
## 1526 79 62 Matiasko Miroslav SVK 2952.9 802.7
## 1527 80 92 Siemakov Volodymyr UKR 2955.5 740.6
## 1528 81 72 Gerdzhikov Dimitar BUL 2953.7 709.7
## 1529 82 58 Kaukenas Tomas LTU 2987.6 801.1
## 1530 83 52 Rastic Damir SRB 2962.9 860.4
## 1531 84 96 Faur Remus ROU 2973.8 716.9
## 1532 85 33 Bauer Klemen SLO 3045.9 767.5
## 1533 86 76 Finello Jeremy SUI 2982.0 831.1
## 1534 87 77 Puzulis Rolands LAT 3003.6 802.7
## 1535 88 95 Braun Maxim KAZ 3040.8 776.7
## 1536 89 69 Guzik Grzegorz POL 3063.8 813.4
## 1537 90 78 Trsan Rok SLO 3055.4 758.4
## 1538 91 81 Gronman Tuomas FIN 3058.6 770.1
## 1539 92 80 Krsmanovic Dejan SRB 3069.8 725.9
## 1540 93 55 Kane Kevin GBR 3051.4 810.8
## 1541 94 87 Praulitis Toms LAT 3244.4 793.9
## 1542 1 7 Shipulin Anton RUS 971.3 481.3
## 1543 2 16 Landertinger Dominik AUT 978.7 483.1
## 1544 3 12 Svendsen Emil Hegle NOR 986.4 493.1
## 1545 4 6 Fourcade Martin FRA 1000.4 508.9
## 1546 5 71 Garanichev Evgeniy RUS 987.7 494.0
## 1547 6 8 Schempp Simon GER 993.0 497.4
## 1548 7 34 Boe Tarjei NOR 995.9 496.1
## 1549 8 39 Fillon Maillet Quentin FRA 1000.6 497.5
## 1550 9 47 Tsvetkov Maxim RUS 1001.9 500.2
## 1551 10 14 Boe Johannes Thingnes NOR 1009.6 528.4
## 1552 11 23 Eder Simon AUT 1009.1 499.5
## 1553 12 5 Windisch Dominik ITA 1013.7 514.2
## 1554 13 43 Boehm Daniel GER 1002.2 496.9
## 1555 14 9 Beatrix Jean Guillaume FRA 1019.4 529.1
## 1556 15 44 Hofer Lukas ITA 1008.0 506.3
## 1557 16 42 Bailey Lowell USA 1007.1 498.9
## 1558 17 46 Iliev Vladimir BUL 1004.6 500.6
## 1559 18 20 Moravec Ondrej CZE 1018.1 493.7
## 1560 19 48 Soukup Jaroslav CZE 1012.1 508.2
## 1561 20 22 Slesingr Michal CZE 1025.1 525.8
## 1562 21 57 Otcenas Martin SVK 1014.4 514.0
## 1563 22 87 Bjoentegaard Erlend NOR 1027.7 521.7
## 1564 23 26 Lindstroem Fredrik SWE 1029.5 528.4
## 1565 24 28 Fak Jakov SLO 1020.7 529.0
## 1566 25 2 Smith Nathan CAN 1026.8 502.9
## 1567 26 24 Burke Tim USA 1033.6 537.1
## 1568 27 10 Weger Benjamin SUI 1034.4 498.8
## 1569 28 63 Desthieux Simon FRA 1036.7 532.5
## 1570 29 27 Malyshko Dmitry RUS 1029.7 529.6
## 1571 30 50 Christiansen Vetle Sjaastad NOR 1026.8 504.5
## 1572 31 19 Mesotitsch Daniel AUT 1040.9 509.3
## 1573 32 30 Anev Krasimir BUL 1015.3 513.0
## 1574 33 15 Lesser Erik GER 1032.5 527.5
## 1575 34 62 Green Brendan CAN 1054.7 527.4
## 1576 35 65 Krcmar Michal CZE 1037.4 522.0
## 1577 36 45 Dolder Mario SUI 1040.0 545.4
## 1578 37 85 Kuehn Johannes GER 1032.7 531.7
## 1579 38 25 Birnbacher Andreas GER 1042.1 540.9
## 1580 39 74 Chepelin Vladimir BLR 1034.1 528.9
## 1581 40 98 Joller Ivan SUI 1036.8 530.7
## 1582 41 33 Fourcade Simon FRA 1050.2 520.3
## 1583 42 31 Kazar Matej SVK 1046.8 509.6
## 1584 43 86 Grossegger Sven AUT 1045.4 523.6
## 1585 44 37 Os Alexander NOR 1041.3 521.6
## 1586 45 4 Lapshin Timofei RUS 1045.2 508.3
## 1587 46 58 Sloof Joel NED 1030.7 516.4
## 1588 46 64 Eberhard Julian AUT 1064.3 539.5
## 1589 48 49 Hiidensalo Olli FIN 1068.8 527.0
## 1590 49 1 Toivanen Ahti FIN 1044.1 537.6
## 1591 50 40 Pidruchnyi Dmytro UKR 1048.9 510.1
## 1592 51 3 Rastorgujevs Andrejs LAT 1070.3 520.6
## 1593 52 97 Claude Florent FRA 1053.3 539.0
## 1594 53 80 Nordgren Leif USA 1055.4 536.9
## 1595 54 61 Wiestner Serafin SUI 1063.7 520.7
## 1596 55 75 Armgren Ted SWE 1048.3 538.5
## 1597 56 29 Puchianu Cornel ROU 1064.3 557.2
## 1598 57 69 Koiv Kauri EST 1048.9 541.6
## 1599 58 94 Krupcik Tomas CZE 1052.0 538.9
## 1600 59 54 Guzik Grzegorz POL 1060.4 538.5
## 1601 60 18 Savitskiy Yan KAZ 1047.7 537.9
## 1602 61 13 Bauer Klemen SLO 1074.6 527.1
## 1603 62 41 Lessing Roland EST 1076.7 497.5
## 1604 63 32 Semenov Sergii UKR 1085.6 553.4
## 1605 64 79 Peiffer Arnd GER 1046.3 517.2
## 1606 65 17 Pryma Artem UKR 1092.3 563.7
## 1607 66 38 Arwidson Tobias SWE 1059.2 547.7
## 1608 67 35 Komatz David AUT 1095.0 516.2
## 1609 67 89 De Lorenzi Christian ITA 1061.1 539.0
## 1610 69 100 Tobreluts Indrek EST 1095.2 549.9
## 1611 70 81 Darozhka Aliaksandr BLR 1076.1 560.2
## 1612 71 70 Podkorytov Vassiliy KAZ 1067.3 538.7
## 1613 72 72 Perras Scott CAN 1109.9 580.8
## 1614 73 91 Budzilovich Dzmitry BLR 1075.1 547.5
## 1615 74 67 Zhyrnyi Oleksandr UKR 1087.9 572.4
## 1616 75 102 Matiasko Miroslav SVK 1097.2 547.9
## 1617 76 78 Eriksson Christofer SWE 1116.5 533.2
## 1618 77 90 Femling Peppe SWE 1091.6 532.2
## 1619 78 96 Hakala Matti FIN 1082.8 560.7
## 1620 79 93 Bedard Marc Andre CAN 1103.1 563.1
## 1621 80 36 Hasilla Tomas SVK 1110.1 547.9
## 1622 81 60 Buta George ROU 1103.6 580.4
## 1623 82 103 Szczurek Lukasz POL 1121.1 568.5
## 1624 83 51 Almoukov Alexei AUS 1109.0 528.6
## 1625 84 56 Kaukenas Tomas LTU 1111.8 571.3
## 1626 85 11 Liadov Yuryi BLR 1125.2 543.2
## 1627 86 95 Trsan Rok SLO 1139.1 592.0
## 1628 87 21 Kobonoki Tsukasa JPN 1114.0 596.0
## 1629 88 68 Maric Janez SLO 1133.6 567.2
## 1630 89 84 Tyshchenko Artem UKR 1125.7 582.3
## 1631 90 76 Partalov Dimitar BUL 1141.0 574.0
## 1632 91 77 Dutto Pietro ITA 1127.3 613.9
## 1633 92 59 Jackson Lee-Steve GBR 1110.6 564.1
## 1634 93 66 Patrijuks Aleksandrs LAT 1150.7 595.1
## 1635 94 82 Dombrovski Karol LTU 1147.7 552.6
## 1636 95 101 Currier Russell USA 1182.6 558.1
## 1637 96 55 Oblak Lenart SLO 1156.3 588.2
## 1638 97 88 Puzulis Rolands LAT 1152.9 561.1
## 1639 98 73 Lobo Escolar Victor ESP 1160.8 574.5
## 1640 99 92 Rastic Damir SRB 1190.4 633.5
## 1641 100 99 Braun Maxim KAZ 1155.6 619.2
## 1642 101 52 Hodzic Edin SRB 1157.0 604.2
## 1643 102 53 Crnkovic Kresimir CRO 1231.3 656.7
## 1644 1 3 Shipulin Anton RUS 1745.6 454.7
## 1645 2 2 Fourcade Martin FRA 1740.1 451.5
## 1646 3 21 Eder Simon AUT 1737.5 429.5
## 1647 4 14 Lindstroem Fredrik SWE 1744.7 437.8
## 1648 5 17 Beatrix Jean Guillaume FRA 1745.5 456.2
## 1649 6 9 Boe Tarjei NOR 1764.5 436.4
## 1650 7 7 Moravec Ondrej CZE 1757.2 435.4
## 1651 8 6 Fak Jakov SLO 1775.9 430.7
## 1652 9 30 Smith Nathan CAN 1774.8 454.4
## 1653 10 13 Birnbacher Andreas GER 1772.0 426.4
## 1654 11 25 Malyshko Dmitry RUS 1774.1 436.3
## 1655 12 23 Fillon Maillet Quentin FRA 1773.1 434.8
## 1656 13 4 Landertinger Dominik AUT 1798.4 465.5
## 1657 14 28 Bjoentegaard Erlend NOR 1798.7 438.1
## 1658 15 19 Tsvetkov Maxim RUS 1804.9 444.0
## 1659 16 12 Boehm Daniel GER 1780.5 443.0
## 1660 17 1 Svendsen Emil Hegle NOR 1798.1 446.9
## 1661 18 22 Anev Krasimir BUL 1785.5 471.4
## 1662 19 27 Windisch Dominik ITA 1815.0 437.7
## 1663 20 5 Schempp Simon GER 1820.2 447.1
## 1664 21 26 Hofer Lukas ITA 1813.6 485.2
## 1665 22 18 Bailey Lowell USA 1823.2 467.0
## 1666 23 8 Boe Johannes Thingnes NOR 1846.5 496.0
## 1667 24 20 Weger Benjamin SUI 1853.3 443.1
## 1668 25 10 Garanichev Evgeniy RUS 1868.4 489.1
## 1669 26 29 Lapshin Timofei RUS 1878.2 481.1
## 1670 27 15 Burke Tim USA 1887.3 507.5
## 1671 28 24 Iliev Vladimir BUL 1886.8 506.7
## 1672 29 16 Slesingr Michal CZE 1911.1 458.7
## 1673 30 11 Lesser Erik GER 2098.0 509.4
## 1674 1 3 Svendsen Emil Hegle NOR 1505.4 369.2
## 1675 2 1 Shipulin Anton RUS 1530.8 373.6
## 1676 3 4 Fourcade Martin FRA 1551.8 382.4
## 1677 4 2 Landertinger Dominik AUT 1605.1 412.7
## 1678 5 18 Moravec Ondrej CZE 1597.3 376.6
## 1679 6 45 Lapshin Timofei RUS 1597.7 374.9
## 1680 7 14 Beatrix Jean Guillaume FRA 1610.6 400.2
## 1681 8 10 Boe Johannes Thingnes NOR 1612.3 380.4
## 1682 9 27 Weger Benjamin SUI 1614.1 373.4
## 1683 10 15 Hofer Lukas ITA 1602.3 407.5
## 1684 11 24 Fak Jakov SLO 1618.1 396.1
## 1685 12 23 Lindstroem Fredrik SWE 1620.9 399.5
## 1686 13 37 Kuehn Johannes GER 1619.7 381.1
## 1687 14 22 Bjoentegaard Erlend NOR 1634.8 395.7
## 1688 15 35 Krcmar Michal CZE 1625.3 406.0
## 1689 16 5 Garanichev Evgeniy RUS 1624.7 381.7
## 1690 17 7 Boe Tarjei NOR 1632.0 377.9
## 1691 18 12 Windisch Dominik ITA 1633.1 425.6
## 1692 19 6 Schempp Simon GER 1625.6 408.5
## 1693 20 41 Fourcade Simon FRA 1625.2 381.1
## 1694 21 26 Burke Tim USA 1647.1 403.1
## 1695 22 25 Smith Nathan CAN 1642.0 424.7
## 1696 23 33 Lesser Erik GER 1647.8 379.8
## 1697 24 43 Grossegger Sven AUT 1643.0 381.8
## 1698 25 28 Desthieux Simon FRA 1648.0 407.5
## 1699 26 17 Iliev Vladimir BUL 1640.3 411.9
## 1700 27 44 Os Alexander NOR 1648.8 381.4
## 1701 28 13 Boehm Daniel GER 1636.5 405.8
## 1702 29 16 Bailey Lowell USA 1646.6 427.3
## 1703 30 31 Mesotitsch Daniel AUT 1645.4 405.8
## 1704 31 32 Anev Krasimir BUL 1653.2 387.7
## 1705 32 42 Kazar Matej SVK 1652.1 381.2
## 1706 33 34 Green Brendan CAN 1662.3 420.6
## 1707 34 29 Malyshko Dmitry RUS 1657.5 384.7
## 1708 35 9 Tsvetkov Maxim RUS 1671.5 420.5
## 1709 36 50 Pidruchnyi Dmytro UKR 1675.3 392.7
## 1710 37 20 Slesingr Michal CZE 1670.4 413.6
## 1711 38 8 Fillon Maillet Quentin FRA 1647.3 380.4
## 1712 39 30 Christiansen Vetle Sjaastad NOR 1666.9 417.0
## 1713 40 21 Otcenas Martin SVK 1679.4 399.4
## 1714 41 11 Eder Simon AUT 1688.2 435.2
## 1715 42 39 Chepelin Vladimir BLR 1707.7 416.0
## 1716 43 55 Armgren Ted SWE 1717.5 414.0
## 1717 44 40 Joller Ivan SUI 1717.7 414.4
## 1718 45 56 Puchianu Cornel ROU 1737.5 390.7
## 1719 46 47 Eberhard Julian AUT 1758.0 376.6
## 1720 47 52 Claude Florent FRA 1751.8 397.9
## 1721 48 19 Soukup Jaroslav CZE 1739.9 423.8
## 1722 49 36 Dolder Mario SUI 1747.9 422.1
## 1723 50 38 Birnbacher Andreas GER 1729.4 484.7
## 1724 51 53 Nordgren Leif USA 1743.1 398.1
## 1725 52 49 Toivanen Ahti FIN 1759.6 409.5
## 1726 53 58 Krupcik Tomas CZE 1758.7 425.4
## 1727 54 51 Rastorgujevs Andrejs LAT 1787.2 414.0
## 1728 55 60 Savitskiy Yan KAZ 1771.1 455.3
## 1729 56 48 Hiidensalo Olli FIN 1760.4 410.8
## 1730 57 59 Guzik Grzegorz POL 1844.4 464.9
## 1731 58 54 Wiestner Serafin SUI 1874.5 475.0
## 1732 59 46 Sloof Joel NED 1893.5 403.6
## 1733 1 25 Boe Johannes Thingnes NOR 985.8 501.4
## 1734 2 71 Schempp Simon GER 1004.5 504.6
## 1735 3 37 Peiffer Arnd GER 1037.2 534.5
## 1736 4 11 Shipulin Anton RUS 1032.3 536.6
## 1737 5 7 Rastorgujevs Andrejs LAT 1037.0 511.3
## 1738 6 14 Doll Benedikt GER 1037.9 542.1
## 1739 7 76 Weger Benjamin SUI 1038.7 515.6
## 1740 8 62 Anev Krasimir BUL 1036.4 523.3
## 1741 9 97 Boehm Daniel GER 1022.6 522.6
## 1742 10 57 Slesingr Michal CZE 1047.4 517.9
## 1743 11 54 Os Alexander NOR 1055.8 555.1
## 1744 12 24 Svendsen Emil Hegle NOR 1038.8 519.5
## 1745 13 69 Moravec Ondrej CZE 1059.8 516.7
## 1746 14 21 Fak Jakov SLO 1046.6 538.8
## 1747 15 23 Bjoerndalen Ole Einar NOR 1052.4 555.4
## 1748 16 79 Green Brendan CAN 1047.9 523.5
## 1749 17 43 Iliev Vladimir BUL 1054.4 525.2
## 1750 18 88 L'Abee-Lund Henrik NOR 1054.5 543.4
## 1751 19 16 Bjoentegaard Erlend NOR 1071.0 522.4
## 1752 20 27 Liadov Yuryi BLR 1049.2 533.8
## 1753 21 30 Lindstroem Fredrik SWE 1064.4 527.2
## 1754 22 52 Fourcade Simon FRA 1068.9 541.4
## 1755 23 12 Garanichev Evgeniy RUS 1055.4 524.2
## 1756 24 70 Beatrix Jean Guillaume FRA 1052.6 540.5
## 1757 25 68 Lesser Erik GER 1041.5 544.8
## 1758 26 72 Fourcade Martin FRA 1057.5 536.2
## 1759 27 18 Gow Scott CAN 1071.2 546.3
## 1760 28 53 Chepelin Vladimir BLR 1063.9 562.3
## 1761 29 48 Tyshchenko Artem UKR 1056.9 536.3
## 1762 30 56 Eder Simon AUT 1071.3 522.9
## 1763 31 49 Soukup Jaroslav CZE 1094.2 592.8
## 1764 32 8 Zhyrnyi Oleksandr UKR 1066.0 560.1
## 1765 32 92 Desthieux Simon FRA 1068.4 551.6
## 1766 34 63 Windisch Dominik ITA 1080.6 560.9
## 1767 35 33 Smith Nathan CAN 1094.6 546.4
## 1768 36 51 Roesch Michael BEL 1080.7 543.0
## 1769 37 80 Fillon Maillet Quentin FRA 1074.2 545.2
## 1770 38 101 Malyshko Dmitry RUS 1074.1 552.0
## 1771 39 20 Lapshin Timofei RUS 1072.3 537.5
## 1772 40 9 De Lorenzi Christian ITA 1072.3 555.5
## 1773 41 65 Bailey Lowell USA 1084.4 561.5
## 1774 42 31 Wiestner Serafin SUI 1108.2 571.6
## 1775 43 59 Kilchytskyy Vitaliy UKR 1097.7 545.0
## 1776 44 93 Krcmar Michal CZE 1094.1 577.5
## 1777 45 5 Pinter Friedrich AUT 1098.1 595.2
## 1778 46 50 Babikov Anton RUS 1093.3 561.8
## 1779 47 85 Bormolini Thomas ITA 1081.5 561.0
## 1780 48 3 Yaliotnau Raman BLR 1109.1 568.5
## 1781 49 61 Landertinger Dominik AUT 1114.6 600.8
## 1782 50 44 Burke Tim USA 1112.0 597.7
## 1783 51 6 Arwidson Tobias SWE 1090.7 569.6
## 1784 52 81 Volkov Alexey RUS 1093.4 545.8
## 1785 53 75 Eriksson Christofer SWE 1104.1 563.1
## 1786 54 47 Grossegger Sven AUT 1102.4 547.9
## 1787 55 77 Otcenas Martin SVK 1095.5 575.1
## 1788 56 1 Puchianu Cornel ROU 1113.5 569.3
## 1789 57 98 Eberhard Julian AUT 1119.3 544.6
## 1790 58 39 Bauer Klemen SLO 1117.2 603.6
## 1791 59 94 Abasheu Dzmitry BLR 1090.3 561.5
## 1792 60 78 Plywaczyk Krzysztof POL 1091.9 558.3
## 1793 61 60 Kauppinen Jarkko FIN 1101.0 564.4
## 1794 62 73 Mesotitsch Daniel AUT 1112.0 572.0
## 1795 63 17 Koiv Kauri EST 1111.2 566.1
## 1796 64 36 Kaukenas Tomas LTU 1132.9 564.4
## 1797 65 38 Siemakov Volodymyr UKR 1116.1 594.2
## 1798 66 83 Pantov Anton KAZ 1116.4 579.2
## 1799 66 84 Sloof Joel NED 1105.9 567.7
## 1800 68 64 Birnbacher Andreas GER 1152.0 593.4
## 1801 69 46 Buta George ROU 1138.5 581.8
## 1802 70 40 Braun Maxim KAZ 1129.5 595.7
## 1803 71 41 Remmelg Martin EST 1135.4 609.6
## 1804 72 4 Cuenot Gaspard SUI 1143.4 620.3
## 1805 73 89 Rusinov Dmytro UKR 1137.3 576.7
## 1806 74 15 Matiasko Miroslav SVK 1142.8 611.3
## 1807 75 91 Dolder Mario SUI 1154.0 588.4
## 1808 76 82 Maric Janez SLO 1138.5 592.8
## 1809 77 42 Lobo Escolar Victor ESP 1159.6 589.9
## 1810 77 95 Guzik Grzegorz POL 1135.7 573.6
## 1811 79 22 Zlatev Ivan BUL 1130.2 610.7
## 1812 80 102 Doherty Sean USA 1122.4 584.9
## 1813 81 96 Gow Christian CAN 1124.0 567.7
## 1814 82 13 Jouty Baptiste FRA 1146.9 606.6
## 1815 83 35 Toivanen Ahti FIN 1160.4 558.3
## 1816 84 10 Trsan Rok SLO 1158.1 600.7
## 1817 85 90 Armgren Ted SWE 1159.8 605.3
## 1818 86 26 Kazar Matej SVK 1183.6 600.3
## 1819 87 86 Podkorytov Vassiliy KAZ 1152.5 596.3
## 1820 88 74 Laponder Marcel GBR 1153.4 590.7
## 1821 89 28 Hofer Lukas ITA 1189.8 563.5
## 1822 90 67 Almoukov Alexei AUS 1167.4 611.3
## 1823 91 55 Ermits Kalev EST 1185.7 605.4
## 1824 92 100 Hakala Matti FIN 1176.4 634.9
## 1825 93 99 Hasilla Tomas SVK 1178.2 639.9
## 1826 94 45 Inomata Kazuya JPN 1187.1 638.4
## 1827 95 34 Krsmanovic Dejan SRB 1200.5 595.9
## 1828 96 87 Dokl Peter SLO 1190.4 614.8
## 1829 97 2 Strolia Vytautas LTU 1220.8 635.6
## 1830 98 32 Kane Kevin GBR 1238.3 599.9
## 1831 99 58 Rastic Damir SRB 1322.5 602.9
## 1832 1 4 Schempp Simon GER 1752.9 440.8
## 1833 2 22 Fillon Maillet Quentin FRA 1754.1 440.4
## 1834 3 9 Slesingr Michal CZE 1758.3 440.9
## 1835 4 3 Svendsen Emil Hegle NOR 1755.4 429.6
## 1836 5 17 Bjoerndalen Ole Einar NOR 1760.5 430.3
## 1837 6 2 Shipulin Anton RUS 1774.6 458.5
## 1838 7 21 Beatrix Jean Guillaume FRA 1775.2 460.6
## 1839 8 10 Eder Simon AUT 1771.8 459.4
## 1840 9 26 Peiffer Arnd GER 1779.0 435.9
## 1841 10 6 Boe Johannes Thingnes NOR 1767.7 438.2
## 1842 11 11 Garanichev Evgeniy RUS 1783.0 454.8
## 1843 12 7 Moravec Ondrej CZE 1781.6 455.4
## 1844 13 20 Lapshin Timofei RUS 1782.0 449.4
## 1845 14 12 Lindstroem Fredrik SWE 1790.9 446.9
## 1846 15 28 Os Alexander NOR 1809.8 463.6
## 1847 16 13 Birnbacher Andreas GER 1798.5 466.2
## 1848 17 24 Fourcade Simon FRA 1810.5 453.8
## 1849 18 29 Green Brendan CAN 1811.4 464.0
## 1850 19 30 L'Abee-Lund Henrik NOR 1819.4 482.3
## 1851 20 27 Doll Benedikt GER 1839.7 505.6
## 1852 21 1 Fourcade Martin FRA 1835.9 441.2
## 1853 22 16 Boehm Daniel GER 1819.1 502.1
## 1854 23 15 Lesser Erik GER 1836.6 493.8
## 1855 24 5 Fak Jakov SLO 1844.4 477.6
## 1856 25 18 Malyshko Dmitry RUS 1835.0 472.9
## 1857 26 14 Weger Benjamin SUI 1858.3 465.3
## 1858 27 8 Anev Krasimir BUL 1857.1 460.2
## 1859 28 25 Bailey Lowell USA 1875.8 479.5
## 1860 29 19 Rastorgujevs Andrejs LAT 1918.5 516.2
## 1861 30 23 Iliev Vladimir BUL 1918.9 502.1
## 1862 1 16 Schempp Simon GER 951.1 473.6
## 1863 2 45 Tsvetkov Maxim RUS 952.7 475.6
## 1864 3 28 Boe Tarjei NOR 963.6 485.4
## 1865 4 61 Beatrix Jean Guillaume FRA 957.0 478.7
## 1866 5 34 Shipulin Anton RUS 964.0 492.7
## 1867 6 13 Eder Simon AUT 956.7 485.8
## 1868 7 7 Anev Krasimir BUL 963.7 482.2
## 1869 8 48 Boe Johannes Thingnes NOR 981.2 490.6
## 1870 9 21 Peiffer Arnd GER 969.1 483.4
## 1871 10 38 Fourcade Simon FRA 963.0 484.1
## 1872 11 29 Doll Benedikt GER 985.5 486.2
## 1873 12 6 Hofer Lukas ITA 977.2 505.8
## 1874 13 3 Landertinger Dominik AUT 990.1 496.8
## 1875 14 20 Slepov Alexey RUS 988.8 499.4
## 1876 15 27 Fak Jakov SLO 986.3 507.8
## 1877 16 70 De Lorenzi Christian ITA 977.6 494.3
## 1878 17 39 Burke Tim USA 990.2 509.0
## 1879 18 43 Garanichev Evgeniy RUS 994.3 494.7
## 1880 19 46 Windisch Dominik ITA 994.8 500.1
## 1881 20 2 Semenov Sergii UKR 984.4 504.6
## 1882 21 42 Krcmar Michal CZE 999.8 510.9
## 1883 22 53 Eberhard Julian AUT 1015.4 492.8
## 1884 23 14 Bjoerndalen Ole Einar NOR 996.5 480.4
## 1885 24 47 Kazar Matej SVK 995.4 512.1
## 1886 25 31 Zhyrnyi Oleksandr UKR 1000.4 512.8
## 1887 26 51 Kilchytskyy Vitaliy UKR 1002.3 495.8
## 1888 27 22 Svendsen Emil Hegle NOR 1013.2 542.0
## 1889 28 24 Fourcade Martin FRA 1006.9 497.2
## 1890 29 37 Iliev Vladimir BUL 1008.2 524.2
## 1891 30 35 Soukup Jaroslav CZE 1004.7 498.9
## 1892 31 106 Babikov Anton RUS 995.0 510.5
## 1893 32 18 Bailey Lowell USA 1007.4 524.7
## 1894 32 85 Pryma Artem UKR 1007.8 507.7
## 1895 34 5 Weger Benjamin SUI 1023.6 503.6
## 1896 34 59 Lesser Erik GER 1027.8 505.1
## 1897 36 10 Rastorgujevs Andrejs LAT 1009.2 532.9
## 1898 37 12 Slesingr Michal CZE 1012.7 528.6
## 1899 38 60 Krupcik Tomas CZE 1011.5 527.6
## 1900 39 30 Chepelin Vladimir BLR 1026.5 513.1
## 1901 40 41 Wiestner Serafin SUI 1028.1 532.0
## 1902 41 23 Birnbacher Andreas GER 1013.5 486.4
## 1903 42 82 L'Abee-Lund Henrik NOR 1006.6 507.5
## 1904 43 80 Nordgren Leif USA 1008.7 519.7
## 1905 44 17 Pidruchnyi Dmytro UKR 1016.7 513.4
## 1906 45 11 Green Brendan CAN 1027.5 515.9
## 1907 46 83 Guigonnat Antonin FRA 1029.8 534.6
## 1908 47 15 Yaliotnau Raman BLR 1028.5 535.3
## 1909 48 50 Dyuzhev Dmitriy BLR 1033.0 515.0
## 1910 49 94 Doherty Sean USA 1010.4 505.3
## 1911 50 79 Dombrovski Karol LTU 1018.7 533.7
## 1912 51 8 Desthieux Simon FRA 1032.7 523.9
## 1913 52 25 Zahkna Rene EST 1023.1 527.0
## 1914 52 68 Podkorytov Vassiliy KAZ 1019.8 525.8
## 1915 54 9 Moravec Ondrej CZE 1052.8 492.8
## 1916 55 101 Vaclavik Adam CZE 1039.1 500.1
## 1917 56 1 Fillon Maillet Quentin FRA 1034.6 512.8
## 1918 57 77 Armgren Ted SWE 1018.7 524.2
## 1919 58 19 Smith Nathan CAN 1039.8 514.1
## 1920 58 49 Grossegger Sven AUT 1031.8 501.0
## 1921 60 95 Oblak Lenart SLO 1020.4 516.7
## 1922 61 87 Pantov Anton KAZ 1033.7 532.7
## 1923 62 26 Nelin Jesper SWE 1043.4 507.1
## 1924 63 64 Roesch Michael BEL 1030.8 539.6
## 1925 64 55 Hasilla Tomas SVK 1032.1 529.9
## 1926 65 86 Komatz David AUT 1044.5 518.6
## 1927 66 40 Savitskiy Yan KAZ 1035.5 542.2
## 1928 67 33 Bjoentegaard Erlend NOR 1066.2 541.5
## 1929 68 74 Szczurek Lukasz POL 1035.1 519.0
## 1930 69 36 Davies Macx CAN 1052.5 531.0
## 1931 70 100 Kuehn Johannes GER 1077.5 575.5
## 1932 71 91 Lessing Roland EST 1054.5 532.1
## 1933 72 67 Kletcherov Michail BUL 1062.1 534.4
## 1934 73 44 Buta George ROU 1040.5 540.3
## 1935 74 66 Trsan Rok SLO 1048.8 531.5
## 1936 75 4 Otcenas Martin SVK 1058.6 555.1
## 1937 76 93 Matiasko Miroslav SVK 1054.0 556.1
## 1938 77 71 Volkov Alexey RUS 1067.6 557.2
## 1939 78 69 Dolder Mario SUI 1063.3 548.2
## 1940 79 81 Strolia Vytautas LTU 1062.7 524.6
## 1941 80 89 Jaeger Martin SUI 1066.5 553.8
## 1942 81 76 Puchianu Cornel ROU 1060.9 552.2
## 1943 82 75 Dovzan Miha SLO 1050.8 517.7
## 1944 83 105 Hallstroem Simon SWE 1048.6 521.9
## 1945 84 88 Faur Remus ROU 1042.5 520.1
## 1946 85 72 Ermits Kalev EST 1064.7 514.9
## 1947 86 97 Gow Christian CAN 1054.5 539.6
## 1948 87 52 Finello Jeremy SUI 1057.4 517.9
## 1949 88 63 Gronman Tuomas FIN 1049.6 544.5
## 1950 89 32 Stenersen Torstein SWE 1093.1 561.7
## 1951 90 62 Guzik Grzegorz POL 1077.5 549.5
## 1952 91 102 Gerdzhikov Dimitar BUL 1066.2 514.6
## 1953 92 78 Koiv Kauri EST 1072.9 535.6
## 1954 93 99 Toivanen Ahti FIN 1073.0 557.8
## 1955 94 57 Gow Scott CAN 1102.7 553.8
## 1956 95 103 Plywaczyk Krzysztof POL 1076.4 545.3
## 1957 96 90 Montello Giuseppe ITA 1087.2 548.9
## 1958 97 104 Nagai Junji JPN 1073.7 554.4
## 1959 98 96 Kaukenas Tomas LTU 1106.5 591.0
## 1960 99 84 Bocharnikov Sergey BLR 1120.4 571.5
## 1961 100 73 Orpana Sami FIN 1094.9 575.9
## 1962 101 58 Deksnis Ingus LAT 1102.7 561.5
## 1963 102 54 Tachizaki Mikito JPN 1105.5 548.0
## 1964 103 92 Lusa Daumants LAT 1101.8 542.7
## 1965 104 98 Laponder Marcel GBR 1115.0 587.3
## 1966 105 56 Kim Jongmin KOR 1138.0 589.7
## 1967 106 65 Dixon Scott GBR 1164.4 574.6
## 1968 1 5 Shipulin Anton RUS 1569.6 403.6
## 1969 2 1 Schempp Simon GER 1576.3 415.3
## 1970 3 8 Boe Johannes Thingnes NOR 1588.0 388.3
## 1971 4 28 Fourcade Martin FRA 1589.1 380.1
## 1972 5 9 Peiffer Arnd GER 1607.6 392.5
## 1973 6 6 Eder Simon AUT 1597.9 419.6
## 1974 7 31 Babikov Anton RUS 1613.9 381.7
## 1975 8 3 Boe Tarjei NOR 1614.2 418.6
## 1976 9 13 Landertinger Dominik AUT 1630.1 387.4
## 1977 10 18 Garanichev Evgeniy RUS 1634.8 404.5
## 1978 11 2 Tsvetkov Maxim RUS 1631.2 382.5
## 1979 12 27 Svendsen Emil Hegle NOR 1633.6 396.7
## 1980 13 21 Krcmar Michal CZE 1635.9 392.3
## 1981 14 41 Birnbacher Andreas GER 1636.5 392.6
## 1982 15 15 Fak Jakov SLO 1651.2 416.3
## 1983 16 34 Weger Benjamin SUI 1650.8 407.8
## 1984 17 7 Anev Krasimir BUL 1650.4 436.4
## 1985 18 35 Lesser Erik GER 1665.0 412.9
## 1986 19 20 Semenov Sergii UKR 1665.4 415.8
## 1987 20 14 Slepov Alexey RUS 1680.0 382.2
## 1988 21 36 Rastorgujevs Andrejs LAT 1693.1 430.6
## 1989 22 17 Burke Tim USA 1686.0 412.9
## 1990 23 11 Doll Benedikt GER 1702.9 423.7
## 1991 24 25 Zhyrnyi Oleksandr UKR 1693.7 399.5
## 1992 25 38 Krupcik Tomas CZE 1694.0 431.1
## 1993 26 22 Eberhard Julian AUT 1698.3 402.5
## 1994 27 19 Windisch Dominik ITA 1692.9 454.8
## 1995 28 32 Bailey Lowell USA 1703.3 416.1
## 1996 29 24 Kazar Matej SVK 1700.6 415.7
## 1997 30 23 Bjoerndalen Ole Einar NOR 1696.4 409.6
## 1998 31 45 Green Brendan CAN 1683.7 417.3
## 1999 32 37 Slesingr Michal CZE 1702.2 396.9
## 2000 33 29 Iliev Vladimir BUL 1707.2 435.6
## 2001 34 12 Hofer Lukas ITA 1706.8 446.6
## 2002 35 39 Chepelin Vladimir BLR 1718.2 403.4
## 2003 36 33 Pryma Artem UKR 1713.6 414.9
## 2004 37 40 Wiestner Serafin SUI 1729.2 446.2
## 2005 38 30 Soukup Jaroslav CZE 1732.8 398.0
## 2006 39 26 Kilchytskyy Vitaliy UKR 1730.3 404.6
## 2007 40 52 Zahkna Rene EST 1737.7 421.8
## 2008 41 42 L'Abee-Lund Henrik NOR 1740.0 421.2
## 2009 42 48 Dyuzhev Dmitriy BLR 1747.8 397.7
## 2010 43 58 Smith Nathan CAN 1755.4 413.9
## 2011 44 16 De Lorenzi Christian ITA 1745.5 426.1
## 2012 45 46 Guigonnat Antonin FRA 1769.3 434.8
## 2013 46 54 Moravec Ondrej CZE 1772.6 412.4
## 2014 47 50 Dombrovski Karol LTU 1770.4 416.7
## 2015 48 43 Nordgren Leif USA 1754.9 414.2
## 2016 49 55 Vaclavik Adam CZE 1801.3 423.6
## 2017 50 53 Podkorytov Vassiliy KAZ 1892.1 450.9
## 2018 51 60 Oblak Lenart SLO 1918.4 454.0
## 2019 52 57 Armgren Ted SWE 1933.9 492.3
## 2020 1 6 Fourcade Martin FRA 993.9 487.0
## 2021 2 7 Shipulin Anton RUS 1000.2 497.5
## 2022 3 4 Schempp Simon GER 1004.9 497.1
## 2023 4 36 Eberhard Julian AUT 1041.0 519.0
## 2024 5 14 Landertinger Dominik AUT 1036.0 528.9
## 2025 6 1 Eder Simon AUT 1018.8 512.5
## 2026 7 27 Fourcade Simon FRA 1021.2 510.6
## 2027 8 29 Windisch Dominik ITA 1038.8 504.5
## 2028 9 28 Os Alexander NOR 1031.7 513.4
## 2029 10 2 Garanichev Evgeniy RUS 1034.5 522.2
## 2030 11 39 Peiffer Arnd GER 1028.7 519.1
## 2031 12 44 Lesser Erik GER 1043.7 530.7
## 2032 13 9 Semenov Sergii UKR 1049.0 512.6
## 2033 14 5 Slesingr Michal CZE 1049.0 530.0
## 2034 15 8 Kazar Matej SVK 1056.7 532.9
## 2035 16 15 Rastorgujevs Andrejs LAT 1044.2 535.4
## 2036 17 48 Pryma Artem UKR 1060.2 520.3
## 2037 18 17 Hofer Lukas ITA 1068.0 564.2
## 2038 19 60 Varabei Maksim BLR 1053.1 529.0
## 2039 20 13 Tsvetkov Maxim RUS 1053.6 521.6
## 2040 21 18 Darozhka Aliaksandr BLR 1070.2 549.3
## 2041 22 43 Volkov Alexey RUS 1058.6 522.2
## 2042 23 20 Burke Tim USA 1072.6 554.8
## 2043 24 38 Bailey Lowell USA 1072.9 556.3
## 2044 25 31 Davies Macx CAN 1068.9 537.2
## 2045 26 49 Nordgren Leif USA 1070.6 522.0
## 2046 27 41 Grossegger Sven AUT 1068.5 538.9
## 2047 28 10 Doll Benedikt GER 1078.1 524.0
## 2048 29 59 Abasheu Dzmitry BLR 1076.8 547.1
## 2049 30 30 Zhyrnyi Oleksandr UKR 1065.2 523.7
## 2050 31 22 Smith Nathan CAN 1061.7 521.8
## 2051 32 25 Kilchytskyy Vitaliy UKR 1070.2 524.8
## 2052 33 52 Dolder Mario SUI 1079.5 538.8
## 2053 34 66 Gow Scott CAN 1074.8 527.7
## 2054 35 74 Bormolini Thomas ITA 1064.9 539.5
## 2055 36 45 Christiansen Vetle Sjaastad NOR 1070.7 540.0
## 2056 37 50 Krcmar Michal CZE 1084.8 546.7
## 2057 38 79 Waeger Lorenz AUT 1077.3 545.4
## 2058 39 63 Beatrix Jean Guillaume FRA 1086.3 556.7
## 2059 40 16 Green Brendan CAN 1085.1 550.8
## 2060 41 34 Malyshko Dmitry RUS 1090.8 558.8
## 2061 42 73 Bogetveit Haavard Gutuboe NOR 1086.7 551.3
## 2062 43 23 Desthieux Simon FRA 1094.4 549.8
## 2063 44 24 Birkeland Lars Helge NOR 1076.3 541.9
## 2064 45 21 Fillon Maillet Quentin FRA 1108.9 552.2
## 2065 46 75 Slepov Alexey RUS 1113.7 571.7
## 2066 47 26 Wiestner Serafin SUI 1115.0 547.4
## 2067 48 89 Boehm Daniel GER 1094.3 550.5
## 2068 49 84 Krupcik Tomas CZE 1082.2 551.4
## 2069 50 3 L'Abee-Lund Henrik NOR 1100.7 569.1
## 2070 51 32 Moravec Ondrej CZE 1085.3 556.4
## 2071 52 42 Faur Remus ROU 1102.6 557.3
## 2072 53 70 Kryuko Viktar BLR 1110.9 562.9
## 2073 54 11 Weger Benjamin SUI 1089.8 558.2
## 2074 55 67 Guzik Grzegorz POL 1107.9 528.5
## 2075 56 12 Bauer Klemen SLO 1126.1 565.4
## 2076 57 64 De Lorenzi Christian ITA 1099.6 562.3
## 2077 58 62 Armgren Ted SWE 1119.6 589.2
## 2078 59 35 Stenersen Torstein SWE 1088.4 560.0
## 2079 60 88 Tachizaki Mikito JPN 1103.3 536.8
## 2080 61 68 Gow Christian CAN 1102.9 556.6
## 2081 62 54 Trsan Rok SLO 1132.8 548.6
## 2082 63 33 Matiasko Miroslav SVK 1126.4 590.6
## 2083 64 86 Pantov Anton KAZ 1135.3 541.0
## 2084 65 61 Ermits Kalev EST 1124.7 546.9
## 2085 66 47 Jaeger Martin SUI 1149.0 614.3
## 2086 67 37 Braun Maxim KAZ 1128.3 561.0
## 2087 68 83 Arwidson Tobias SWE 1125.9 561.1
## 2088 69 78 Dovzan Miha SLO 1140.4 554.1
## 2089 70 53 Gronman Tuomas FIN 1143.6 595.3
## 2090 71 69 Szczurek Lukasz POL 1131.4 578.9
## 2091 72 40 Podkorytov Vassiliy KAZ 1152.3 569.4
## 2092 73 65 Strolia Vytautas LTU 1162.6 573.3
## 2093 74 56 Nagai Junji JPN 1156.0 598.9
## 2094 75 55 Puchianu Cornel ROU 1193.2 580.6
## 2095 76 57 Sima Michal SVK 1160.6 572.9
## 2096 77 72 Kubaliak Michal SVK 1150.6 585.8
## 2097 78 76 Pop Gheorghe ROU 1159.2 606.8
## 2098 79 58 Toivanen Ahti FIN 1199.8 621.9
## 2099 80 77 Treier Jan EST 1172.0 594.2
## 2100 81 85 Suslavicius Rokas LTU 1187.2 598.4
## 2101 82 19 Zahkna Rene EST 1176.0 618.2
## 2102 83 81 Hakala Matti FIN 1177.6 582.4
## 2103 84 80 Durtschi Max USA 1243.2 643.4
## 2104 85 46 Laponder Marcel GBR 1207.7 584.8
## 2105 86 51 Kim Jongmin KOR 1237.4 644.4
## 2106 87 82 Dixon Scott GBR 1313.7 665.6
## 2107 1 26 Windisch Dominik ITA 2026.3 502.3
## 2108 2 8 Doll Benedikt GER 2032.7 509.3
## 2109 3 6 Fillon Maillet Quentin FRA 2012.0 508.0
## 2110 4 9 Landertinger Dominik AUT 2035.8 516.7
## 2111 5 25 Rastorgujevs Andrejs LAT 2025.9 510.7
## 2112 6 1 Fourcade Martin FRA 2038.3 496.1
## 2113 7 20 Burke Tim USA 2037.6 516.1
## 2114 8 10 Peiffer Arnd GER 2036.5 513.8
## 2115 9 11 Moravec Ondrej CZE 2037.4 503.2
## 2116 10 29 Kazar Matej SVK 2035.0 509.1
## 2117 11 18 Beatrix Jean Guillaume FRA 2059.2 495.3
## 2118 12 28 Semenov Sergii UKR 2057.3 531.5
## 2119 13 30 Pryma Artem UKR 2050.5 515.7
## 2120 14 5 Eder Simon AUT 2051.3 521.2
## 2121 15 4 Garanichev Evgeniy RUS 2069.1 527.2
## 2122 16 14 Smith Nathan CAN 2054.0 523.5
## 2123 17 2 Shipulin Anton RUS 2083.1 535.0
## 2124 18 12 Fourcade Simon FRA 2083.5 520.0
## 2125 19 13 Desthieux Simon FRA 2080.0 503.3
## 2126 20 16 Bailey Lowell USA 2109.7 532.0
## 2127 21 3 Schempp Simon GER 2128.1 544.2
## 2128 22 21 Slepov Alexey RUS 2135.7 494.6
## 2129 23 23 Grossegger Sven AUT 2113.8 536.7
## 2130 24 27 Os Alexander NOR 2125.4 536.0
## 2131 25 19 Krcmar Michal CZE 2147.4 551.2
## 2132 26 17 Eberhard Julian AUT 2147.0 535.0
## 2133 27 24 Malyshko Dmitry RUS 2148.3 514.0
## 2134 28 15 Lesser Erik GER 2180.2 573.7
## 2135 29 7 Tsvetkov Maxim RUS 2197.1 530.9
## 2136 30 22 Slesingr Michal CZE 2204.3 563.7
## 2137 1 4 Schempp Simon GER 997.6 508.1
## 2138 2 22 Fourcade Martin FRA 1003.5 494.9
## 2139 3 101 Boe Tarjei NOR 1003.2 505.5
## 2140 4 23 Shipulin Anton RUS 1001.7 498.7
## 2141 5 34 Malyshko Dmitry RUS 1009.7 512.0
## 2142 6 14 Garanichev Evgeniy RUS 1007.2 506.9
## 2143 7 65 Eberhard Julian AUT 1028.4 532.5
## 2144 8 46 Doll Benedikt GER 1026.7 532.8
## 2145 9 28 Desthieux Simon FRA 1015.8 522.9
## 2146 10 3 Svendsen Emil Hegle NOR 1027.1 505.5
## 2147 11 21 Eder Simon AUT 1019.4 517.4
## 2148 12 48 Bailey Lowell USA 1016.8 515.7
## 2149 13 39 Landertinger Dominik AUT 1023.8 534.1
## 2150 14 12 Boe Johannes Thingnes NOR 1029.0 530.3
## 2151 15 32 Lindstroem Fredrik SWE 1026.9 522.5
## 2152 16 10 Bjoerndalen Ole Einar NOR 1024.4 531.8
## 2153 17 36 Anev Krasimir BUL 1019.6 516.9
## 2154 18 15 Smith Nathan CAN 1024.9 530.6
## 2155 19 33 Fillon Maillet Quentin FRA 1037.1 512.7
## 2156 20 7 Semenov Sergii UKR 1031.0 512.9
## 2157 21 19 Birnbacher Andreas GER 1041.2 516.7
## 2158 22 52 Fak Jakov SLO 1047.0 530.5
## 2159 23 78 Hofer Lukas ITA 1041.3 541.6
## 2160 24 35 Moravec Ondrej CZE 1045.7 518.8
## 2161 25 74 Doherty Sean USA 1049.1 532.7
## 2162 26 9 Pidruchnyi Dmytro UKR 1059.3 558.2
## 2163 27 69 Beatrix Jean Guillaume FRA 1053.7 555.3
## 2164 28 38 De Lorenzi Christian ITA 1044.2 546.2
## 2165 29 55 Tsvetkov Maxim RUS 1054.8 523.5
## 2166 30 2 Burke Tim USA 1068.2 551.8
## 2167 31 44 Kazar Matej SVK 1048.3 534.9
## 2168 32 27 Bauer Klemen SLO 1063.9 564.8
## 2169 33 73 Gow Scott CAN 1053.1 537.6
## 2170 34 97 Lapshin Timofei RUS 1061.9 542.9
## 2171 35 31 Green Brendan CAN 1068.6 540.4
## 2172 36 11 Rastorgujevs Andrejs LAT 1054.1 559.2
## 2173 37 49 Otcenas Martin SVK 1072.7 571.1
## 2174 38 42 Slepov Alexey RUS 1075.5 523.8
## 2175 39 5 Grossegger Sven AUT 1060.3 547.0
## 2176 40 17 Weger Benjamin SUI 1076.4 557.8
## 2177 41 93 Jaeger Martin SUI 1072.0 568.0
## 2178 42 1 Windisch Dominik ITA 1081.1 537.4
## 2179 43 95 Lesser Erik GER 1063.0 571.2
## 2180 44 68 Puchianu Cornel ROU 1086.9 546.2
## 2181 45 92 Soukup Jaroslav CZE 1076.1 568.6
## 2182 46 41 Boehm Daniel GER 1066.8 558.1
## 2183 47 20 Dyuzhev Dmitriy BLR 1065.2 547.8
## 2184 48 96 Birkeland Lars Helge NOR 1063.2 534.8
## 2185 49 89 Faur Remus ROU 1079.3 559.6
## 2186 50 102 Mesotitsch Daniel AUT 1075.1 551.9
## 2187 51 106 Janik Mateusz POL 1070.9 530.1
## 2188 52 47 Buta George ROU 1073.9 558.7
## 2189 53 43 Braun Maxim KAZ 1070.9 540.1
## 2190 54 91 Ermits Kalev EST 1084.1 556.4
## 2191 55 105 Nordgren Leif USA 1069.0 570.3
## 2192 56 30 Pryma Artem UKR 1104.8 544.8
## 2193 57 79 Koiv Kauri EST 1074.7 537.8
## 2194 58 76 Bischl Matthias GER 1096.5 571.0
## 2195 59 90 Gow Christian CAN 1082.0 540.7
## 2196 60 61 Armgren Ted SWE 1077.6 561.2
## 2197 61 53 Krupcik Tomas CZE 1102.7 569.7
## 2198 62 70 Roesch Michael BEL 1092.5 562.0
## 2199 63 56 Zhyrnyi Oleksandr UKR 1106.0 550.4
## 2200 64 24 Kaukenas Tomas LTU 1100.8 575.1
## 2201 65 18 Nelin Jesper SWE 1100.8 568.9
## 2202 66 26 Fourcade Simon FRA 1100.7 546.9
## 2203 67 62 Guzik Grzegorz POL 1095.3 579.7
## 2204 68 54 Liadov Yuryi BLR 1104.3 562.4
## 2205 69 57 Finello Jeremy SUI 1105.0 558.9
## 2206 70 40 L'Abee-Lund Henrik NOR 1101.5 599.1
## 2207 71 88 Siemakov Volodymyr UKR 1101.1 567.1
## 2208 72 29 Slesingr Michal CZE 1116.5 593.5
## 2209 73 107 Gerdzhikov Dimitar BUL 1094.3 534.1
## 2210 74 71 Hiidensalo Olli FIN 1105.4 576.0
## 2211 75 108 Guigonnat Antonin FRA 1108.8 574.3
## 2212 76 6 Iliev Vladimir BUL 1133.7 586.1
## 2213 77 37 Yaliotnau Raman BLR 1129.1 595.9
## 2214 78 59 Tachizaki Mikito JPN 1118.9 585.9
## 2215 79 94 Chepelin Vladimir BLR 1124.4 589.0
## 2216 80 51 Lessing Roland EST 1108.6 573.4
## 2217 81 67 Gronman Tuomas FIN 1109.9 595.7
## 2218 82 98 Kobonoki Tsukasa JPN 1114.8 563.5
## 2219 83 80 Dombrovski Karol LTU 1128.8 600.0
## 2220 84 58 Sinapov Anton BUL 1131.7 588.4
## 2221 85 45 Wiestner Serafin SUI 1143.3 571.5
## 2222 86 104 Bormolini Thomas ITA 1133.7 584.6
## 2223 87 16 Savitskiy Yan KAZ 1126.4 548.0
## 2224 88 8 Hasilla Tomas SVK 1121.7 612.1
## 2225 89 13 Krcmar Michal CZE 1144.5 559.4
## 2226 90 66 Podkorytov Vassiliy KAZ 1143.0 553.7
## 2227 91 99 Joller Ivan SUI 1132.4 587.2
## 2228 92 85 Remmelg Martin EST 1125.4 605.5
## 2229 93 25 Davies Macx CAN 1150.1 609.6
## 2230 94 82 Dixon Scott GBR 1128.5 586.2
## 2231 95 50 Laponder Marcel GBR 1127.2 572.7
## 2232 96 86 Matiasko Miroslav SVK 1150.6 592.9
## 2233 97 87 Strolia Vytautas LTU 1160.7 605.0
## 2234 98 100 Oblak Lenart SLO 1135.8 577.8
## 2235 99 81 Dovzan Miha SLO 1163.1 610.7
## 2236 100 72 Szczurek Lukasz POL 1147.4 573.8
## 2237 101 84 Hakala Matti FIN 1147.9 586.8
## 2238 102 77 Slotins Roberts LAT 1144.7 595.9
## 2239 103 64 Trsan Rok SLO 1178.2 578.5
## 2240 104 83 Femling Peppe SWE 1148.3 607.2
## 2241 105 75 Rastic Damir SRB 1181.9 653.7
## 2242 106 103 Deksnis Ingus LAT 1189.6 636.3
## 2243 107 63 Kim Jongmin KOR 1219.1 581.6
## 2244 108 60 Morton Damon AUS 1344.2 686.6
## 2245 1 2 Fourcade Martin FRA 1557.1 379.0
## 2246 2 1 Schempp Simon GER 1561.0 388.4
## 2247 3 4 Shipulin Anton RUS 1569.8 382.1
## 2248 4 3 Boe Tarjei NOR 1582.2 403.4
## 2249 5 13 Landertinger Dominik AUT 1589.9 383.6
## 2250 6 16 Bjoerndalen Ole Einar NOR 1607.2 408.7
## 2251 7 10 Svendsen Emil Hegle NOR 1612.8 412.5
## 2252 8 19 Fillon Maillet Quentin FRA 1612.0 383.0
## 2253 9 21 Birnbacher Andreas GER 1612.9 397.6
## 2254 10 22 Fak Jakov SLO 1623.3 406.3
## 2255 11 29 Tsvetkov Maxim RUS 1628.8 391.2
## 2256 12 11 Eder Simon AUT 1628.3 431.1
## 2257 13 12 Bailey Lowell USA 1621.7 395.1
## 2258 14 6 Garanichev Evgeniy RUS 1638.7 413.1
## 2259 15 20 Semenov Sergii UKR 1632.3 391.5
## 2260 16 5 Malyshko Dmitry RUS 1636.9 409.5
## 2261 17 15 Lindstroem Fredrik SWE 1658.4 419.6
## 2262 18 18 Smith Nathan CAN 1656.6 427.2
## 2263 19 8 Doll Benedikt GER 1668.5 440.2
## 2264 20 24 Moravec Ondrej CZE 1667.9 394.1
## 2265 21 23 Hofer Lukas ITA 1649.9 400.0
## 2266 22 9 Desthieux Simon FRA 1665.4 401.3
## 2267 23 14 Boe Johannes Thingnes NOR 1675.9 431.8
## 2268 24 40 Weger Benjamin SUI 1680.1 392.1
## 2269 25 43 Lesser Erik GER 1678.7 400.0
## 2270 26 36 Rastorgujevs Andrejs LAT 1691.8 430.5
## 2271 27 30 Burke Tim USA 1701.0 437.6
## 2272 28 27 Beatrix Jean Guillaume FRA 1706.6 394.2
## 2273 29 38 Slepov Alexey RUS 1717.9 407.7
## 2274 30 7 Eberhard Julian AUT 1731.0 472.2
## 2275 31 39 Grossegger Sven AUT 1744.1 442.7
## 2276 32 32 Bauer Klemen SLO 1740.8 442.5
## 2277 33 28 De Lorenzi Christian ITA 1728.1 418.4
## 2278 34 35 Green Brendan CAN 1747.8 403.0
## 2279 35 25 Doherty Sean USA 1750.0 438.8
## 2280 36 37 Otcenas Martin SVK 1754.8 402.3
## 2281 37 17 Anev Krasimir BUL 1749.1 450.3
## 2282 38 56 Pryma Artem UKR 1768.0 418.2
## 2283 39 59 Gow Christian CAN 1767.5 407.7
## 2284 40 45 Soukup Jaroslav CZE 1766.3 417.4
## 2285 41 34 Lapshin Timofei RUS 1770.5 434.7
## 2286 42 49 Faur Remus ROU 1763.1 412.7
## 2287 43 42 Windisch Dominik ITA 1786.5 437.2
## 2288 44 26 Pidruchnyi Dmytro UKR 1776.0 457.8
## 2289 45 33 Gow Scott CAN 1805.0 404.9
## 2290 46 54 Ermits Kalev EST 1803.7 409.4
## 2291 47 50 Mesotitsch Daniel AUT 1795.4 427.1
## 2292 48 47 Dyuzhev Dmitriy BLR 1820.8 453.0
## 2293 49 58 Bischl Matthias GER 1812.1 452.7
## 2294 50 41 Jaeger Martin SUI 1812.5 431.5
## 2295 51 52 Buta George ROU 1834.4 433.8
## 2296 52 55 Nordgren Leif USA 1822.7 432.3
## 2297 53 31 Kazar Matej SVK 1858.2 432.7
## 2298 54 57 Koiv Kauri EST 1843.8 487.6
## 2299 55 46 Boehm Daniel GER 1890.2 449.6
## 2300 56 53 Braun Maxim KAZ 1895.3 475.1
## 2301 57 60 Armgren Ted SWE 1904.3 441.0
## 2302 58 51 Janik Mateusz POL 1918.6 454.2
## 2303 59 44 Puchianu Cornel ROU 2017.5 508.8
## 2304 1 40 Eberhard Julian AUT 1012.9 514.6
## 2305 2 21 Schempp Simon GER 1014.8 504.6
## 2306 3 13 Peiffer Arnd GER 1030.8 524.8
## 2307 4 3 Landertinger Dominik AUT 1042.5 524.4
## 2308 5 34 Lesser Erik GER 1043.4 528.1
## 2309 6 4 Burke Tim USA 1061.3 547.5
## 2310 7 25 Boe Johannes Thingnes NOR 1059.9 520.1
## 2311 8 7 Doll Benedikt GER 1061.2 546.2
## 2312 9 9 Rastorgujevs Andrejs LAT 1057.2 547.2
## 2313 10 35 Windisch Dominik ITA 1072.1 544.2
## 2314 11 44 Weger Benjamin SUI 1064.9 546.6
## 2315 12 43 Slesingr Michal CZE 1072.5 526.7
## 2316 13 45 Zhyrnyi Oleksandr UKR 1064.6 542.2
## 2317 14 8 Semenov Sergii UKR 1070.0 547.7
## 2318 14 22 Lindstroem Fredrik SWE 1082.7 561.8
## 2319 16 59 Sinapov Anton BUL 1071.1 538.6
## 2320 17 26 Hofer Lukas ITA 1074.0 537.2
## 2321 18 14 Kilchytskyy Vitaliy UKR 1074.6 537.6
## 2322 19 38 Desthieux Simon FRA 1082.8 565.1
## 2323 20 30 Fillon Maillet Quentin FRA 1072.6 535.4
## 2324 21 54 Doherty Sean USA 1095.6 519.6
## 2325 22 46 Chepelin Vladimir BLR 1098.0 554.8
## 2326 23 2 Slepov Alexey RUS 1111.6 564.5
## 2327 24 18 Volkov Alexey RUS 1094.4 565.6
## 2328 25 24 Moravec Ondrej CZE 1096.1 553.9
## 2329 26 75 Dyuzhev Dmitriy BLR 1095.8 573.6
## 2330 27 57 Soukup Jaroslav CZE 1095.9 560.0
## 2331 28 15 Savitskiy Yan KAZ 1095.7 565.7
## 2332 29 5 Garanichev Evgeniy RUS 1098.3 528.8
## 2333 30 87 Siemakov Volodymyr UKR 1102.4 547.5
## 2334 31 36 Bailey Lowell USA 1098.9 555.1
## 2335 32 58 Nelin Jesper SWE 1102.6 545.3
## 2336 33 66 Graf Florian GER 1081.0 547.0
## 2337 34 1 Darozhka Aliaksandr BLR 1103.2 579.8
## 2338 35 17 Boe Tarjei NOR 1111.2 574.9
## 2339 36 72 Yaliotnau Raman BLR 1116.8 580.6
## 2340 37 74 Bischl Matthias GER 1090.9 569.9
## 2341 38 11 Eder Simon AUT 1108.4 549.0
## 2342 39 27 Krcmar Michal CZE 1116.9 558.3
## 2343 40 42 Fourcade Martin FRA 1116.8 542.3
## 2344 41 19 Bjoerndalen Ole Einar NOR 1096.4 556.3
## 2345 42 23 Green Brendan CAN 1106.9 578.8
## 2346 43 28 Iliev Vladimir BUL 1128.5 557.2
## 2347 44 31 Tsvetkov Maxim RUS 1114.8 590.8
## 2348 45 29 Shipulin Anton RUS 1097.8 568.1
## 2349 46 16 Anev Krasimir BUL 1110.6 583.5
## 2350 47 76 Pinter Friedrich AUT 1115.5 586.5
## 2351 48 32 Stenersen Torstein SWE 1114.8 580.7
## 2352 49 63 Waeger Lorenz AUT 1119.6 561.0
## 2353 50 51 Hasilla Tomas SVK 1107.6 565.7
## 2354 51 48 Tkalenko Ruslan UKR 1132.3 593.1
## 2355 52 49 Dombrovski Karol LTU 1116.7 570.5
## 2356 53 6 Wiestner Serafin SUI 1137.7 567.3
## 2357 54 50 Hiidensalo Olli FIN 1131.4 598.1
## 2358 55 41 Malyshko Dmitry RUS 1151.3 568.3
## 2359 56 78 Pashchenko Petr RUS 1136.1 588.0
## 2360 57 61 Zahkna Rene EST 1129.8 552.6
## 2361 58 60 Eliseev Matvey RUS 1111.3 544.5
## 2362 59 82 Pantov Anton KAZ 1128.1 573.4
## 2363 60 62 Beatrix Jean Guillaume FRA 1138.0 585.1
## 2364 61 77 Nagai Junji JPN 1125.8 567.9
## 2365 62 68 Lee Inbok KOR 1134.2 588.5
## 2366 63 73 Gronman Tuomas FIN 1146.7 579.7
## 2367 64 79 Buta George ROU 1137.8 568.7
## 2368 65 52 Dolder Mario SUI 1153.7 625.1
## 2369 66 37 Otcenas Martin SVK 1149.4 591.1
## 2370 67 67 Puchianu Cornel ROU 1161.0 600.5
## 2371 68 53 Faur Remus ROU 1161.3 590.1
## 2372 69 10 Kazar Matej SVK 1183.4 571.7
## 2373 70 20 Fourcade Simon FRA 1188.5 596.4
## 2374 71 81 Slotins Roberts LAT 1156.4 602.9
## 2375 72 85 Vaclavik Adam CZE 1186.7 614.1
## 2376 73 33 Davies Macx CAN 1170.2 615.2
## 2377 74 12 Kaukenas Tomas LTU 1194.0 623.6
## 2378 75 47 Koiv Kauri EST 1188.4 612.7
## 2379 76 65 Gow Scott CAN 1183.0 613.3
## 2380 77 70 Patrijuks Aleksandrs LAT 1209.8 615.3
## 2381 78 83 Gerdzhikov Dimitar BUL 1196.2 587.2
## 2382 79 71 Dovzan Miha SLO 1195.3 595.5
## 2383 80 69 Tachizaki Mikito JPN 1222.5 627.6
## 2384 81 55 Braun Maxim KAZ 1204.4 597.4
## 2385 82 80 Treier Jan EST 1197.2 625.7
## 2386 83 84 Strolia Vytautas LTU 1250.3 652.7
## 2387 84 64 Laponder Marcel GBR 1272.9 625.7
## 2388 1 2 Schempp Simon GER 1674.9 434.8
## 2389 2 7 Boe Johannes Thingnes NOR 1671.5 431.7
## 2390 3 5 Lesser Erik GER 1682.2 435.5
## 2391 4 11 Weger Benjamin SUI 1682.7 418.0
## 2392 5 8 Doll Benedikt GER 1697.5 408.2
## 2393 6 6 Burke Tim USA 1698.6 436.8
## 2394 7 15 Lindstroem Fredrik SWE 1701.3 414.0
## 2395 8 4 Landertinger Dominik AUT 1708.1 461.9
## 2396 9 3 Peiffer Arnd GER 1719.4 453.6
## 2397 10 12 Slesingr Michal CZE 1717.0 420.2
## 2398 11 38 Eder Simon AUT 1726.5 403.9
## 2399 12 35 Boe Tarjei NOR 1748.2 429.6
## 2400 13 9 Rastorgujevs Andrejs LAT 1741.4 448.0
## 2401 14 29 Garanichev Evgeniy RUS 1746.8 406.3
## 2402 15 14 Semenov Sergii UKR 1746.1 424.4
## 2403 16 10 Windisch Dominik ITA 1771.4 438.8
## 2404 17 39 Krcmar Michal CZE 1773.7 417.3
## 2405 18 1 Eberhard Julian AUT 1770.9 444.2
## 2406 19 13 Zhyrnyi Oleksandr UKR 1757.1 446.5
## 2407 20 45 Shipulin Anton RUS 1783.5 434.2
## 2408 21 17 Hofer Lukas ITA 1780.7 417.4
## 2409 22 31 Bailey Lowell USA 1774.4 428.7
## 2410 23 19 Desthieux Simon FRA 1791.0 419.4
## 2411 24 34 Darozhka Aliaksandr BLR 1793.8 440.4
## 2412 25 25 Moravec Ondrej CZE 1804.9 437.5
## 2413 26 27 Soukup Jaroslav CZE 1804.5 447.4
## 2414 27 23 Slepov Alexey RUS 1825.3 416.8
## 2415 28 18 Kilchytskyy Vitaliy UKR 1805.9 429.1
## 2416 29 32 Nelin Jesper SWE 1819.1 463.1
## 2417 30 16 Sinapov Anton BUL 1811.6 459.3
## 2418 31 24 Volkov Alexey RUS 1817.4 446.3
## 2419 32 21 Doherty Sean USA 1836.7 437.4
## 2420 33 55 Malyshko Dmitry RUS 1839.5 412.2
## 2421 34 30 Siemakov Volodymyr UKR 1840.7 440.1
## 2422 35 58 Eliseev Matvey RUS 1814.1 419.3
## 2423 36 42 Green Brendan CAN 1837.2 452.6
## 2424 37 46 Anev Krasimir BUL 1849.6 472.4
## 2425 38 26 Dyuzhev Dmitriy BLR 1858.9 463.2
## 2426 39 48 Stenersen Torstein SWE 1843.6 454.0
## 2427 40 56 Pashchenko Petr RUS 1860.2 421.0
## 2428 41 37 Bischl Matthias GER 1852.7 449.2
## 2429 42 51 Tkalenko Ruslan UKR 1867.6 438.2
## 2430 43 43 Iliev Vladimir BUL 1877.7 439.0
## 2431 44 44 Tsvetkov Maxim RUS 1869.9 442.9
## 2432 45 36 Yaliotnau Raman BLR 1890.5 470.5
## 2433 46 33 Graf Florian GER 1880.9 442.8
## 2434 47 22 Chepelin Vladimir BLR 1914.3 494.7
## 2435 48 60 Beatrix Jean Guillaume FRA 1906.1 440.8
## 2436 49 54 Hiidensalo Olli FIN 1935.0 436.0
## 2437 50 49 Waeger Lorenz AUT 1947.5 442.7
## 2438 51 47 Pinter Friedrich AUT 1977.1 485.1
## 2439 52 52 Dombrovski Karol LTU 1995.3 480.5
## 2440 53 57 Zahkna Rene EST 2014.8 497.1
## 2441 1 6 Fourcade Martin FRA 1014.6 507.4
## 2442 2 66 Peiffer Arnd GER 1046.5 540.5
## 2443 3 40 Bjoerndalen Ole Einar NOR 1059.4 529.9
## 2444 4 45 Fillon Maillet Quentin FRA 1069.8 531.2
## 2445 5 47 Doll Benedikt GER 1074.9 577.5
## 2446 6 1 Boe Johannes Thingnes NOR 1065.4 545.0
## 2447 7 14 Svendsen Emil Hegle NOR 1076.5 576.4
## 2448 8 30 Pidruchnyi Dmytro UKR 1073.1 564.5
## 2449 9 17 Smith Nathan CAN 1078.7 556.8
## 2450 10 99 Davies Macx CAN 1083.8 545.0
## 2451 11 5 Grossegger Sven AUT 1084.3 576.5
## 2452 12 55 L'Abee-Lund Henrik NOR 1109.8 574.5
## 2453 13 82 Krcmar Michal CZE 1113.3 556.2
## 2454 14 105 Boehm Daniel GER 1111.6 576.0
## 2455 15 86 Yaliotnau Raman BLR 1112.0 587.2
## 2456 16 43 Weger Benjamin SUI 1127.5 574.4
## 2457 16 87 Nelin Jesper SWE 1095.7 560.4
## 2458 18 13 Slepov Alexey RUS 1126.5 593.2
## 2459 19 27 Eder Simon AUT 1117.2 589.2
## 2460 20 24 Anev Krasimir BUL 1122.5 583.3
## 2461 21 9 Iliev Vladimir BUL 1123.8 542.2
## 2462 21 22 Desthieux Simon FRA 1122.2 594.6
## 2463 23 8 Kazar Matej SVK 1115.4 563.3
## 2464 24 33 Slesingr Michal CZE 1129.5 548.3
## 2465 25 88 Doherty Sean USA 1118.0 581.2
## 2466 26 81 Siemakov Volodymyr UKR 1123.6 595.0
## 2467 27 49 Garanichev Evgeniy RUS 1135.7 624.5
## 2468 28 25 Otcenas Martin SVK 1134.6 598.3
## 2469 29 20 Boe Tarjei NOR 1145.2 630.2
## 2470 30 42 Lesser Erik GER 1136.4 573.6
## 2471 31 78 Beatrix Jean Guillaume FRA 1152.3 592.7
## 2472 32 46 Shipulin Anton RUS 1140.7 583.6
## 2473 33 106 Braun Maxim KAZ 1115.1 548.9
## 2474 34 74 Malyshko Dmitry RUS 1144.4 587.4
## 2475 35 103 Lapshin Timofei RUS 1119.5 598.1
## 2476 36 57 Mesotitsch Daniel AUT 1127.5 579.8
## 2477 37 62 Kaukenas Tomas LTU 1123.5 595.7
## 2478 38 97 Krupcik Tomas CZE 1141.6 617.5
## 2479 39 84 Hasilla Tomas SVK 1131.7 614.9
## 2480 40 52 Moravec Ondrej CZE 1153.2 636.5
## 2481 41 4 De Lorenzi Christian ITA 1127.7 579.0
## 2482 42 29 Bauer Klemen SLO 1149.6 583.8
## 2483 43 48 Fak Jakov SLO 1153.6 552.6
## 2484 44 36 Tsvetkov Maxim RUS 1150.9 613.0
## 2485 45 63 Burke Tim USA 1157.3 617.2
## 2486 46 61 Sinapov Anton BUL 1135.9 609.0
## 2487 47 3 Birnbacher Andreas GER 1155.5 570.8
## 2488 48 93 Eberhard Julian AUT 1173.2 610.1
## 2489 49 10 Fourcade Simon FRA 1169.1 616.9
## 2490 50 12 Pryma Artem UKR 1183.1 583.2
## 2491 51 28 Puchianu Cornel ROU 1153.7 594.5
## 2492 52 18 Semenov Sergii UKR 1172.7 612.1
## 2493 53 11 Rastorgujevs Andrejs LAT 1173.2 647.3
## 2494 54 35 Soukup Jaroslav CZE 1182.6 607.4
## 2495 55 2 Green Brendan CAN 1173.4 601.7
## 2496 56 38 Lindstroem Fredrik SWE 1173.1 619.8
## 2497 57 32 Landertinger Dominik AUT 1174.6 599.1
## 2498 58 83 Birkeland Lars Helge NOR 1181.2 595.9
## 2499 59 44 Savitskiy Yan KAZ 1166.4 595.4
## 2500 60 95 Tachizaki Mikito JPN 1172.5 558.7
## 2501 61 19 Chepelin Vladimir BLR 1189.9 624.8
## 2502 62 23 Liadov Yuryi BLR 1176.8 661.0
## 2503 63 80 Hiidensalo Olli FIN 1184.5 611.8
## 2504 64 15 Nordgren Leif USA 1186.7 614.3
## 2505 65 70 Dyuzhev Dmitriy BLR 1200.0 571.7
## 2506 66 39 Wiestner Serafin SUI 1194.1 617.6
## 2507 67 34 Gow Scott CAN 1212.6 602.6
## 2508 68 26 Bailey Lowell USA 1200.1 656.1
## 2509 69 60 Armgren Ted SWE 1207.7 600.6
## 2510 70 64 Gow Christian CAN 1211.6 626.7
## 2511 71 77 Hofer Lukas ITA 1212.6 687.7
## 2512 72 76 Matiasko Miroslav SVK 1225.3 644.8
## 2513 73 37 Windisch Dominik ITA 1230.9 669.2
## 2514 74 68 Trsan Rok SLO 1222.0 639.3
## 2515 75 104 Jaeger Martin SUI 1219.9 645.9
## 2516 76 96 Guigonnat Antonin FRA 1232.0 625.3
## 2517 77 31 Schempp Simon GER 1248.6 630.8
## 2518 78 79 Finello Jeremy SUI 1228.1 623.6
## 2519 79 65 Oblak Lenart SLO 1204.9 641.7
## 2520 80 21 Femling Peppe SWE 1204.4 654.8
## 2521 81 98 Gronman Tuomas FIN 1176.8 595.5
## 2522 82 73 Hakala Matti FIN 1211.0 610.8
## 2523 83 50 Buta George ROU 1241.0 685.0
## 2524 84 41 Koiv Kauri EST 1211.0 652.1
## 2525 85 16 Ermits Kalev EST 1234.8 660.8
## 2526 86 92 Faur Remus ROU 1244.9 682.1
## 2527 87 58 Guzik Grzegorz POL 1222.9 604.1
## 2528 88 94 Kilchytskyy Vitaliy UKR 1251.9 663.8
## 2529 89 100 Slotins Roberts LAT 1236.9 639.6
## 2530 90 89 Dovzan Miha SLO 1251.1 644.2
## 2531 91 69 Kim Jongmin KOR 1236.3 633.3
## 2532 92 102 Bormolini Thomas ITA 1254.3 668.9
## 2533 93 91 Janik Mateusz POL 1265.4 632.8
## 2534 94 51 Szczurek Lukasz POL 1262.7 681.9
## 2535 94 75 Dombrovski Karol LTU 1250.8 664.2
## 2536 96 72 Kobonoki Tsukasa JPN 1298.6 670.1
## 2537 97 90 Laponder Marcel GBR 1279.7 627.2
## 2538 98 53 Remmelg Martin EST 1295.0 630.3
## 2539 99 101 Kletcherov Michail BUL 1281.6 691.4
## 2540 100 59 Dixon Scott GBR 1286.7 677.8
## 2541 101 56 Lusa Daumants LAT 1276.9 676.1
## 2542 102 71 Pantov Anton KAZ 1354.9 696.9
## 2543 103 85 Strolia Vytautas LTU 1331.2 710.0
## 2544 1 81 Bjoerndalen Ole Einar NOR 2467.5 631.6
## 2545 2 30 Schempp Simon GER 2503.5 617.2
## 2546 3 58 Volkov Alexey RUS 2486.3 631.3
## 2547 4 22 Svendsen Emil Hegle NOR 2580.9 620.2
## 2548 4 23 Fillon Maillet Quentin FRA 2568.2 610.1
## 2549 6 64 Fourcade Simon FRA 2585.4 685.5
## 2550 7 24 Eder Simon AUT 2588.3 685.3
## 2551 8 39 Landertinger Dominik AUT 2603.6 737.1
## 2552 9 100 Birkeland Lars Helge NOR 2592.4 631.4
## 2553 10 3 Semenov Sergii UKR 2596.8 621.9
## 2554 11 15 L'Abee-Lund Henrik NOR 2609.1 697.8
## 2555 12 102 Birnbacher Andreas GER 2597.5 641.9
## 2556 13 94 Mesotitsch Daniel AUT 2620.1 715.2
## 2557 14 41 Lindstroem Fredrik SWE 2638.3 637.4
## 2558 15 87 Desthieux Simon FRA 2654.5 624.6
## 2559 16 21 Shipulin Anton RUS 2641.0 623.3
## 2560 17 88 Doherty Sean USA 2655.0 636.5
## 2561 18 98 Babikov Anton RUS 2641.0 644.0
## 2562 19 33 Boe Johannes Thingnes NOR 2660.9 688.0
## 2563 20 44 Pryma Artem UKR 2650.1 690.7
## 2564 21 67 Fourcade Martin FRA 2674.7 786.8
## 2565 22 35 Boe Tarjei NOR 2679.1 670.3
## 2566 23 18 Chepelin Vladimir BLR 2667.5 647.4
## 2567 24 26 Bailey Lowell USA 2661.1 764.3
## 2568 25 79 Dyuzhev Dmitriy BLR 2674.8 693.0
## 2569 26 32 Tsvetkov Maxim RUS 2695.3 683.8
## 2570 27 28 Smith Nathan CAN 2691.0 676.9
## 2571 28 31 Soukup Jaroslav CZE 2695.7 697.3
## 2572 29 29 Savitskiy Yan KAZ 2668.3 635.5
## 2573 30 76 Beatrix Jean Guillaume FRA 2689.2 752.6
## 2574 31 14 Garanichev Evgeniy RUS 2700.8 740.9
## 2575 32 38 Malyshko Dmitry RUS 2704.4 618.3
## 2576 33 55 Buta George ROU 2694.8 655.6
## 2577 34 42 Windisch Dominik ITA 2703.9 736.5
## 2578 35 8 Moravec Ondrej CZE 2719.8 702.4
## 2579 36 37 Bauer Klemen SLO 2738.6 622.1
## 2580 37 66 Burke Tim USA 2718.2 643.9
## 2581 38 34 Wiestner Serafin SUI 2736.1 703.0
## 2582 39 48 Lesser Erik GER 2737.9 753.3
## 2583 40 25 Weger Benjamin SUI 2737.3 653.2
## 2584 41 50 Kaukenas Tomas LTU 2733.5 718.4
## 2585 42 73 De Lorenzi Christian ITA 2725.7 715.1
## 2586 43 19 Grossegger Sven AUT 2717.8 666.8
## 2587 44 80 Dombrovski Karol LTU 2728.7 714.7
## 2588 45 9 Femling Peppe SWE 2757.7 718.1
## 2589 46 2 Doll Benedikt GER 2790.8 798.4
## 2590 47 101 Dovzan Miha SLO 2741.9 678.0
## 2591 48 46 Lessing Roland EST 2747.1 730.6
## 2592 49 56 Armgren Ted SWE 2773.2 646.8
## 2593 50 40 Zhyrnyi Oleksandr UKR 2742.6 734.8
## 2594 51 36 Peiffer Arnd GER 2766.3 705.4
## 2595 52 82 Finello Jeremy SUI 2776.6 755.7
## 2596 53 20 Slesingr Michal CZE 2795.4 625.0
## 2597 54 99 Arwidson Tobias SWE 2744.4 718.4
## 2598 55 70 Gerdzhikov Dimitar BUL 2768.0 650.7
## 2599 56 89 Remmelg Martin EST 2756.3 733.4
## 2600 57 52 Eberhard Julian AUT 2814.7 744.9
## 2601 58 57 Krupcik Tomas CZE 2774.1 726.4
## 2602 59 86 Matiasko Miroslav SVK 2772.5 782.3
## 2603 60 11 Otcenas Martin SVK 2826.1 756.1
## 2604 61 45 Kazar Matej SVK 2802.0 768.2
## 2605 62 47 Gow Christian CAN 2805.5 763.9
## 2606 63 6 Guigonnat Antonin FRA 2834.4 824.8
## 2607 64 91 Partalov Dimitar BUL 2819.5 678.7
## 2608 65 59 Guzik Grzegorz POL 2816.3 798.2
## 2609 66 10 Iliev Vladimir BUL 2885.6 741.4
## 2610 67 61 Trsan Rok SLO 2833.3 668.7
## 2611 68 27 Liadov Yuryi BLR 2857.1 674.5
## 2612 69 60 Szczurek Lukasz POL 2825.5 684.8
## 2613 70 1 Krcmar Michal CZE 2890.9 765.5
## 2614 71 104 Strolia Vytautas LTU 2850.6 748.5
## 2615 72 17 Joller Ivan SUI 2860.2 781.5
## 2616 73 63 Oblak Lenart SLO 2853.5 746.2
## 2617 74 16 Bormolini Thomas ITA 2908.0 718.3
## 2618 75 90 Siemakov Volodymyr UKR 2891.7 719.8
## 2619 76 51 Boehm Daniel GER 2908.2 770.7
## 2620 77 13 Green Brendan CAN 2900.6 775.1
## 2621 78 4 Fak Jakov SLO 2934.4 825.8
## 2622 79 53 Pantov Anton KAZ 2901.5 856.1
## 2623 80 84 Penar Rafal POL 2904.2 803.0
## 2624 81 12 Ermits Kalev EST 2952.3 713.1
## 2625 82 77 Rusinov Dmytro UKR 2910.6 735.3
## 2626 83 74 Lusa Daumants LAT 2899.5 776.3
## 2627 84 69 Hasilla Tomas SVK 2975.6 794.6
## 2628 85 85 Davies Macx CAN 2941.8 804.3
## 2629 86 7 Gow Scott CAN 3007.5 756.8
## 2630 87 96 Bocharnikov Sergey BLR 2976.0 790.3
## 2631 88 83 Hiidensalo Olli FIN 2989.1 692.7
## 2632 89 43 Puchianu Cornel ROU 3037.4 812.6
## 2633 90 54 Koiv Kauri EST 3019.9 857.8
## 2634 91 62 Rastic Damir SRB 3019.1 778.3
## 2635 92 93 Podkorytov Vassiliy KAZ 3066.2 710.2
## 2636 93 49 Hakala Matti FIN 3091.1 824.2
## 2637 94 103 Kobonoki Tsukasa JPN 3098.8 800.6
## 2638 95 71 Kletcherov Michail BUL 3088.6 897.8
## 2639 96 92 Serban Denis ROU 3157.5 799.5
## 2640 97 72 Dixon Scott GBR 3140.5 679.1
## 2641 98 106 Laponder Marcel GBR 3120.1 829.5
## 2642 99 65 Tachizaki Mikito JPN 3166.2 826.7
## 2643 100 68 Langer Thorsten BEL 3144.8 814.7
## 2644 101 75 Kim Yonggyu KOR 3221.4 837.5
## 2645 102 97 Slotins Roberts LAT 3234.3 948.1
## 2646 103 78 Puzulis Rolands LAT 3250.8 860.9
## 2647 104 5 Nordgren Leif USA 3429.8 720.1
## 2648 1 1 Fourcade Martin FRA 1542.4 391.7
## 2649 2 2 Peiffer Arnd GER 1608.6 381.3
## 2650 3 4 Fillon Maillet Quentin FRA 1628.7 399.1
## 2651 4 29 Boe Tarjei NOR 1652.0 364.6
## 2652 5 7 Svendsen Emil Hegle NOR 1641.6 397.4
## 2653 6 5 Doll Benedikt GER 1650.1 403.8
## 2654 7 34 Malyshko Dmitry RUS 1654.3 366.3
## 2655 8 27 Garanichev Evgeniy RUS 1643.6 381.5
## 2656 9 8 Pidruchnyi Dmytro UKR 1654.7 382.3
## 2657 10 9 Smith Nathan CAN 1653.1 396.2
## 2658 11 3 Bjoerndalen Ole Einar NOR 1664.6 367.9
## 2659 12 19 Eder Simon AUT 1664.1 401.5
## 2660 13 18 Slepov Alexey RUS 1681.9 389.7
## 2661 14 49 Fourcade Simon FRA 1682.7 371.5
## 2662 15 32 Shipulin Anton RUS 1672.4 403.3
## 2663 16 6 Boe Johannes Thingnes NOR 1699.7 364.8
## 2664 17 21 Iliev Vladimir BUL 1697.8 374.6
## 2665 18 47 Birnbacher Andreas GER 1702.6 370.5
## 2666 19 40 Moravec Ondrej CZE 1704.6 382.0
## 2667 20 24 Slesingr Michal CZE 1713.4 423.2
## 2668 21 22 Desthieux Simon FRA 1712.9 408.2
## 2669 22 39 Hasilla Tomas SVK 1706.1 380.8
## 2670 23 11 Grossegger Sven AUT 1705.2 404.0
## 2671 24 13 Krcmar Michal CZE 1719.7 408.0
## 2672 25 58 Birkeland Lars Helge NOR 1720.7 370.6
## 2673 26 20 Anev Krasimir BUL 1710.2 405.1
## 2674 27 30 Lesser Erik GER 1717.8 427.9
## 2675 28 31 Beatrix Jean Guillaume FRA 1729.7 421.9
## 2676 29 42 Bauer Klemen SLO 1728.5 405.5
## 2677 30 10 Davies Macx CAN 1734.3 417.3
## 2678 31 44 Tsvetkov Maxim RUS 1750.0 408.2
## 2679 32 14 Boehm Daniel GER 1745.0 431.5
## 2680 33 35 Lapshin Timofei RUS 1752.1 388.4
## 2681 34 41 De Lorenzi Christian ITA 1750.2 395.0
## 2682 35 23 Kazar Matej SVK 1754.6 418.9
## 2683 36 53 Rastorgujevs Andrejs LAT 1756.1 409.5
## 2684 37 56 Lindstroem Fredrik SWE 1779.8 439.2
## 2685 38 55 Green Brendan CAN 1780.9 387.1
## 2686 39 45 Burke Tim USA 1776.3 387.3
## 2687 40 26 Siemakov Volodymyr UKR 1781.7 391.7
## 2688 41 57 Landertinger Dominik AUT 1796.6 386.0
## 2689 42 38 Krupcik Tomas CZE 1785.9 407.9
## 2690 43 17 Nelin Jesper SWE 1790.9 453.0
## 2691 44 50 Pryma Artem UKR 1784.6 391.2
## 2692 45 48 Eberhard Julian AUT 1813.6 471.0
## 2693 46 25 Doherty Sean USA 1806.8 430.3
## 2694 47 12 L'Abee-Lund Henrik NOR 1804.5 441.2
## 2695 48 33 Braun Maxim KAZ 1800.7 401.1
## 2696 49 37 Kaukenas Tomas LTU 1837.3 460.3
## 2697 50 28 Otcenas Martin SVK 1845.4 494.9
## 2698 51 60 Tachizaki Mikito JPN 1839.3 392.3
## 2699 52 15 Yaliotnau Raman BLR 1854.8 416.9
## 2700 53 59 Savitskiy Yan KAZ 1850.4 386.1
## 2701 54 43 Fak Jakov SLO 1871.5 395.8
## 2702 55 51 Puchianu Cornel ROU 1868.9 399.7
## 2703 56 54 Soukup Jaroslav CZE 1865.3 415.9
## 2704 57 52 Semenov Sergii UKR 1873.9 386.6
## 2705 58 36 Mesotitsch Daniel AUT 1871.4 416.8
## 2706 59 16 Weger Benjamin SUI 1900.6 422.3
## 2707 60 46 Sinapov Anton BUL 1932.7 470.6
## 2708 1 8 Fourcade Martin FRA 1026.8 514.5
## 2709 2 53 Bjoerndalen Ole Einar NOR 1037.1 523.9
## 2710 3 69 Semenov Sergii UKR 1042.3 528.6
## 2711 4 58 Boe Johannes Thingnes NOR 1052.5 543.6
## 2712 5 34 Windisch Dominik ITA 1064.9 521.6
## 2713 6 9 Garanichev Evgeniy RUS 1051.5 542.1
## 2714 7 47 Peiffer Arnd GER 1050.0 531.1
## 2715 8 84 Schempp Simon GER 1054.3 522.7
## 2716 9 81 Landertinger Dominik AUT 1062.4 526.3
## 2717 10 45 Iliev Vladimir BUL 1073.5 548.1
## 2718 11 76 Wiestner Serafin SUI 1058.6 552.6
## 2719 12 82 Desthieux Simon FRA 1075.4 558.9
## 2720 13 33 Chepelin Vladimir BLR 1087.3 542.7
## 2721 14 35 Burke Tim USA 1080.0 553.8
## 2722 15 83 Slesingr Michal CZE 1078.6 538.2
## 2723 16 12 Fillon Maillet Quentin FRA 1081.8 528.5
## 2724 17 87 Svendsen Emil Hegle NOR 1063.1 549.8
## 2725 18 91 Nordgren Leif USA 1066.1 542.7
## 2726 19 80 Lesser Erik GER 1103.5 579.5
## 2727 20 24 Rastorgujevs Andrejs LAT 1081.6 575.2
## 2728 21 73 Kaukenas Tomas LTU 1086.0 556.9
## 2729 22 93 Pryma Artem UKR 1082.1 561.4
## 2730 23 30 Babikov Anton RUS 1062.6 544.5
## 2731 24 101 Krcmar Michal CZE 1091.5 541.9
## 2732 25 65 Otcenas Martin SVK 1088.9 568.8
## 2733 26 96 Puchianu Cornel ROU 1085.0 541.6
## 2734 27 62 Eder Simon AUT 1101.1 567.9
## 2735 28 3 Zhyrnyi Oleksandr UKR 1073.9 549.5
## 2736 29 79 Bailey Lowell USA 1091.3 536.2
## 2737 30 43 Lindstroem Fredrik SWE 1089.9 566.8
## 2738 31 75 Nelin Jesper SWE 1102.0 581.4
## 2739 32 71 Darozhka Aliaksandr BLR 1089.6 564.8
## 2740 33 46 Doll Benedikt GER 1122.6 579.7
## 2741 34 61 Anev Krasimir BUL 1105.4 583.8
## 2742 35 60 Green Brendan CAN 1109.7 569.7
## 2743 36 97 Eberhard Julian AUT 1124.8 563.9
## 2744 37 44 Lessing Roland EST 1102.0 569.9
## 2745 38 88 Koiv Kauri EST 1079.8 557.0
## 2746 39 36 Fak Jakov SLO 1101.3 561.6
## 2747 40 32 Savitskiy Yan KAZ 1101.0 546.6
## 2748 41 25 De Lorenzi Christian ITA 1117.2 570.3
## 2749 42 67 Tsvetkov Maxim RUS 1096.7 572.9
## 2750 43 20 Doherty Sean USA 1116.9 566.3
## 2751 44 27 Pidruchnyi Dmytro UKR 1117.2 543.2
## 2752 45 1 Shipulin Anton RUS 1106.6 566.8
## 2753 46 40 Smith Nathan CAN 1127.4 592.9
## 2754 47 99 Gow Scott CAN 1122.0 596.4
## 2755 48 100 Jaeger Martin SUI 1118.3 586.6
## 2756 49 90 Kletcherov Michail BUL 1096.8 545.4
## 2757 50 70 Bauer Klemen SLO 1112.1 579.6
## 2758 51 37 Grossegger Sven AUT 1112.8 557.9
## 2759 51 52 Weger Benjamin SUI 1122.8 564.0
## 2760 53 59 Fourcade Simon FRA 1127.9 529.9
## 2761 54 86 Boe Tarjei NOR 1130.1 592.9
## 2762 55 48 Hiidensalo Olli FIN 1119.1 579.1
## 2763 56 102 Bormolini Thomas ITA 1104.0 582.4
## 2764 57 26 Kazar Matej SVK 1146.0 563.3
## 2765 58 15 Davies Macx CAN 1122.2 586.5
## 2766 59 42 Moravec Ondrej CZE 1144.0 623.2
## 2767 60 11 Soukup Jaroslav CZE 1145.5 591.2
## 2768 61 14 Stenersen Torstein SWE 1116.3 582.6
## 2769 62 19 Hasilla Tomas SVK 1130.8 588.3
## 2770 63 10 Ermits Kalev EST 1142.7 543.7
## 2771 64 50 Janik Mateusz POL 1140.4 583.0
## 2772 65 7 Sinapov Anton BUL 1139.9 588.9
## 2773 66 18 Dolder Mario SUI 1156.7 577.2
## 2774 67 85 Kobonoki Tsukasa JPN 1140.5 579.8
## 2775 68 23 Tachizaki Mikito JPN 1139.9 580.3
## 2776 69 94 Bjoentegaard Erlend NOR 1147.9 599.3
## 2777 70 55 Buta George ROU 1140.1 587.5
## 2778 71 98 Dovzan Miha SLO 1146.4 603.5
## 2779 72 13 Podkorytov Vassiliy KAZ 1136.3 579.7
## 2780 73 28 Nagai Junji JPN 1148.6 595.0
## 2781 74 5 Yaliotnau Raman BLR 1170.6 601.7
## 2782 75 63 Hofer Lukas ITA 1152.7 580.8
## 2783 76 78 Szczurek Lukasz POL 1159.1 586.9
## 2784 77 72 Braun Maxim KAZ 1131.9 582.0
## 2785 78 22 Guzik Grzegorz POL 1177.6 584.4
## 2786 79 89 Varabei Maksim BLR 1178.4 616.0
## 2787 80 31 Roesch Michael BEL 1178.2 628.1
## 2788 81 64 Faur Remus ROU 1183.6 606.5
## 2789 82 17 Orpana Sami FIN 1185.7 637.5
## 2790 83 4 Crnkovic Kresimir CRO 1203.2 620.0
## 2791 84 74 Langer Thierry BEL 1196.7 585.2
## 2792 85 16 Trsan Rok SLO 1225.7 603.8
## 2793 86 6 Lee Inbok KOR 1228.1 607.4
## 2794 87 95 Strolia Vytautas LTU 1236.5 654.4
## 2795 88 92 Armgren Ted SWE 1231.7 616.9
## 2796 89 66 Gronman Tuomas FIN 1232.5 632.9
## 2797 90 77 Laponder Marcel GBR 1205.4 646.1
## 2798 91 51 Dixon Scott GBR 1210.4 644.2
## 2799 92 57 Kim Jongmin KOR 1229.8 601.8
## 2800 93 68 Slotins Roberts LAT 1237.2 655.5
## 2801 94 49 Angelis Apostolos GRE 1256.4 596.1
## 2802 95 39 Dombrovski Karol LTU 1217.8 654.9
## 2803 96 56 Gombos Karoly HUN 1280.2 677.6
## 2804 97 38 Ustuntas Mehmet TUR 1250.6 656.3
## 2805 98 29 Petrovic Filip CRO 1296.8 647.2
## 2806 99 2 Hrkalovic Emir SRB 1286.4 683.2
## 2807 100 41 Patrijuks Aleksandrs LAT 1313.5 668.2
## 2808 101 21 Ustuntas Ahmet TUR 1284.2 672.2
## 2809 102 54 Krsmanovic Dejan SRB 1357.7 643.5
## 2810 1 23 Fourcade Martin FRA 2375.2 585.6
## 2811 2 10 Landertinger Dominik AUT 2381.3 602.8
## 2812 3 18 Eder Simon AUT 2374.9 592.2
## 2813 4 27 Boe Johannes Thingnes NOR 2417.0 659.2
## 2814 5 17 Krcmar Michal CZE 2434.6 618.8
## 2815 6 31 Fak Jakov SLO 2460.6 607.3
## 2816 7 77 Lesser Erik GER 2472.3 615.0
## 2817 8 49 Garanichev Evgeniy RUS 2489.4 604.7
## 2818 9 36 Birnbacher Andreas GER 2472.4 614.3
## 2819 10 11 Fourcade Simon FRA 2498.5 656.9
## 2820 11 46 Savitskiy Yan KAZ 2488.2 693.0
## 2821 12 54 Anev Krasimir BUL 2493.4 621.4
## 2822 13 3 Doll Benedikt GER 2534.6 671.5
## 2823 14 59 Shipulin Anton RUS 2509.6 670.5
## 2824 15 73 Bailey Lowell USA 2506.0 626.9
## 2825 16 39 Schempp Simon GER 2501.6 603.9
## 2826 17 91 Bjoerndalen Ole Einar NOR 2522.7 671.5
## 2827 18 47 Gow Scott CAN 2547.6 748.7
## 2828 19 58 Fillon Maillet Quentin FRA 2520.9 675.9
## 2829 20 32 Slesingr Michal CZE 2565.1 666.5
## 2830 21 20 Iliev Vladimir BUL 2553.8 718.3
## 2831 22 1 Boe Tarjei NOR 2568.4 722.9
## 2832 23 95 Soukup Jaroslav CZE 2563.3 676.8
## 2833 24 74 Koiv Kauri EST 2551.7 650.1
## 2834 25 89 Kilchytskyy Vitaliy UKR 2531.0 648.0
## 2835 26 90 Kletcherov Michail BUL 2545.4 651.0
## 2836 27 4 Nordgren Leif USA 2557.3 675.4
## 2837 28 60 Desthieux Simon FRA 2564.4 694.1
## 2838 29 84 Lindstroem Fredrik SWE 2589.9 632.2
## 2839 30 75 Beatrix Jean Guillaume FRA 2581.0 689.8
## 2840 31 5 Hofer Lukas ITA 2593.6 614.5
## 2841 32 43 Svendsen Emil Hegle NOR 2570.5 689.9
## 2842 33 76 Trsan Rok SLO 2563.2 655.1
## 2843 34 94 Doherty Sean USA 2590.8 627.3
## 2844 35 85 Moravec Ondrej CZE 2612.2 616.3
## 2845 36 92 Liadov Yuryi BLR 2595.1 635.9
## 2846 37 2 Femling Peppe SWE 2579.0 664.2
## 2847 38 14 Tkalenko Ruslan UKR 2606.4 631.1
## 2848 39 96 Volkov Alexey RUS 2621.8 623.5
## 2849 40 53 Zhyrnyi Oleksandr UKR 2638.2 623.0
## 2850 41 71 Komatz David AUT 2650.8 695.2
## 2851 42 69 Smith Nathan CAN 2659.4 711.6
## 2852 43 87 Dovzan Miha SLO 2625.6 654.6
## 2853 44 57 Burke Tim USA 2647.3 794.2
## 2854 45 52 Roesch Michael BEL 2636.2 713.9
## 2855 46 28 Gow Christian CAN 2653.6 699.8
## 2856 47 97 Green Brendan CAN 2655.5 690.6
## 2857 48 8 Pantov Anton KAZ 2633.1 657.3
## 2858 49 56 Weger Benjamin SUI 2654.4 700.4
## 2859 50 35 Lessing Roland EST 2689.5 731.8
## 2860 51 67 Bormolini Thomas ITA 2689.8 706.2
## 2861 52 16 Dombrovski Karol LTU 2628.2 681.7
## 2862 53 72 Wiestner Serafin SUI 2693.0 754.6
## 2863 54 48 Nelin Jesper SWE 2704.8 639.2
## 2864 55 66 Semenov Sergii UKR 2712.2 679.9
## 2865 56 38 Chepelin Vladimir BLR 2735.4 653.4
## 2866 57 83 Buta George ROU 2682.2 679.6
## 2867 58 40 Eberhard Julian AUT 2762.5 793.2
## 2868 59 37 Rastorgujevs Andrejs LAT 2749.7 742.0
## 2869 60 55 Windisch Dominik ITA 2752.4 673.5
## 2870 61 62 Yaliotnau Raman BLR 2766.6 745.6
## 2871 62 63 Orpana Sami FIN 2703.0 686.5
## 2872 63 68 Otcenas Martin SVK 2765.6 839.3
## 2873 64 70 Malyshko Dmitry RUS 2766.6 633.0
## 2874 65 22 Dyuzhev Dmitriy BLR 2738.5 714.3
## 2875 66 88 Stenersen Torstein SWE 2761.4 656.8
## 2876 67 61 Podkorytov Vassiliy KAZ 2752.6 722.9
## 2877 68 34 Nagai Junji JPN 2758.9 657.1
## 2878 69 13 Oblak Lenart SLO 2772.3 711.4
## 2879 70 50 Kaukenas Tomas LTU 2786.4 706.6
## 2880 71 86 Penar Rafal POL 2757.7 737.2
## 2881 72 24 Tachizaki Mikito JPN 2800.6 655.1
## 2882 73 98 Kazar Matej SVK 2810.5 693.6
## 2883 74 25 Dolder Mario SUI 2817.8 820.0
## 2884 75 79 Kobonoki Tsukasa JPN 2806.4 720.9
## 2885 76 45 Matiasko Miroslav SVK 2797.7 724.1
## 2886 77 81 Gerdzhikov Dimitar BUL 2815.8 647.4
## 2887 78 33 Szczurek Lukasz POL 2788.2 740.2
## 2888 79 44 Angelis Apostolos GRE 2828.3 739.5
## 2889 80 78 Guzik Grzegorz POL 2852.5 715.2
## 2890 81 12 Zahkna Rene EST 2855.4 722.7
## 2891 82 99 De Lorenzi Christian ITA 2865.3 694.9
## 2892 83 93 Finello Jeremy SUI 2918.0 806.4
## 2893 84 64 Langer Thierry BEL 2897.3 731.2
## 2894 85 41 Hiidensalo Olli FIN 2907.4 775.7
## 2895 86 65 Lusa Daumants LAT 2844.8 772.1
## 2896 87 80 Strolia Vytautas LTU 2924.7 721.4
## 2897 88 7 Gronman Tuomas FIN 2933.1 762.3
## 2898 89 51 Dixon Scott GBR 2888.1 832.9
## 2899 90 6 Lee Inbok KOR 2988.3 664.3
## 2900 91 15 Ungureanu Marius ROU 3010.3 780.7
## 2901 92 19 Hrkalovic Emir SRB 2969.9 884.7
## 2902 93 29 Kim Jongmin KOR 2968.7 822.8
## 2903 94 30 Puchianu Cornel ROU 3073.4 701.8
## 2904 95 26 Slotins Roberts LAT 3038.5 764.7
## 2905 96 9 Ustuntas Mehmet TUR 3025.8 746.7
## 2906 97 21 Gombos Karoly HUN 3158.9 885.8
## 2907 98 82 Laponder Marcel GBR 3182.6 763.1
## 2908 99 42 Hodzic Edin SRB 3308.8 882.4
## 2909 1 8 Boe Johannes Thingnes NOR 1790.8 449.2
## 2910 2 1 Fourcade Martin FRA 1783.6 450.1
## 2911 3 2 Bjoerndalen Ole Einar NOR 1789.2 458.2
## 2912 4 21 Windisch Dominik ITA 1810.8 470.8
## 2913 5 14 Peiffer Arnd GER 1813.7 458.4
## 2914 6 9 Boe Tarjei NOR 1816.2 448.8
## 2915 7 16 Fak Jakov SLO 1814.2 456.3
## 2916 8 4 Semenov Sergii UKR 1795.9 456.3
## 2917 9 7 Shipulin Anton RUS 1814.7 463.5
## 2918 10 27 Bailey Lowell USA 1818.8 482.0
## 2919 11 6 Eder Simon AUT 1832.0 495.7
## 2920 12 24 Burke Tim USA 1839.4 473.1
## 2921 13 26 Chepelin Vladimir BLR 1841.2 460.1
## 2922 14 15 Lesser Erik GER 1839.1 504.3
## 2923 15 3 Landertinger Dominik AUT 1856.4 458.7
## 2924 16 28 Babikov Anton RUS 1835.5 484.2
## 2925 17 19 Slesingr Michal CZE 1862.4 479.9
## 2926 18 13 Doll Benedikt GER 1864.8 499.3
## 2927 19 10 Schempp Simon GER 1856.6 499.6
## 2928 20 12 Fillon Maillet Quentin FRA 1841.7 468.9
## 2929 21 20 Iliev Vladimir BUL 1863.3 501.5
## 2930 22 18 Krcmar Michal CZE 1859.6 493.7
## 2931 23 11 Garanichev Evgeniy RUS 1874.7 476.0
## 2932 24 17 Desthieux Simon FRA 1873.4 491.8
## 2933 25 25 Anev Krasimir BUL 1879.3 510.8
## 2934 26 30 Rastorgujevs Andrejs LAT 1888.0 481.6
## 2935 27 23 Wiestner Serafin SUI 1924.7 501.2
## 2936 28 5 Svendsen Emil Hegle NOR 1888.0 533.7
## 2937 29 22 Savitskiy Yan KAZ 1977.8 535.3
## 2938 1 1 Fourcade Martin FRA 1582.9 421.6
## 2939 2 2 Bjoerndalen Ole Einar NOR 1606.1 406.5
## 2940 3 17 Svendsen Emil Hegle NOR 1626.0 408.4
## 2941 4 4 Boe Johannes Thingnes NOR 1625.4 404.5
## 2942 5 39 Fak Jakov SLO 1637.0 391.0
## 2943 6 12 Desthieux Simon FRA 1646.3 397.7
## 2944 7 19 Lesser Erik GER 1646.0 432.5
## 2945 8 3 Semenov Sergii UKR 1637.2 413.4
## 2946 9 45 Shipulin Anton RUS 1656.7 413.3
## 2947 10 16 Fillon Maillet Quentin FRA 1656.4 388.6
## 2948 11 6 Garanichev Evgeniy RUS 1654.0 426.5
## 2949 12 15 Slesingr Michal CZE 1643.8 396.2
## 2950 13 7 Peiffer Arnd GER 1663.1 439.4
## 2951 14 9 Landertinger Dominik AUT 1678.8 439.7
## 2952 15 46 Smith Nathan CAN 1676.7 389.1
## 2953 16 27 Eder Simon AUT 1686.6 387.7
## 2954 17 14 Burke Tim USA 1679.2 434.1
## 2955 18 8 Schempp Simon GER 1680.8 419.9
## 2956 19 40 Savitskiy Yan KAZ 1682.5 399.6
## 2957 20 11 Wiestner Serafin SUI 1691.7 447.8
## 2958 21 23 Babikov Anton RUS 1698.3 424.1
## 2959 22 24 Krcmar Michal CZE 1709.4 427.0
## 2960 23 13 Chepelin Vladimir BLR 1712.6 467.7
## 2961 24 10 Iliev Vladimir BUL 1716.4 417.0
## 2962 25 28 Zhyrnyi Oleksandr UKR 1705.7 421.0
## 2963 26 36 Eberhard Julian AUT 1738.7 374.8
## 2964 27 20 Rastorgujevs Andrejs LAT 1729.3 443.7
## 2965 28 5 Windisch Dominik ITA 1723.2 433.5
## 2966 29 34 Anev Krasimir BUL 1726.8 447.4
## 2967 30 25 Otcenas Martin SVK 1726.1 425.1
## 2968 31 54 Boe Tarjei NOR 1739.5 417.7
## 2969 32 22 Pryma Artem UKR 1744.9 399.9
## 2970 33 35 Green Brendan CAN 1745.3 398.2
## 2971 34 30 Lindstroem Fredrik SWE 1748.1 437.1
## 2972 35 37 Lessing Roland EST 1738.3 410.8
## 2973 36 29 Bailey Lowell USA 1762.3 465.8
## 2974 37 56 Bormolini Thomas ITA 1760.0 400.7
## 2975 38 31 Nelin Jesper SWE 1768.9 482.0
## 2976 39 33 Doll Benedikt GER 1776.3 412.8
## 2977 40 53 Fourcade Simon FRA 1772.1 410.9
## 2978 41 60 Soukup Jaroslav CZE 1784.5 430.5
## 2979 42 49 Kletcherov Michail BUL 1779.9 412.5
## 2980 43 42 Tsvetkov Maxim RUS 1800.2 455.5
## 2981 44 57 Kazar Matej SVK 1804.4 416.8
## 2982 45 43 Doherty Sean USA 1799.2 440.6
## 2983 46 32 Darozhka Aliaksandr BLR 1801.4 475.5
## 2984 47 21 Kaukenas Tomas LTU 1832.6 429.3
## 2985 48 51 Grossegger Sven AUT 1811.5 450.4
## 2986 49 47 Gow Scott CAN 1837.9 448.9
## 2987 50 26 Puchianu Cornel ROU 1856.2 472.2
## 2988 51 55 Hiidensalo Olli FIN 1843.8 485.7
## 2989 52 18 Nordgren Leif USA 1855.7 455.5
## 2990 53 58 Davies Macx CAN 1863.7 467.3
## 2991 54 41 De Lorenzi Christian ITA 1899.7 424.1
## 2992 55 48 Jaeger Martin SUI 1925.4 454.7
## 2993 56 50 Bauer Klemen SLO 1917.8 480.6
## 2994 57 38 Koiv Kauri EST 1924.9 504.2
## 2995 1 52 Schempp Simon GER 962.4 479.3
## 2996 2 14 Bjoerndalen Ole Einar NOR 970.2 484.6
## 2997 3 17 Garanichev Evgeniy RUS 978.7 486.6
## 2998 4 96 Slepov Alexey RUS 974.4 478.3
## 2999 5 20 Fourcade Martin FRA 976.8 498.4
## 3000 6 28 Shipulin Anton RUS 985.3 499.5
## 3001 7 24 Fillon Maillet Quentin FRA 975.8 482.4
## 3002 8 60 Doll Benedikt GER 985.9 504.1
## 3003 9 8 Boe Tarjei NOR 989.6 497.7
## 3004 10 61 Volkov Alexey RUS 977.1 488.9
## 3005 11 21 Svendsen Emil Hegle NOR 987.4 495.9
## 3006 12 35 Tsvetkov Maxim RUS 989.4 490.6
## 3007 13 13 Desthieux Simon FRA 1003.4 504.0
## 3008 14 37 Burke Tim USA 1002.9 513.4
## 3009 15 7 Bailey Lowell USA 1003.5 500.9
## 3010 16 78 Windisch Dominik ITA 1001.6 507.5
## 3011 17 38 Hofer Lukas ITA 1006.4 493.2
## 3012 18 33 Bauer Klemen SLO 1000.0 503.1
## 3013 19 10 Moravec Ondrej CZE 1011.4 516.6
## 3014 20 36 Weger Benjamin SUI 1003.7 489.8
## 3015 21 69 Lesser Erik GER 1009.7 511.2
## 3016 22 32 Grossegger Sven AUT 1007.8 487.1
## 3017 23 73 Eberhard Julian AUT 1034.3 549.2
## 3018 24 9 Smith Nathan CAN 1015.5 497.8
## 3019 25 55 Soukup Jaroslav CZE 1018.9 523.2
## 3020 26 11 Birnbacher Andreas GER 1018.6 497.4
## 3021 27 64 Darozhka Aliaksandr BLR 1012.9 514.9
## 3022 28 15 Anev Krasimir BUL 1009.1 492.2
## 3023 29 1 Yaliotnau Raman BLR 1007.1 503.2
## 3024 30 26 Lindstroem Fredrik SWE 1034.1 538.2
## 3025 31 22 Rastorgujevs Andrejs LAT 1013.7 516.5
## 3026 32 51 Beatrix Jean Guillaume FRA 1021.3 526.2
## 3027 33 43 Fourcade Simon FRA 1019.4 497.8
## 3028 34 19 Davies Macx CAN 1030.9 507.8
## 3029 35 65 Gow Scott CAN 1031.3 528.0
## 3030 36 3 Fak Jakov SLO 1010.4 523.8
## 3031 37 102 Gow Christian CAN 1004.6 500.7
## 3032 38 12 Malyshko Dmitry RUS 1021.4 537.4
## 3033 39 44 Krcmar Michal CZE 1032.2 511.2
## 3034 40 97 Dyuzhev Dmitriy BLR 1020.9 520.3
## 3035 41 31 Chepelin Vladimir BLR 1035.4 529.6
## 3036 42 42 Peiffer Arnd GER 1028.3 511.7
## 3037 43 84 Pidruchnyi Dmytro UKR 1042.1 495.3
## 3038 44 87 Claude Florent FRA 1038.0 506.6
## 3039 45 27 L'Abee-Lund Henrik NOR 1032.1 531.8
## 3040 46 29 Green Brendan CAN 1043.9 536.0
## 3041 47 41 Kazar Matej SVK 1043.5 507.7
## 3042 48 76 Dovzan Miha SLO 1030.5 513.6
## 3043 49 4 Semenov Sergii UKR 1040.1 521.7
## 3044 50 18 Slesingr Michal CZE 1065.3 575.3
## 3045 51 30 Buta George ROU 1031.6 533.7
## 3046 52 90 Nordgren Leif USA 1032.1 525.2
## 3047 53 67 Armgren Ted SWE 1042.4 531.4
## 3048 54 39 Siemakov Volodymyr UKR 1030.6 529.7
## 3049 55 6 Wiestner Serafin SUI 1059.7 519.1
## 3050 56 46 Zhyrnyi Oleksandr UKR 1047.1 552.5
## 3051 57 50 Jaeger Martin SUI 1058.1 545.5
## 3052 58 45 Iliev Vladimir BUL 1061.4 542.2
## 3053 59 85 Gustafsson Daniel SWE 1029.1 519.0
## 3054 60 53 Otcenas Martin SVK 1072.0 532.9
## 3055 61 56 Guzik Grzegorz POL 1050.6 516.9
## 3056 62 93 Kletcherov Michail BUL 1049.0 522.6
## 3057 63 40 Savitskiy Yan KAZ 1053.4 549.3
## 3058 64 34 Boe Johannes Thingnes NOR 1082.5 553.1
## 3059 65 70 Koiv Kauri EST 1050.3 521.7
## 3060 66 106 Boehm Daniel GER 1046.3 520.3
## 3061 67 58 Ermits Kalev EST 1087.8 516.2
## 3062 68 101 Lessing Roland EST 1053.5 535.2
## 3063 69 62 Puchianu Cornel ROU 1062.6 535.7
## 3064 70 98 Trsan Rok SLO 1074.3 518.3
## 3065 71 63 Doherty Sean USA 1091.5 522.6
## 3066 72 68 Dombrovski Karol LTU 1068.6 561.1
## 3067 73 23 Hasilla Tomas SVK 1065.4 535.2
## 3068 74 105 Remmelg Martin EST 1059.3 530.0
## 3069 75 66 Janik Mateusz POL 1056.8 518.4
## 3070 76 104 Krupcik Tomas CZE 1073.4 550.4
## 3071 77 95 Pryma Artem UKR 1087.4 571.1
## 3072 78 81 Finello Jeremy SUI 1076.5 538.3
## 3073 79 79 Sinapov Anton BUL 1079.8 538.9
## 3074 80 5 De Lorenzi Christian ITA 1095.4 560.8
## 3075 81 57 Dixon Scott GBR 1090.0 528.8
## 3076 82 48 Femling Peppe SWE 1113.5 576.6
## 3077 83 88 Pinter Friedrich AUT 1115.6 566.0
## 3078 84 86 Deksnis Ingus LAT 1083.9 542.7
## 3079 85 92 Faur Remus ROU 1092.0 548.4
## 3080 86 82 Joller Ivan SUI 1105.6 585.9
## 3081 87 2 Kaukenas Tomas LTU 1102.1 570.8
## 3082 88 99 Kobonoki Tsukasa JPN 1103.0 530.8
## 3083 89 94 Podkorytov Vassiliy KAZ 1113.6 564.1
## 3084 90 80 Oblak Lenart SLO 1116.6 546.1
## 3085 91 83 Penar Rafal POL 1080.6 561.1
## 3086 92 54 Slotins Roberts LAT 1102.9 574.8
## 3087 93 59 Braun Maxim KAZ 1110.9 571.4
## 3088 94 72 Tachizaki Mikito JPN 1135.8 540.3
## 3089 95 77 Loukkaanhuhta Mikko FIN 1081.2 557.6
## 3090 96 47 Roesch Michael BEL 1127.1 587.1
## 3091 97 89 Sima Michal SVK 1125.5 578.2
## 3092 98 75 Kim Yonggyu KOR 1141.3 576.4
## 3093 99 71 Morton Damon AUS 1147.3 584.0
## 3094 100 91 Strolia Vytautas LTU 1162.3 598.8
## 3095 101 49 Rastic Damir SRB 1154.0 609.9
## 3096 102 100 Koivunen Mikael FIN 1225.7 629.6
## 3097 1 25 Beatrix Jean Guillaume FRA 1762.3 442.1
## 3098 2 5 Svendsen Emil Hegle NOR 1762.0 421.7
## 3099 3 2 Bjoerndalen Ole Einar NOR 1761.6 417.9
## 3100 4 3 Schempp Simon GER 1766.2 424.7
## 3101 5 11 Birnbacher Andreas GER 1763.0 423.7
## 3102 6 10 Desthieux Simon FRA 1770.9 441.6
## 3103 7 1 Fourcade Martin FRA 1786.7 421.8
## 3104 8 13 Boe Johannes Thingnes NOR 1783.7 427.1
## 3105 9 28 Windisch Dominik ITA 1788.2 433.5
## 3106 10 4 Fillon Maillet Quentin FRA 1780.1 464.6
## 3107 11 7 Shipulin Anton RUS 1783.3 441.3
## 3108 12 12 Smith Nathan CAN 1784.9 444.2
## 3109 13 16 Peiffer Arnd GER 1775.9 430.0
## 3110 14 8 Garanichev Evgeniy RUS 1802.6 479.3
## 3111 15 15 Slepov Alexey RUS 1805.2 444.7
## 3112 16 27 Lesser Erik GER 1800.0 445.7
## 3113 17 24 Landertinger Dominik AUT 1813.7 448.3
## 3114 18 6 Boe Tarjei NOR 1818.5 437.8
## 3115 19 18 Lindstroem Fredrik SWE 1817.3 490.1
## 3116 20 14 Malyshko Dmitry RUS 1812.6 441.0
## 3117 21 21 Fourcade Simon FRA 1814.7 468.1
## 3118 22 26 Burke Tim USA 1845.7 457.9
## 3119 23 19 Bailey Lowell USA 1838.1 473.5
## 3120 24 23 Pidruchnyi Dmytro UKR 1839.4 465.4
## 3121 25 9 Doll Benedikt GER 1860.0 466.8
## 3122 26 17 Tsvetkov Maxim RUS 1853.7 473.7
## 3123 27 30 Eberhard Julian AUT 1872.8 463.5
## 3124 28 20 Volkov Alexey RUS 1875.2 462.8
## 3125 29 22 Moravec Ondrej CZE 1921.7 483.3
## 3126 30 29 Bauer Klemen SLO 1909.1 523.6
## 3127 1 1 Schempp Simon GER 1513.0 377.8
## 3128 2 5 Fourcade Martin FRA 1531.4 395.8
## 3129 3 6 Shipulin Anton RUS 1557.2 378.9
## 3130 4 9 Boe Tarjei NOR 1554.5 397.8
## 3131 5 7 Fillon Maillet Quentin FRA 1558.5 381.0
## 3132 6 3 Garanichev Evgeniy RUS 1581.5 400.9
## 3133 7 11 Svendsen Emil Hegle NOR 1582.0 402.9
## 3134 8 2 Bjoerndalen Ole Einar NOR 1575.9 410.1
## 3135 9 14 Burke Tim USA 1599.9 388.6
## 3136 10 33 Fourcade Simon FRA 1606.7 392.3
## 3137 11 26 Birnbacher Andreas GER 1619.7 385.3
## 3138 12 21 Lesser Erik GER 1611.7 392.9
## 3139 13 8 Doll Benedikt GER 1631.5 427.1
## 3140 14 30 Lindstroem Fredrik SWE 1629.3 394.0
## 3141 15 32 Beatrix Jean Guillaume FRA 1630.0 410.9
## 3142 16 10 Volkov Alexey RUS 1621.0 388.4
## 3143 17 12 Tsvetkov Maxim RUS 1623.1 410.4
## 3144 18 16 Windisch Dominik ITA 1640.5 404.0
## 3145 19 43 Pidruchnyi Dmytro UKR 1652.4 405.0
## 3146 20 18 Bauer Klemen SLO 1633.3 416.0
## 3147 21 31 Rastorgujevs Andrejs LAT 1650.1 407.8
## 3148 22 28 Anev Krasimir BUL 1652.9 409.4
## 3149 23 23 Eberhard Julian AUT 1666.8 406.7
## 3150 24 13 Desthieux Simon FRA 1663.8 421.8
## 3151 25 4 Slepov Alexey RUS 1682.3 404.8
## 3152 26 19 Moravec Ondrej CZE 1675.6 387.0
## 3153 27 42 Peiffer Arnd GER 1664.5 393.7
## 3154 28 27 Darozhka Aliaksandr BLR 1673.5 390.6
## 3155 29 15 Bailey Lowell USA 1676.6 419.7
## 3156 30 46 Green Brendan CAN 1691.9 431.5
## 3157 31 36 Fak Jakov SLO 1687.2 408.9
## 3158 32 17 Hofer Lukas ITA 1693.8 435.1
## 3159 33 38 Malyshko Dmitry RUS 1694.8 411.5
## 3160 34 25 Soukup Jaroslav CZE 1700.9 401.9
## 3161 35 24 Smith Nathan CAN 1713.8 405.9
## 3162 36 50 Slesingr Michal CZE 1714.6 413.4
## 3163 37 58 Iliev Vladimir BUL 1714.1 428.3
## 3164 38 20 Weger Benjamin SUI 1725.1 440.0
## 3165 39 49 Semenov Sergii UKR 1728.6 389.3
## 3166 40 56 Zhyrnyi Oleksandr UKR 1734.9 395.2
## 3167 41 47 Kazar Matej SVK 1731.0 449.3
## 3168 42 51 Buta George ROU 1743.5 410.5
## 3169 43 39 Krcmar Michal CZE 1762.9 466.6
## 3170 44 41 Chepelin Vladimir BLR 1756.3 435.4
## 3171 45 35 Gow Scott CAN 1762.4 411.9
## 3172 46 22 Grossegger Sven AUT 1763.5 423.5
## 3173 47 45 L'Abee-Lund Henrik NOR 1752.9 422.1
## 3174 48 55 Wiestner Serafin SUI 1778.8 452.3
## 3175 49 52 Nordgren Leif USA 1781.5 437.0
## 3176 50 44 Claude Florent FRA 1794.6 408.9
## 3177 51 60 Otcenas Martin SVK 1783.4 446.2
## 3178 52 40 Dyuzhev Dmitriy BLR 1815.1 433.4
## 3179 53 57 Jaeger Martin SUI 1811.0 407.8
## 3180 54 54 Siemakov Volodymyr UKR 1837.5 404.2
## 3181 55 53 Armgren Ted SWE 1840.2 482.1
## 3182 56 29 Yaliotnau Raman BLR 1868.2 436.4
## 3183 57 34 Davies Macx CAN 1863.2 424.1
## 3184 58 59 Gustafsson Daniel SWE 1907.1 441.1
## 3185 59 48 Dovzan Miha SLO 1945.6 551.9
## 3186 1 25 Boe Johannes Thingnes NOR 1015.9 511.2
## 3187 2 16 Shipulin Anton RUS 1043.6 527.5
## 3188 3 3 Fourcade Martin FRA 1051.4 539.3
## 3189 4 54 Lesser Erik GER 1060.2 534.7
## 3190 5 13 Wiestner Serafin SUI 1065.1 552.0
## 3191 6 30 Weger Benjamin SUI 1062.6 547.5
## 3192 7 31 Rastorgujevs Andrejs LAT 1044.1 535.8
## 3193 8 32 Boe Tarjei NOR 1069.4 552.4
## 3194 9 8 Peiffer Arnd GER 1071.6 554.4
## 3195 10 2 Bjoentegaard Erlend NOR 1079.4 553.8
## 3196 11 5 Eder Simon AUT 1067.8 530.5
## 3197 12 12 Doll Benedikt GER 1085.3 571.0
## 3198 13 42 Doherty Sean USA 1073.2 552.3
## 3199 14 10 Slesingr Michal CZE 1083.7 534.0
## 3200 15 36 Bailey Lowell USA 1085.8 562.6
## 3201 16 17 Pryma Artem UKR 1084.5 540.4
## 3202 17 55 Os Alexander NOR 1082.7 552.5
## 3203 18 23 Kazar Matej SVK 1088.8 539.5
## 3204 19 68 Ermits Kalev EST 1084.1 559.8
## 3205 20 6 Burke Tim USA 1098.4 554.9
## 3206 21 1 Iliev Vladimir BUL 1104.8 544.0
## 3207 22 33 Hofer Lukas ITA 1095.7 563.4
## 3208 23 26 Birnbacher Andreas GER 1086.1 536.2
## 3209 24 59 Dolder Mario SUI 1083.5 567.3
## 3210 25 14 Savitskiy Yan KAZ 1083.5 536.7
## 3211 26 89 Liadov Yuryi BLR 1099.8 565.3
## 3212 27 7 Eberhard Julian AUT 1133.0 591.1
## 3213 28 53 Povarnitsyn Alexander RUS 1108.5 557.3
## 3214 29 35 Krcmar Michal CZE 1118.0 564.5
## 3215 30 81 Waeger Lorenz AUT 1093.2 554.2
## 3216 31 39 Zhyrnyi Oleksandr UKR 1115.4 588.0
## 3217 32 22 Bauer Klemen SLO 1117.0 558.8
## 3218 33 18 Fillon Maillet Quentin FRA 1105.9 576.7
## 3219 34 4 Windisch Dominik ITA 1131.6 572.6
## 3220 35 21 Semenov Sergii UKR 1121.9 530.1
## 3221 36 24 Chepelin Vladimir BLR 1118.6 599.4
## 3222 37 29 Birkeland Lars Helge NOR 1112.0 586.6
## 3223 38 19 Fourcade Simon FRA 1120.6 583.1
## 3224 39 34 Grossegger Sven AUT 1122.6 591.1
## 3225 40 64 Jaeger Martin SUI 1137.1 566.7
## 3226 41 40 Trsan Rok SLO 1117.0 540.3
## 3227 42 77 De Lorenzi Christian ITA 1114.2 561.4
## 3228 43 11 Tsvetkov Maxim RUS 1115.5 555.8
## 3229 44 43 Beatrix Jean Guillaume FRA 1113.9 560.8
## 3230 45 70 Malyshko Dmitry RUS 1127.9 582.0
## 3231 46 37 Lindstroem Fredrik SWE 1113.9 563.0
## 3232 47 69 Sima Michal SVK 1110.2 564.3
## 3233 48 52 Perras Scott CAN 1139.9 578.3
## 3234 49 73 Rusinov Dmytro UKR 1126.8 599.5
## 3235 50 80 Podkorytov Vassiliy KAZ 1126.0 563.1
## 3236 51 47 Armgren Ted SWE 1133.5 573.7
## 3237 52 27 Desthieux Simon FRA 1147.1 558.0
## 3238 53 78 Sinapov Anton BUL 1138.1 602.1
## 3239 54 82 Boehm Daniel GER 1139.8 576.4
## 3240 55 15 Yaliotnau Raman BLR 1165.8 614.4
## 3241 56 44 Gronman Tuomas FIN 1139.4 584.8
## 3242 56 72 Dovzan Miha SLO 1136.2 588.5
## 3243 58 48 Bormolini Thomas ITA 1139.0 561.3
## 3244 59 61 Toivanen Ahti FIN 1149.7 546.1
## 3245 60 86 Nagai Junji JPN 1138.8 576.2
## 3246 61 92 Faur Remus ROU 1140.6 583.0
## 3247 62 41 Guzik Grzegorz POL 1153.9 575.9
## 3248 63 58 Puchianu Cornel ROU 1145.1 552.5
## 3249 64 57 Strolia Vytautas LTU 1155.7 578.6
## 3250 65 76 Nordgren Leif USA 1154.9 577.7
## 3251 66 28 Volkov Alexey RUS 1109.6 575.0
## 3252 67 83 Zahkna Rene EST 1159.5 611.7
## 3253 68 56 Pantov Anton KAZ 1165.6 572.3
## 3254 69 49 Krupcik Tomas CZE 1164.0 603.6
## 3255 70 85 Szczurek Lukasz POL 1160.9 613.1
## 3256 71 45 Komatz David AUT 1164.5 580.6
## 3257 72 67 Dyuzhev Dmitriy BLR 1197.2 591.4
## 3258 73 88 Arwidson Tobias SWE 1158.5 571.9
## 3259 74 63 Treier Jan EST 1170.6 617.5
## 3260 75 51 Gerdzhikov Dimitar BUL 1194.5 603.6
## 3261 76 38 Buta George ROU 1182.7 614.4
## 3262 77 46 Matiasko Miroslav SVK 1192.1 602.9
## 3263 78 50 Campbell Carsen CAN 1186.6 589.1
## 3264 79 91 Kornev Alexey RUS 1187.0 620.7
## 3265 80 65 Tachizaki Mikito JPN 1191.7 606.0
## 3266 81 66 Kletcherov Michail BUL 1216.6 575.8
## 3267 82 90 Neumann Matthew CAN 1223.1 633.8
## 3268 83 62 Kilchytskyy Vitaliy UKR 1234.0 630.1
## 3269 84 60 Lee Inbok KOR 1239.5 629.0
## 3270 85 79 Hakala Matti FIN 1225.7 613.4
## 3271 86 75 Suslavicius Rokas LTU 1200.4 621.9
## 3272 87 87 Kubaliak Michal SVK 1235.9 618.5
## 3273 88 74 Hudec Matthew CAN 1230.5 628.6
## 3274 1 3 Fourcade Martin FRA 1544.2 371.7
## 3275 2 1 Boe Johannes Thingnes NOR 1552.1 423.7
## 3276 3 2 Shipulin Anton RUS 1591.5 406.2
## 3277 4 11 Eder Simon AUT 1636.7 409.4
## 3278 5 10 Bjoentegaard Erlend NOR 1649.8 420.6
## 3279 6 14 Slesingr Michal CZE 1666.8 412.5
## 3280 7 20 Burke Tim USA 1670.9 442.5
## 3281 8 21 Iliev Vladimir BUL 1678.8 374.9
## 3282 9 16 Pryma Artem UKR 1672.5 413.1
## 3283 10 28 Povarnitsyn Alexander RUS 1688.6 407.4
## 3284 11 19 Ermits Kalev EST 1685.0 438.6
## 3285 12 12 Doll Benedikt GER 1707.1 405.1
## 3286 13 4 Lesser Erik GER 1699.6 475.3
## 3287 14 15 Bailey Lowell USA 1707.4 403.9
## 3288 15 23 Birnbacher Andreas GER 1707.8 403.5
## 3289 16 31 Zhyrnyi Oleksandr UKR 1712.6 409.7
## 3290 17 6 Weger Benjamin SUI 1727.6 439.5
## 3291 18 18 Kazar Matej SVK 1723.4 415.6
## 3292 19 8 Boe Tarjei NOR 1728.2 431.8
## 3293 20 13 Doherty Sean USA 1724.8 403.9
## 3294 21 7 Rastorgujevs Andrejs LAT 1736.0 484.4
## 3295 22 27 Eberhard Julian AUT 1757.0 444.6
## 3296 23 39 Grossegger Sven AUT 1741.9 435.0
## 3297 24 24 Dolder Mario SUI 1753.6 428.5
## 3298 25 35 Semenov Sergii UKR 1755.3 388.9
## 3299 26 32 Bauer Klemen SLO 1765.4 426.8
## 3300 27 5 Wiestner Serafin SUI 1779.3 413.6
## 3301 28 29 Krcmar Michal CZE 1767.1 391.9
## 3302 29 36 Chepelin Vladimir BLR 1774.3 415.3
## 3303 30 37 Birkeland Lars Helge NOR 1762.7 398.9
## 3304 31 17 Os Alexander NOR 1775.5 445.0
## 3305 32 44 Beatrix Jean Guillaume FRA 1801.3 389.6
## 3306 33 49 Rusinov Dmytro UKR 1792.9 417.1
## 3307 34 26 Liadov Yuryi BLR 1802.7 439.4
## 3308 35 38 Fourcade Simon FRA 1826.1 414.7
## 3309 36 25 Savitskiy Yan KAZ 1815.4 472.0
## 3310 37 54 Boehm Daniel GER 1820.7 429.8
## 3311 38 22 Hofer Lukas ITA 1838.3 450.2
## 3312 39 52 Desthieux Simon FRA 1862.2 488.9
## 3313 40 58 Bormolini Thomas ITA 1856.8 469.1
## 3314 41 41 Trsan Rok SLO 1866.3 413.8
## 3315 42 42 De Lorenzi Christian ITA 1865.7 416.9
## 3316 43 60 Nagai Junji JPN 1854.0 429.5
## 3317 44 34 Windisch Dominik ITA 1891.4 431.2
## 3318 45 30 Waeger Lorenz AUT 1868.8 501.7
## 3319 46 59 Toivanen Ahti FIN 1875.5 479.8
## 3320 47 48 Perras Scott CAN 1892.0 442.7
## 3321 48 47 Sima Michal SVK 1896.2 447.9
## 3322 49 50 Podkorytov Vassiliy KAZ 1914.8 479.5
## 3323 50 57 Dovzan Miha SLO 1906.1 431.5
## 3324 51 55 Yaliotnau Raman BLR 1929.8 495.2
## 3325 52 56 Gronman Tuomas FIN 1934.0 463.8
## 3326 53 40 Jaeger Martin SUI 1946.5 481.4
## 3327 1 8 Boe Johannes Thingnes NOR 912.6 457.8
## 3328 2 5 Boe Tarjei NOR 919.5 461.1
## 3329 3 26 Svendsen Emil Hegle NOR 923.9 460.7
## 3330 4 39 Fourcade Martin FRA 930.1 453.5
## 3331 5 49 Grossegger Sven AUT 926.6 466.3
## 3332 6 3 Eder Simon AUT 930.5 469.2
## 3333 7 21 Landertinger Dominik AUT 952.3 479.8
## 3334 8 14 Slesingr Michal CZE 948.1 474.3
## 3335 9 18 Birnbacher Andreas GER 946.5 482.8
## 3336 10 25 Pidruchnyi Dmytro UKR 962.3 491.5
## 3337 11 30 Peiffer Arnd GER 953.9 487.6
## 3338 12 44 Krcmar Michal CZE 955.4 474.8
## 3339 13 13 Moravec Ondrej CZE 960.1 470.1
## 3340 14 24 Rastorgujevs Andrejs LAT 957.0 468.5
## 3341 15 7 Smith Nathan CAN 963.3 506.1
## 3342 16 33 Eberhard Julian AUT 975.3 498.3
## 3343 17 73 Bjoentegaard Erlend NOR 958.2 482.6
## 3344 18 11 Burke Tim USA 963.5 492.7
## 3345 19 42 Lindstroem Fredrik SWE 964.5 492.4
## 3346 20 37 Iliev Vladimir BUL 961.2 479.4
## 3347 21 35 Desthieux Simon FRA 965.5 484.2
## 3348 22 36 Zhyrnyi Oleksandr UKR 954.7 478.5
## 3349 23 20 Anev Krasimir BUL 957.1 481.7
## 3350 24 15 Wiestner Serafin SUI 974.8 498.8
## 3351 25 1 Semenov Sergii UKR 965.9 483.2
## 3352 26 48 Birkeland Lars Helge NOR 980.4 475.7
## 3353 26 57 Kilchytskyy Vitaliy UKR 970.8 499.9
## 3354 28 16 Shipulin Anton RUS 983.7 496.7
## 3355 29 58 Fourcade Simon FRA 981.3 484.6
## 3356 30 67 Tsvetkov Maxim RUS 977.9 486.0
## 3357 31 29 Fillon Maillet Quentin FRA 984.8 512.2
## 3358 32 10 Beatrix Jean Guillaume FRA 982.1 512.2
## 3359 33 40 Bailey Lowell USA 975.5 495.3
## 3360 34 52 Gow Christian CAN 967.7 487.8
## 3361 35 31 Chepelin Vladimir BLR 989.1 496.7
## 3362 36 98 Bocharnikov Sergey BLR 964.8 485.8
## 3363 37 2 Malyshko Dmitry RUS 986.3 470.1
## 3364 38 22 Yaliotnau Raman BLR 981.8 480.3
## 3365 39 34 Weger Benjamin SUI 990.9 474.1
## 3366 40 19 Garanichev Evgeniy RUS 991.4 521.0
## 3367 41 63 Lesser Erik GER 982.2 505.7
## 3368 42 87 Bormolini Thomas ITA 980.5 503.1
## 3369 43 43 Otcenas Martin SVK 1002.4 531.0
## 3370 44 81 Eliseev Matvey RUS 993.9 490.7
## 3371 45 88 Os Alexander NOR 989.6 495.7
## 3372 46 69 Podkorytov Vassiliy KAZ 974.7 498.4
## 3373 47 28 Gow Scott CAN 995.5 495.6
## 3374 48 93 Boehm Daniel GER 978.6 484.2
## 3375 48 102 Komatz David AUT 990.7 489.7
## 3376 50 53 Janik Mateusz POL 976.2 489.1
## 3377 51 89 Guigonnat Antonin FRA 1003.2 481.6
## 3378 52 62 Koiv Kauri EST 990.3 508.5
## 3379 53 41 Hofer Lukas ITA 1000.2 480.2
## 3380 54 60 Krupcik Tomas CZE 985.0 506.0
## 3381 55 45 Davies Macx CAN 999.8 504.0
## 3382 56 46 Slepov Alexey RUS 1008.5 501.6
## 3383 57 55 Dombrovski Karol LTU 1002.0 528.3
## 3384 58 83 Finello Jeremy SUI 981.9 492.7
## 3385 59 65 Stenersen Torstein SWE 995.5 500.6
## 3386 60 95 Matiasko Miroslav SVK 989.3 498.7
## 3387 61 17 Doll Benedikt GER 1027.2 546.7
## 3388 62 50 Dolder Mario SUI 992.8 490.3
## 3389 63 54 De Lorenzi Christian ITA 1006.4 533.4
## 3390 64 76 Faur Remus ROU 997.8 502.9
## 3391 65 6 Windisch Dominik ITA 1030.0 503.2
## 3392 66 32 Bauer Klemen SLO 1006.3 501.4
## 3393 67 72 Dyuzhev Dmitriy BLR 1014.4 525.5
## 3394 68 103 Puchianu Cornel ROU 1015.1 529.9
## 3395 69 23 Kazar Matej SVK 1018.3 514.5
## 3396 70 4 Buta George ROU 1005.2 516.7
## 3397 71 82 Siemakov Volodymyr UKR 1025.8 497.8
## 3398 72 78 Ermits Kalev EST 1022.5 504.1
## 3399 72 86 Perras Scott CAN 1018.2 488.1
## 3400 74 59 Strolia Vytautas LTU 1026.2 525.1
## 3401 75 96 Vaclavik Adam CZE 1027.8 530.2
## 3402 76 79 Orpana Sami FIN 1014.2 519.7
## 3403 77 74 Gerdzhikov Dimitar BUL 1013.5 517.7
## 3404 78 61 Hasilla Tomas SVK 1027.6 541.3
## 3405 79 100 Tachizaki Mikito JPN 1017.3 523.8
## 3406 80 104 Dovzan Miha SLO 1015.2 519.4
## 3407 81 47 Braun Maxim KAZ 1027.6 518.1
## 3408 82 27 Nelin Jesper SWE 1052.3 509.2
## 3409 83 56 Gronman Tuomas FIN 1034.2 494.3
## 3410 84 9 Savitskiy Yan KAZ 1034.1 528.4
## 3411 85 66 Kim Jongmin KOR 1027.9 530.5
## 3412 86 68 Oblak Lenart SLO 1052.8 538.0
## 3413 87 77 Trsan Rok SLO 1052.2 552.7
## 3414 88 71 Guzik Grzegorz POL 1051.4 512.8
## 3415 89 75 Deksnis Ingus LAT 1039.6 521.8
## 3416 90 80 Nagai Junji JPN 1054.2 538.2
## 3417 91 90 Szczurek Lukasz POL 1047.2 550.0
## 3418 92 85 Zahkna Rene EST 1063.9 504.5
## 3419 93 97 Partalov Dimitar BUL 1055.5 518.2
## 3420 94 64 Crnkovic Kresimir CRO 1092.3 560.0
## 3421 95 101 Femling Peppe SWE 1052.2 511.3
## 3422 96 38 Soukup Jaroslav CZE 1101.0 546.1
## 3423 97 99 Slotins Roberts LAT 1085.7 533.0
## 3424 98 51 Jaeger Martin SUI 1117.4 588.9
## 3425 99 91 Treier Jan EST 1090.3 566.1
## 3426 100 92 Suslavicius Rokas LTU 1097.3 584.6
## 3427 101 84 Laponder Marcel GBR 1105.0 543.5
## 3428 102 70 Dixon Scott GBR 1143.1 563.7
## 3429 1 46 Fourcade Martin FRA 2604.9 500.9
## 3430 2 76 Eder Simon AUT 2612.7 580.3
## 3431 3 21 Shipulin Anton RUS 2622.8 512.3
## 3432 4 37 Moravec Ondrej CZE 2626.3 522.4
## 3433 5 44 Tsvetkov Maxim RUS 2644.6 525.8
## 3434 6 23 Garanichev Evgeniy RUS 2658.9 566.2
## 3435 7 66 Stenersen Torstein SWE 2692.6 589.5
## 3436 8 47 Doll Benedikt GER 2720.5 513.2
## 3437 9 64 Bjoentegaard Erlend NOR 2721.2 582.8
## 3438 10 71 Krcmar Michal CZE 2725.0 534.2
## 3439 11 36 Boe Tarjei NOR 2748.8 588.5
## 3440 12 40 Anev Krasimir BUL 2731.7 586.8
## 3441 13 53 Hofer Lukas ITA 2725.9 544.4
## 3442 14 25 Bailey Lowell USA 2750.0 533.8
## 3443 15 19 Birnbacher Andreas GER 2766.2 515.0
## 3444 16 57 Boe Johannes Thingnes NOR 2772.3 690.7
## 3445 17 58 Lesser Erik GER 2784.6 517.1
## 3446 18 59 Green Brendan CAN 2772.8 541.4
## 3447 19 69 Kilchytskyy Vitaliy UKR 2768.0 611.1
## 3448 20 48 Kazar Matej SVK 2772.6 530.2
## 3449 21 82 Kuehn Johannes GER 2805.1 583.9
## 3450 22 104 Komatz David AUT 2776.6 642.4
## 3451 23 27 Lindstroem Fredrik SWE 2806.0 603.1
## 3452 24 29 Landertinger Dominik AUT 2806.3 642.4
## 3453 25 17 Birkeland Lars Helge NOR 2790.3 596.8
## 3454 26 4 Zhyrnyi Oleksandr UKR 2780.7 547.7
## 3455 27 99 Nordgren Leif USA 2787.0 649.8
## 3456 28 22 Fillon Maillet Quentin FRA 2781.0 655.8
## 3457 29 26 Svendsen Emil Hegle NOR 2811.7 579.6
## 3458 30 54 Burke Tim USA 2809.6 593.1
## 3459 31 34 Windisch Dominik ITA 2814.9 520.1
## 3460 32 2 Volkov Alexey RUS 2813.7 541.3
## 3461 33 41 Slesingr Michal CZE 2825.1 592.7
## 3462 34 93 Zahkna Rene EST 2816.4 538.3
## 3463 35 95 Matiasko Miroslav SVK 2829.6 598.0
## 3464 36 32 Fak Jakov SLO 2841.0 577.6
## 3465 37 5 Savitskiy Yan KAZ 2812.3 624.3
## 3466 38 50 Dyuzhev Dmitriy BLR 2839.5 583.9
## 3467 39 9 De Lorenzi Christian ITA 2833.6 596.0
## 3468 40 65 Finello Jeremy SUI 2832.5 600.9
## 3469 41 86 Vaclavik Adam CZE 2845.9 720.3
## 3470 42 94 Bormolini Thomas ITA 2830.2 602.5
## 3471 43 20 Pidruchnyi Dmytro UKR 2795.8 617.3
## 3472 44 30 Bjoerndalen Ole Einar NOR 2864.8 571.5
## 3473 45 91 Gerdzhikov Dimitar BUL 2825.5 564.4
## 3474 46 96 Gow Christian CAN 2815.0 559.9
## 3475 47 105 Szczurek Lukasz POL 2836.3 558.4
## 3476 48 18 Fourcade Simon FRA 2850.1 538.8
## 3477 49 42 Rastorgujevs Andrejs LAT 2875.4 587.5
## 3478 50 77 Trsan Rok SLO 2849.0 604.6
## 3479 51 45 Smith Nathan CAN 2844.6 527.7
## 3480 52 38 Davies Macx CAN 2864.4 557.8
## 3481 53 55 Krupcik Tomas CZE 2848.8 609.0
## 3482 54 16 Nelin Jesper SWE 2868.7 533.7
## 3483 55 13 Eberhard Julian AUT 2906.0 654.9
## 3484 56 39 Grossegger Sven AUT 2866.9 523.7
## 3485 57 84 Tcherezov Ivan RUS 2879.8 535.8
## 3486 58 70 Guzik Grzegorz POL 2879.6 604.2
## 3487 59 35 Semenov Sergii UKR 2887.6 648.3
## 3488 60 33 Chepelin Vladimir BLR 2906.0 588.7
## 3489 61 63 Beatrix Jean Guillaume FRA 2887.4 602.7
## 3490 62 6 Peiffer Arnd GER 2917.5 607.1
## 3491 63 97 Nagai Junji JPN 2926.4 575.6
## 3492 64 100 Strolia Vytautas LTU 2928.6 670.5
## 3493 65 90 Abasheu Dzmitry BLR 2938.3 660.2
## 3494 66 79 Plywaczyk Krzysztof POL 2926.9 689.5
## 3495 67 1 Iliev Vladimir BUL 2951.9 615.3
## 3496 68 75 Kletcherov Michail BUL 2945.0 676.3
## 3497 69 61 Otcenas Martin SVK 2975.6 599.2
## 3498 70 56 Faur Remus ROU 2951.9 689.0
## 3499 71 7 Guigonnat Antonin FRA 2983.6 729.2
## 3500 72 74 Malyshko Dmitry RUS 2996.5 514.1
## 3501 73 81 Dixon Scott GBR 2987.8 591.9
## 3502 74 60 Koiv Kauri EST 2983.6 548.5
## 3503 75 11 Doherty Sean USA 2982.8 556.3
## 3504 76 80 Podkorytov Vassiliy KAZ 2981.8 557.7
## 3505 77 51 Ermits Kalev EST 3018.4 645.5
## 3506 78 67 Tachizaki Mikito JPN 3000.6 632.4
## 3507 79 88 Pantov Anton KAZ 3015.9 730.4
## 3508 80 78 Dombrovski Karol LTU 3004.4 628.3
## 3509 81 52 Gronman Tuomas FIN 3013.4 633.1
## 3510 82 28 Buta George ROU 3029.2 686.0
## 3511 83 83 Armgren Ted SWE 3032.6 606.9
## 3512 84 8 Wiestner Serafin SUI 3045.7 628.2
## 3513 85 31 Weger Benjamin SUI 3048.8 536.1
## 3514 86 72 Dolder Mario SUI 3059.2 613.2
## 3515 87 68 Lusa Daumants LAT 3049.0 747.1
## 3516 88 103 Treier Jan EST 3076.8 584.3
## 3517 89 73 Dovzan Miha SLO 3083.5 605.5
## 3518 90 49 Orpana Sami FIN 3079.3 619.5
## 3519 91 62 Kim Jongmin KOR 3088.5 683.5
## 3520 92 3 Darozhka Aliaksandr BLR 3108.6 689.3
## 3521 93 15 Soukup Jaroslav CZE 3148.3 661.2
## 3522 94 89 Puchianu Cornel ROU 3131.0 663.2
## 3523 95 43 Kaukenas Tomas LTU 3183.8 610.9
## 3524 96 101 Claude Fabien FRA 3215.8 758.6
## 3525 97 87 Jaeger Martin SUI 3206.4 590.7
## 3526 98 92 Koivunen Mikael FIN 3138.5 663.9
## 3527 99 106 Laponder Marcel GBR 3178.0 668.9
## 3528 100 10 Gow Scott CAN 3251.3 670.8
## 3529 101 98 Slotins Roberts LAT 3315.2 708.6
## 3530 102 14 Hasilla Tomas SVK 3334.0 826.1
## 3531 103 85 Oblak Lenart SLO 3338.0 709.6
## 3532 1 30 Lesser Erik GER 1980.4 499.2
## 3533 2 1 Fourcade Martin FRA 1992.7 513.2
## 3534 3 7 Garanichev Evgeniy RUS 1993.3 512.8
## 3535 4 5 Shipulin Anton RUS 2015.5 507.4
## 3536 5 28 Krcmar Michal CZE 2040.1 518.2
## 3537 6 8 Schempp Simon GER 2040.7 501.6
## 3538 7 13 Moravec Ondrej CZE 2030.8 537.1
## 3539 8 14 Desthieux Simon FRA 2039.2 516.9
## 3540 9 9 Eder Simon AUT 2039.0 513.9
## 3541 10 3 Svendsen Emil Hegle NOR 2038.7 517.0
## 3542 11 2 Boe Tarjei NOR 2061.2 504.7
## 3543 12 10 Boe Johannes Thingnes NOR 2060.1 531.2
## 3544 13 4 Fillon Maillet Quentin FRA 2062.8 496.7
## 3545 14 17 Tsvetkov Maxim RUS 2049.2 542.2
## 3546 15 15 Smith Nathan CAN 2060.1 520.7
## 3547 16 22 Fourcade Simon FRA 2058.8 536.8
## 3548 17 21 Lindstroem Fredrik SWE 2067.3 548.4
## 3549 18 25 Grossegger Sven AUT 2073.5 513.0
## 3550 19 12 Doll Benedikt GER 2096.0 551.8
## 3551 20 26 Stenersen Torstein SWE 2070.4 533.4
## 3552 21 20 Bailey Lowell USA 2087.7 527.5
## 3553 22 11 Birnbacher Andreas GER 2104.3 524.1
## 3554 23 18 Landertinger Dominik AUT 2156.1 511.9
## 3555 24 29 Hofer Lukas ITA 2135.4 538.4
## 3556 25 23 Malyshko Dmitry RUS 2137.0 564.8
## 3557 26 19 Pidruchnyi Dmytro UKR 2136.0 562.8
## 3558 27 24 Anev Krasimir BUL 2155.7 528.3
## 3559 28 27 Bjoentegaard Erlend NOR 2166.9 540.7
## 3560 29 16 Peiffer Arnd GER 2186.6 568.4
## 3561 30 6 Bjoerndalen Ole Einar NOR 2293.2 613.2
## 3562 1 1 Fourcade Martin FRA 1676.2 408.9
## 3563 2 19 Moravec Ondrej CZE 1682.0 419.0
## 3564 3 3 Boe Tarjei NOR 1721.3 413.6
## 3565 4 17 Pidruchnyi Dmytro UKR 1719.5 413.5
## 3566 5 14 Peiffer Arnd GER 1715.2 426.0
## 3567 6 21 Fourcade Simon FRA 1703.5 421.3
## 3568 7 7 Garanichev Evgeniy RUS 1724.5 441.0
## 3569 8 5 Fillon Maillet Quentin FRA 1718.7 416.2
## 3570 9 27 Rastorgujevs Andrejs LAT 1735.0 420.9
## 3571 10 8 Boe Johannes Thingnes NOR 1732.4 443.6
## 3572 11 13 Doll Benedikt GER 1742.4 440.0
## 3573 12 4 Bjoerndalen Ole Einar NOR 1731.9 443.2
## 3574 13 2 Svendsen Emil Hegle NOR 1743.9 477.8
## 3575 14 9 Birnbacher Andreas GER 1743.9 425.2
## 3576 15 6 Shipulin Anton RUS 1763.3 423.3
## 3577 16 23 Bailey Lowell USA 1757.2 467.1
## 3578 17 26 Slesingr Michal CZE 1757.6 431.2
## 3579 18 22 Malyshko Dmitry RUS 1763.1 444.7
## 3580 19 20 Tsvetkov Maxim RUS 1757.8 460.5
## 3581 20 12 Desthieux Simon FRA 1770.2 445.3
## 3582 21 10 Eder Simon AUT 1768.8 422.7
## 3583 22 29 Eberhard Julian AUT 1787.5 420.0
## 3584 23 15 Landertinger Dominik AUT 1795.6 440.0
## 3585 24 25 Grossegger Sven AUT 1773.5 470.6
## 3586 25 11 Smith Nathan CAN 1814.7 427.6
## 3587 26 18 Beatrix Jean Guillaume FRA 1806.5 498.5
## 3588 27 28 Krcmar Michal CZE 1819.6 441.8
## 3589 28 16 Lindstroem Fredrik SWE 1841.1 481.2
## 3590 29 30 Anev Krasimir BUL 1841.6 463.3
## 3591 30 24 Slepov Alexey RUS 1892.5 481.0
## 3592 1 6 Eder Simon AUT 1647.1 402.5
## 3593 2 4 Fourcade Martin FRA 1664.0 421.8
## 3594 3 8 Slesingr Michal CZE 1667.2 408.8
## 3595 4 2 Boe Tarjei NOR 1670.6 421.5
## 3596 5 3 Svendsen Emil Hegle NOR 1671.0 425.2
## 3597 6 15 Smith Nathan CAN 1689.9 399.8
## 3598 7 1 Boe Johannes Thingnes NOR 1693.8 451.0
## 3599 8 13 Moravec Ondrej CZE 1705.2 429.0
## 3600 9 40 Garanichev Evgeniy RUS 1706.5 424.1
## 3601 10 10 Pidruchnyi Dmytro UKR 1705.8 437.5
## 3602 11 7 Landertinger Dominik AUT 1713.3 428.9
## 3603 12 14 Rastorgujevs Andrejs LAT 1716.7 429.8
## 3604 13 29 Fourcade Simon FRA 1720.4 404.0
## 3605 14 5 Grossegger Sven AUT 1714.5 426.2
## 3606 15 9 Birnbacher Andreas GER 1715.7 433.3
## 3607 16 23 Anev Krasimir BUL 1714.9 419.1
## 3608 17 30 Tsvetkov Maxim RUS 1731.7 405.8
## 3609 18 16 Eberhard Julian AUT 1747.6 411.9
## 3610 19 31 Fillon Maillet Quentin FRA 1730.5 404.9
## 3611 20 26 Birkeland Lars Helge NOR 1743.0 427.3
## 3612 21 12 Krcmar Michal CZE 1753.2 437.0
## 3613 22 33 Bailey Lowell USA 1755.1 413.3
## 3614 23 19 Lindstroem Fredrik SWE 1763.1 456.5
## 3615 24 28 Shipulin Anton RUS 1768.0 408.5
## 3616 25 21 Desthieux Simon FRA 1756.1 440.5
## 3617 26 18 Burke Tim USA 1778.2 448.2
## 3618 27 17 Bjoentegaard Erlend NOR 1779.7 435.6
## 3619 28 11 Peiffer Arnd GER 1764.1 446.1
## 3620 29 27 Kilchytskyy Vitaliy UKR 1781.1 428.3
## 3621 30 32 Beatrix Jean Guillaume FRA 1774.9 459.4
## 3622 31 51 Guigonnat Antonin FRA 1800.9 404.1
## 3623 32 45 Os Alexander NOR 1797.9 429.2
## 3624 33 24 Wiestner Serafin SUI 1807.7 450.7
## 3625 34 41 Lesser Erik GER 1808.0 429.2
## 3626 35 25 Semenov Sergii UKR 1810.5 415.0
## 3627 36 37 Malyshko Dmitry RUS 1809.6 437.2
## 3628 37 48 Boehm Daniel GER 1812.5 443.3
## 3629 38 44 Eliseev Matvey RUS 1821.4 437.1
## 3630 39 35 Chepelin Vladimir BLR 1839.4 443.3
## 3631 40 22 Zhyrnyi Oleksandr UKR 1836.8 425.7
## 3632 41 58 Finello Jeremy SUI 1830.8 419.2
## 3633 42 59 Stenersen Torstein SWE 1851.7 444.0
## 3634 43 49 Komatz David AUT 1845.8 440.6
## 3635 44 43 Otcenas Martin SVK 1862.6 463.1
## 3636 45 39 Weger Benjamin SUI 1851.1 431.0
## 3637 46 42 Bormolini Thomas ITA 1874.1 455.5
## 3638 47 57 Dombrovski Karol LTU 1867.7 440.0
## 3639 48 36 Bocharnikov Sergey BLR 1862.9 432.5
## 3640 49 54 Krupcik Tomas CZE 1866.9 453.7
## 3641 50 55 Davies Macx CAN 1880.5 475.1
## 3642 51 56 Slepov Alexey RUS 1921.8 408.0
## 3643 52 53 Hofer Lukas ITA 1885.3 436.2
## 3644 53 34 Gow Christian CAN 1900.3 448.7
## 3645 54 47 Gow Scott CAN 1919.2 439.3
## 3646 55 60 Matiasko Miroslav SVK 1930.4 463.4
## 3647 56 38 Yaliotnau Raman BLR 2004.0 525.9
## 3648 57 46 Podkorytov Vassiliy KAZ 1994.2 498.0
## 3649 58 50 Janik Mateusz POL 2005.8 444.5
## 3650 1 33 Shipulin Anton RUS 2465.3 608.4
## 3651 2 28 Fourcade Martin FRA 2509.7 606.9
## 3652 3 16 Semenov Sergii UKR 2512.5 684.1
## 3653 4 32 Bjoerndalen Ole Einar NOR 2519.1 624.7
## 3654 5 30 Schempp Simon GER 2543.7 677.6
## 3655 6 11 Anev Krasimir BUL 2525.9 626.2
## 3656 7 40 Tsvetkov Maxim RUS 2533.8 690.2
## 3657 8 24 Krcmar Michal CZE 2549.4 694.9
## 3658 9 1 Peiffer Arnd GER 2558.0 683.2
## 3659 10 25 Bailey Lowell USA 2543.5 696.7
## 3660 11 4 Doll Benedikt GER 2572.2 683.9
## 3661 12 20 Garanichev Evgeniy RUS 2561.7 677.6
## 3662 13 2 Birkeland Lars Helge NOR 2547.6 629.6
## 3663 14 15 Boe Johannes Thingnes NOR 2592.1 631.1
## 3664 15 3 Fillon Maillet Quentin FRA 2608.6 737.4
## 3665 16 74 Siemakov Volodymyr UKR 2593.9 641.5
## 3666 17 19 Gow Scott CAN 2589.4 646.7
## 3667 18 51 Desthieux Simon FRA 2630.6 698.4
## 3668 19 31 Weger Benjamin SUI 2623.2 704.7
## 3669 20 70 Waeger Lorenz AUT 2622.3 697.0
## 3670 21 42 Lesser Erik GER 2640.6 695.8
## 3671 22 26 Lindstroem Fredrik SWE 2660.5 772.8
## 3672 23 13 Beatrix Jean Guillaume FRA 2656.3 700.2
## 3673 24 10 Windisch Dominik ITA 2667.6 681.8
## 3674 25 35 Samuelsson Sebastian SWE 2645.3 703.5
## 3675 26 57 Fourcade Simon FRA 2668.1 630.7
## 3676 27 99 Femling Peppe SWE 2644.0 663.9
## 3677 28 103 Gjermundshaug Vegard NOR 2672.8 641.9
## 3678 29 81 Nordgren Leif USA 2666.6 652.7
## 3679 30 8 Landertinger Dominik AUT 2712.0 796.4
## 3680 31 22 Gronman Tuomas FIN 2692.9 651.7
## 3681 32 58 L'Abee-Lund Henrik NOR 2704.8 816.1
## 3682 33 90 Schommer Paul USA 2682.2 650.1
## 3683 34 50 Burke Tim USA 2717.8 764.1
## 3684 35 67 Oblak Lenart SLO 2671.6 686.5
## 3685 36 68 Doherty Sean USA 2722.5 713.5
## 3686 37 100 Claude Fabien FRA 2733.8 632.5
## 3687 38 49 Chepelin Vladimir BLR 2730.7 695.5
## 3688 39 47 Babikov Anton RUS 2723.6 755.0
## 3689 40 86 Soukup Jaroslav CZE 2720.2 717.6
## 3690 41 93 Grossegger Sven AUT 2724.2 699.6
## 3691 42 75 Willeitner Michael GER 2748.2 701.9
## 3692 43 69 Kazar Matej SVK 2723.3 706.6
## 3693 44 17 Savitskiy Yan KAZ 2732.9 712.9
## 3694 45 34 Pryma Artem UKR 2750.8 636.2
## 3695 46 61 Gerdzhikov Dimitar BUL 2728.9 721.5
## 3696 47 5 Roesch Michael BEL 2736.7 658.0
## 3697 48 98 Abasheu Dzmitry BLR 2746.2 709.2
## 3698 49 88 Zhyrnyi Oleksandr UKR 2738.9 719.3
## 3699 50 39 Komatz David AUT 2741.7 656.1
## 3700 51 54 Dolder Mario SUI 2753.6 789.1
## 3701 52 83 Kobonoki Tsukasa JPN 2743.7 725.5
## 3702 53 38 Iliev Vladimir BUL 2772.5 695.0
## 3703 54 84 Podkorytov Vassiliy KAZ 2752.5 657.5
## 3704 55 89 Kletcherov Michail BUL 2759.5 742.8
## 3705 56 59 Hoerl Fabian AUT 2758.3 720.6
## 3706 57 9 Moravec Ondrej CZE 2783.1 698.2
## 3707 58 12 Bauer Klemen SLO 2807.2 751.4
## 3708 59 64 Nelin Jesper SWE 2809.4 629.4
## 3709 60 77 Zahkna Rene EST 2775.6 672.3
## 3710 61 52 Bjoentegaard Erlend NOR 2807.5 703.6
## 3711 62 63 Bricis Ilmars LAT 2790.4 732.6
## 3712 63 7 Rastorgujevs Andrejs LAT 2825.3 817.0
## 3713 64 95 Malyshko Dmitry RUS 2802.5 835.0
## 3714 65 104 Dombrovski Karol LTU 2786.5 805.2
## 3715 66 14 Guzik Grzegorz POL 2795.8 739.3
## 3716 67 27 Mesotitsch Daniel AUT 2818.9 753.7
## 3717 68 80 Bormolini Thomas ITA 2806.0 721.3
## 3718 69 37 Koiv Kauri EST 2808.7 718.6
## 3719 70 72 Vaclavik Adam CZE 2817.1 759.6
## 3720 71 106 Finello Jeremy SUI 2810.8 635.2
## 3721 72 18 Kaukenas Tomas LTU 2844.4 709.0
## 3722 73 71 Pantov Anton KAZ 2854.8 668.5
## 3723 74 43 Puchianu Cornel ROU 2853.4 716.1
## 3724 75 41 Green Brendan CAN 2849.9 698.4
## 3725 75 60 Gow Christian CAN 2848.1 805.7
## 3726 77 92 Szczurek Lukasz POL 2829.0 684.7
## 3727 78 56 Dixon Scott GBR 2825.4 707.6
## 3728 79 66 Dovzan Miha SLO 2860.5 722.2
## 3729 80 55 Faur Remus ROU 2854.1 731.2
## 3730 81 44 Bischl Matthias GER 2889.0 772.9
## 3731 82 101 Lessing Roland EST 2897.6 712.2
## 3732 83 29 Pidruchnyi Dmytro UKR 2903.6 766.2
## 3733 84 23 Otcenas Martin SVK 2914.0 769.2
## 3734 85 48 Slesingr Michal CZE 2896.0 750.8
## 3735 86 45 Wiestner Serafin SUI 2934.1 763.2
## 3736 87 53 Eliseev Matvey RUS 2903.6 725.7
## 3737 88 102 Sima Michal SVK 2903.5 703.0
## 3738 89 46 Hasilla Tomas SVK 2940.5 790.5
## 3739 90 105 Lusa Daumants LAT 2906.4 690.2
## 3740 91 36 Hiidensalo Olli FIN 2965.0 655.1
## 3741 92 62 Seppala Tero FIN 2958.1 795.7
## 3742 93 97 Ozaki Kosuke JPN 2938.2 751.0
## 3743 94 87 Zini Rudy ITA 2945.4 745.1
## 3744 95 96 Buta George ROU 2970.2 728.8
## 3745 96 21 Bocharnikov Sergey BLR 3004.3 774.4
## 3746 97 73 Kim Yonggyu KOR 2990.1 680.2
## 3747 98 107 Braun Maxim KAZ 3002.6 857.5
## 3748 99 79 Strolia Vytautas LTU 3005.2 742.5
## 3749 100 76 Montello Giuseppe ITA 3021.2 794.6
## 3750 101 94 Heo Seonhoe KOR 2967.3 777.9
## 3751 102 78 Janik Mateusz POL 3018.1 779.9
## 3752 103 82 Varabei Maksim BLR 3114.3 837.5
## 3753 104 85 Hodzic Edin SRB 3055.6 834.8
## 3754 105 65 Angelis Apostolos GRE 3121.8 801.1
## 3755 1 9 Boe Johannes Thingnes NOR 1819.8 451.2
## 3756 2 17 Fillon Maillet Quentin FRA 1818.3 441.3
## 3757 3 2 Shipulin Anton RUS 1832.0 446.4
## 3758 4 5 Svendsen Emil Hegle NOR 1846.0 466.1
## 3759 5 1 Fourcade Martin FRA 1857.3 470.6
## 3760 6 13 Beatrix Jean Guillaume FRA 1844.1 462.7
## 3761 7 3 Schempp Simon GER 1839.7 453.6
## 3762 8 6 Lesser Erik GER 1854.7 487.8
## 3763 9 10 Eberhard Julian AUT 1877.3 459.6
## 3764 10 7 Bjoerndalen Ole Einar NOR 1862.0 481.9
## 3765 11 23 Birkeland Lars Helge NOR 1861.6 486.8
## 3766 12 15 Windisch Dominik ITA 1904.8 462.6
## 3767 13 8 Tsvetkov Maxim RUS 1896.2 488.4
## 3768 14 12 Babikov Anton RUS 1886.1 499.1
## 3769 15 26 Garanichev Evgeniy RUS 1903.4 474.4
## 3770 16 16 Bailey Lowell USA 1895.1 496.0
## 3771 17 30 Lindstroem Fredrik SWE 1911.6 498.4
## 3772 18 22 Semenov Sergii UKR 1917.7 473.5
## 3773 19 14 Doll Benedikt GER 1932.6 504.3
## 3774 20 25 Desthieux Simon FRA 1950.5 515.0
## 3775 21 4 Peiffer Arnd GER 1945.2 474.8
## 3776 22 21 Pidruchnyi Dmytro UKR 1963.8 509.3
## 3777 23 19 Moravec Ondrej CZE 1962.0 468.0
## 3778 24 20 Slesingr Michal CZE 1966.9 474.1
## 3779 25 27 Siemakov Volodymyr UKR 1959.1 512.4
## 3780 26 24 Rastorgujevs Andrejs LAT 1986.8 534.5
## 3781 27 18 Weger Benjamin SUI 1987.6 494.2
## 3782 28 11 Krcmar Michal CZE 1981.5 526.1
## 3783 29 29 Waeger Lorenz AUT 1987.2 509.5
## 3784 30 28 Gow Scott CAN 2016.1 517.6
## 3785 1 82 Doll Benedikt GER 973.9 496.0
## 3786 2 96 Boe Johannes Thingnes NOR 964.6 490.4
## 3787 3 4 Fourcade Martin FRA 1000.2 509.7
## 3788 4 77 Bailey Lowell USA 989.5 503.9
## 3789 5 81 Moravec Ondrej CZE 1003.2 518.7
## 3790 6 40 Anev Krasimir BUL 989.0 504.7
## 3791 7 10 Eberhard Julian AUT 1013.8 517.0
## 3792 8 55 Bjoerndalen Ole Einar NOR 998.2 517.1
## 3793 9 34 Schempp Simon GER 1003.4 500.6
## 3794 10 9 Garanichev Evgeniy RUS 1004.2 501.2
## 3795 11 62 Sinapov Anton BUL 1010.2 516.2
## 3796 12 32 Peiffer Arnd GER 1006.7 533.8
## 3797 13 1 Iliev Vladimir BUL 1013.4 508.7
## 3798 14 84 Boe Tarjei NOR 1013.2 522.8
## 3799 15 64 Dolder Mario SUI 1002.0 513.4
## 3800 16 65 Hasilla Tomas SVK 1005.7 516.4
## 3801 17 18 Landertinger Dominik AUT 1045.0 540.9
## 3802 18 2 Windisch Dominik ITA 1031.3 524.1
## 3803 18 48 Wiestner Serafin SUI 1030.4 552.2
## 3804 20 30 Puchianu Cornel ROU 1023.8 511.2
## 3805 21 52 Shipulin Anton RUS 1037.4 540.9
## 3806 22 57 Eder Simon AUT 1033.0 536.5
## 3807 23 74 Faur Remus ROU 1021.2 532.3
## 3808 24 5 Savitskiy Yan KAZ 1037.8 550.8
## 3809 25 16 Gow Scott CAN 1041.3 529.7
## 3810 26 14 Nordgren Leif USA 1039.8 538.0
## 3811 27 7 Beatrix Jean Guillaume FRA 1039.5 503.9
## 3812 28 49 Pidruchnyi Dmytro UKR 1041.1 530.7
## 3813 29 33 Koiv Kauri EST 1026.1 533.4
## 3814 30 80 Lindstroem Fredrik SWE 1043.6 547.8
## 3815 31 15 Kaukenas Tomas LTU 1029.7 546.1
## 3816 32 24 Gow Christian CAN 1028.1 522.5
## 3817 33 88 Bauer Klemen SLO 1043.2 541.7
## 3818 34 42 Vaclavik Adam CZE 1056.2 541.0
## 3819 34 46 Desthieux Simon FRA 1060.3 525.6
## 3820 36 101 Svendsen Emil Hegle NOR 1032.5 526.7
## 3821 37 22 Lesser Erik GER 1052.2 564.4
## 3822 38 58 Green Brendan CAN 1055.2 521.9
## 3823 39 97 Doherty Sean USA 1042.5 508.5
## 3824 40 43 Burke Tim USA 1043.7 553.7
## 3825 41 11 Semenov Sergii UKR 1056.5 569.5
## 3826 42 86 Slesingr Michal CZE 1056.4 527.6
## 3827 43 20 Fillon Maillet Quentin FRA 1065.7 555.7
## 3828 44 47 Montello Giuseppe ITA 1053.7 539.0
## 3829 45 100 Bocharnikov Sergey BLR 1046.8 555.2
## 3830 46 79 Bormolini Thomas ITA 1031.9 542.0
## 3831 47 51 Otcenas Martin SVK 1057.8 570.7
## 3832 48 38 Hiidensalo Olli FIN 1053.8 551.0
## 3833 49 29 Babikov Anton RUS 1064.5 551.9
## 3834 50 36 Mesotitsch Daniel AUT 1057.0 539.7
## 3835 51 19 Roesch Michael BEL 1059.8 533.7
## 3836 52 66 Lessing Roland EST 1064.6 528.4
## 3837 53 92 Guzik Grzegorz POL 1062.2 551.4
## 3838 54 71 Strolia Vytautas LTU 1050.8 526.2
## 3839 55 6 Weger Benjamin SUI 1062.6 567.5
## 3840 56 3 Hofer Lukas ITA 1050.5 539.0
## 3841 57 93 Rastorgujevs Andrejs LAT 1081.4 529.6
## 3842 58 87 Zhyrnyi Oleksandr UKR 1063.9 523.9
## 3843 59 12 Nelin Jesper SWE 1075.4 552.4
## 3844 60 26 Stenersen Torstein SWE 1072.1 530.2
## 3845 61 67 Krcmar Michal CZE 1098.1 539.7
## 3846 62 90 Sima Michal SVK 1072.0 535.9
## 3847 63 78 Braun Maxim KAZ 1070.8 549.4
## 3848 64 56 Dovzan Miha SLO 1083.2 545.7
## 3849 65 45 Chepelin Vladimir BLR 1107.7 586.2
## 3850 66 13 Gronman Tuomas FIN 1081.9 544.9
## 3851 67 39 Tachizaki Mikito JPN 1079.6 574.5
## 3852 68 23 Pantov Anton KAZ 1079.3 575.6
## 3853 69 53 Tsvetkov Maxim RUS 1073.3 544.0
## 3854 70 91 Gerdzhikov Dimitar BUL 1087.7 548.2
## 3855 71 69 Seppala Tero FIN 1092.2 563.6
## 3856 72 70 Szczurek Lukasz POL 1083.2 540.8
## 3857 73 73 Siemakov Volodymyr UKR 1092.0 589.5
## 3858 74 99 Buta George ROU 1094.2 553.5
## 3859 75 72 Kobonoki Tsukasa JPN 1096.9 590.8
## 3860 76 102 Samuelsson Sebastian SWE 1107.4 544.6
## 3861 77 17 Kazar Matej SVK 1125.4 525.7
## 3862 78 98 Ermits Kalev EST 1093.0 573.4
## 3863 79 103 Davies Macx CAN 1111.2 553.0
## 3864 80 83 Kim Yonggyu KOR 1094.4 535.3
## 3865 81 94 Finello Jeremy SUI 1099.1 564.7
## 3866 82 68 Varabei Maksim BLR 1124.7 584.3
## 3867 83 50 Crnkovic Kresimir CRO 1133.7 588.1
## 3868 84 54 Bricis Ilmars LAT 1118.0 584.2
## 3869 85 75 Fourcade Simon FRA 1125.2 546.1
## 3870 86 85 Ozaki Kosuke JPN 1106.9 574.1
## 3871 87 59 Morton Damon AUS 1113.7 573.7
## 3872 88 61 Patrijuks Aleksandrs LAT 1117.4 608.3
## 3873 89 31 Lee Inbok KOR 1118.2 576.9
## 3874 90 25 Langer Thierry BEL 1137.6 591.5
## 3875 91 27 Gombos Karoly HUN 1147.9 602.5
## 3876 92 8 Yaliotnau Raman BLR 1181.2 641.6
## 3877 93 37 Trsan Rok SLO 1177.7 657.8
## 3878 94 35 Penar Rafal POL 1149.3 606.7
## 3879 95 41 Dombrovski Karol LTU 1142.6 619.6
## 3880 96 89 Kim Jongmin KOR 1166.2 589.8
## 3881 97 21 Krsmanovic Dejan SRB 1188.5 582.4
## 3882 98 28 Dixon Scott GBR 1193.5 582.7
## 3883 99 60 Hodzic Edin SRB 1196.1 602.8
## 3884 100 76 Petrovic Filip CRO 1190.1 612.8
## 3885 101 95 Angelis Apostolos GRE 1216.7 653.4
## 3886 102 63 Fountain Vinny GBR 1244.9 683.6
## 3887 1 100 Bailey Lowell USA 2346.4 602.1
## 3888 2 51 Moravec Ondrej CZE 2352.8 596.5
## 3889 3 4 Fourcade Martin FRA 2386.2 579.3
## 3890 4 27 Lesser Erik GER 2395.5 600.7
## 3891 5 15 Semenov Sergii UKR 2391.9 597.5
## 3892 6 67 Krcmar Michal CZE 2398.7 611.3
## 3893 7 1 Shipulin Anton RUS 2414.0 584.6
## 3894 8 96 Boe Johannes Thingnes NOR 2429.5 649.2
## 3895 9 3 Birkeland Lars Helge NOR 2425.6 602.3
## 3896 10 11 Weger Benjamin SUI 2426.5 661.2
## 3897 11 99 Volkov Alexey RUS 2432.5 613.1
## 3898 12 80 Eder Simon AUT 2444.9 667.7
## 3899 13 46 Schempp Simon GER 2458.3 593.5
## 3900 14 101 Eberhard Julian AUT 2492.4 584.5
## 3901 15 59 Mesotitsch Daniel AUT 2463.4 614.9
## 3902 16 78 Anev Krasimir BUL 2469.0 668.4
## 3903 17 6 Fillon Maillet Quentin FRA 2500.2 644.2
## 3904 18 94 Slesingr Michal CZE 2507.6 654.0
## 3905 19 58 Doll Benedikt GER 2510.7 599.4
## 3906 20 73 Garanichev Evgeniy RUS 2502.1 655.0
## 3907 21 90 Windisch Dominik ITA 2516.2 651.0
## 3908 22 13 Beatrix Jean Guillaume FRA 2509.4 612.9
## 3909 23 49 Nordgren Leif USA 2511.1 668.2
## 3910 24 63 Iliev Vladimir BUL 2532.6 602.9
## 3911 25 70 Claude Fabien FRA 2543.4 675.6
## 3912 26 5 Landertinger Dominik AUT 2537.5 657.8
## 3913 27 81 Svendsen Emil Hegle NOR 2529.4 608.8
## 3914 28 61 Abasheu Dzmitry BLR 2543.9 643.4
## 3915 29 75 Kazar Matej SVK 2542.9 635.5
## 3916 30 21 Koiv Kauri EST 2540.8 634.7
## 3917 31 8 Chepelin Vladimir BLR 2585.7 673.4
## 3918 32 37 Krupcik Tomas CZE 2597.3 630.5
## 3919 33 93 Savitskiy Yan KAZ 2577.6 679.4
## 3920 34 77 Peiffer Arnd GER 2602.6 605.8
## 3921 34 88 Hofer Lukas ITA 2593.4 604.3
## 3922 36 74 Burke Tim USA 2596.2 724.8
## 3923 37 44 Stenersen Torstein SWE 2591.2 608.2
## 3924 38 68 Lindstroem Fredrik SWE 2597.7 674.6
## 3925 39 16 Sinapov Anton BUL 2598.0 620.1
## 3926 40 41 Bocharnikov Sergey BLR 2592.8 685.2
## 3927 41 32 Pidruchnyi Dmytro UKR 2605.7 659.7
## 3928 42 50 Davies Macx CAN 2581.4 715.4
## 3929 43 24 Gow Scott CAN 2580.0 698.3
## 3930 44 33 Wiestner Serafin SUI 2603.0 685.7
## 3931 45 89 Zahkna Rene EST 2590.6 690.3
## 3932 46 12 Kaukenas Tomas LTU 2600.9 616.7
## 3933 47 95 Bjoerndalen Ole Einar NOR 2616.5 680.3
## 3934 48 66 Lessing Roland EST 2621.7 681.9
## 3935 49 48 Hiidensalo Olli FIN 2631.9 685.4
## 3936 50 22 Dovzan Miha SLO 2636.7 693.3
## 3937 51 40 Desthieux Simon FRA 2637.7 614.0
## 3938 52 83 Samuelsson Sebastian SWE 2655.1 674.3
## 3939 53 91 Nedza-Kubiniec Andrzej POL 2632.0 642.8
## 3940 54 7 Nelin Jesper SWE 2691.4 664.2
## 3941 55 9 Roesch Michael BEL 2661.6 664.5
## 3942 56 14 Rastorgujevs Andrejs LAT 2687.0 770.8
## 3943 57 55 Szczurek Lukasz POL 2669.2 694.3
## 3944 58 23 Doherty Sean USA 2679.1 627.0
## 3945 59 19 Bormolini Thomas ITA 2684.3 629.0
## 3946 60 60 Hasilla Tomas SVK 2684.1 710.5
## 3947 61 92 Yaliotnau Raman BLR 2709.2 764.5
## 3948 62 86 Nagai Junji JPN 2671.2 759.2
## 3949 63 62 Finello Jeremy SUI 2692.6 702.1
## 3950 64 102 Dolder Mario SUI 2676.0 763.2
## 3951 65 10 Otcenas Martin SVK 2695.6 639.2
## 3952 66 57 Dombrovski Karol LTU 2681.2 726.3
## 3953 67 56 Podkorytov Vassiliy KAZ 2742.8 676.0
## 3954 68 47 Kobonoki Tsukasa JPN 2719.9 636.5
## 3955 69 29 Dixon Scott GBR 2721.6 676.4
## 3956 70 98 Tkalenko Ruslan UKR 2751.2 817.7
## 3957 71 38 Pop Gheorghe ROU 2723.4 722.0
## 3958 72 31 Loginov Alexander RUS 2780.7 663.1
## 3959 73 42 Strolia Vytautas LTU 2783.7 701.5
## 3960 74 20 Tachizaki Mikito JPN 2798.9 635.6
## 3961 75 34 Lusa Daumants LAT 2757.0 726.3
## 3962 76 87 Puchianu Cornel ROU 2791.3 765.2
## 3963 77 28 Langer Thierry BEL 2788.8 716.4
## 3964 78 54 Faur Remus ROU 2793.1 718.0
## 3965 79 76 Seppala Tero FIN 2836.4 743.0
## 3966 80 72 Zhyrnyi Oleksandr UKR 2832.9 681.2
## 3967 81 26 Gerdzhikov Dimitar BUL 2834.2 814.9
## 3968 82 64 Oblak Lenart SLO 2828.1 736.5
## 3969 83 45 Kim Jongmin KOR 2842.8 794.0
## 3970 84 36 Vitenko Vladislav KAZ 2871.3 814.9
## 3971 85 18 Loukkaanhuhta Mikko FIN 2873.0 765.0
## 3972 86 85 Green Brendan CAN 2851.1 785.8
## 3973 87 71 Montello Giuseppe ITA 2878.3 708.6
## 3974 88 2 Bauer Klemen SLO 2871.4 774.7
## 3975 89 69 Heo Seonhoe KOR 2898.6 717.2
## 3976 90 25 Guzik Grzegorz POL 2907.4 713.4
## 3977 91 39 Sima Michal SVK 2895.2 744.2
## 3978 92 43 Angelis Apostolos GRE 2919.1 730.6
## 3979 93 79 Patrijuks Aleksandrs LAT 2955.7 799.1
## 3980 94 82 Hodzic Edin SRB 2937.7 744.9
## 3981 95 35 Gombos Karoly HUN 2972.1 746.6
## 3982 96 84 Crnkovic Kresimir CRO 3080.6 878.0
## 3983 97 30 Petrovic Filip CRO 3087.6 864.9
## 3984 98 97 Starodubets Aleksandr KOR 3125.7 862.3
## 3985 99 52 Gleave Alex GBR 3221.1 774.9
## 3986 100 65 Krsmanovic Dejan SRB 3315.5 837.8
## 3987 1 8 Schempp Simon GER 1756.4 439.4
## 3988 2 4 Boe Johannes Thingnes NOR 1779.1 460.1
## 3989 3 17 Eder Simon AUT 1753.9 440.9
## 3990 4 7 Shipulin Anton RUS 1788.0 443.7
## 3991 5 2 Fourcade Martin FRA 1802.2 485.5
## 3992 6 3 Bailey Lowell USA 1770.7 454.6
## 3993 7 22 Landertinger Dominik AUT 1796.5 478.8
## 3994 8 27 Lindstroem Fredrik SWE 1794.6 447.5
## 3995 9 1 Doll Benedikt GER 1806.4 444.8
## 3996 10 9 Peiffer Arnd GER 1803.1 484.4
## 3997 11 18 Garanichev Evgeniy RUS 1804.6 444.4
## 3998 12 16 Anev Krasimir BUL 1794.2 468.6
## 3999 13 29 Slesingr Michal CZE 1817.9 471.9
## 4000 14 21 Boe Tarjei NOR 1816.6 471.9
## 4001 15 24 Fillon Maillet Quentin FRA 1811.4 441.0
## 4002 16 5 Moravec Ondrej CZE 1814.7 471.6
## 4003 17 30 Bauer Klemen SLO 1818.9 453.4
## 4004 18 14 Beatrix Jean Guillaume FRA 1820.0 453.9
## 4005 19 11 Eberhard Julian AUT 1847.9 457.9
## 4006 20 19 Iliev Vladimir BUL 1838.3 493.2
## 4007 21 10 Lesser Erik GER 1836.7 448.7
## 4008 22 15 Krcmar Michal CZE 1831.2 460.2
## 4009 23 6 Bjoerndalen Ole Einar NOR 1846.6 465.2
## 4010 24 23 Windisch Dominik ITA 1861.4 452.6
## 4011 25 25 Pidruchnyi Dmytro UKR 1863.5 476.0
## 4012 26 13 Tsvetkov Maxim RUS 1863.9 474.2
## 4013 27 20 Semenov Sergii UKR 1856.3 493.3
## 4014 28 12 Svendsen Emil Hegle NOR 1879.5 461.7
## 4015 29 28 Wiestner Serafin SUI 1907.0 469.8
## 4016 30 26 Dolder Mario SUI 1915.6 498.4
## 4017 1 3 Fourcade Martin FRA 1494.1 383.8
## 4018 2 2 Boe Johannes Thingnes NOR 1544.8 368.9
## 4019 3 8 Bjoerndalen Ole Einar NOR 1533.5 396.3
## 4020 4 21 Shipulin Anton RUS 1547.8 366.6
## 4021 5 5 Moravec Ondrej CZE 1546.6 392.2
## 4022 6 4 Bailey Lowell USA 1532.0 378.1
## 4023 7 6 Anev Krasimir BUL 1539.1 401.1
## 4024 8 7 Eberhard Julian AUT 1564.5 391.3
## 4025 9 14 Boe Tarjei NOR 1570.2 391.9
## 4026 10 9 Schempp Simon GER 1565.8 391.6
## 4027 11 1 Doll Benedikt GER 1567.5 375.3
## 4028 12 22 Eder Simon AUT 1591.1 392.7
## 4029 13 27 Beatrix Jean Guillaume FRA 1596.8 381.5
## 4030 14 28 Pidruchnyi Dmytro UKR 1603.4 374.3
## 4031 15 41 Semenov Sergii UKR 1603.7 374.3
## 4032 16 33 Bauer Klemen SLO 1609.5 420.6
## 4033 17 30 Lindstroem Fredrik SWE 1616.4 379.0
## 4034 18 13 Iliev Vladimir BUL 1611.1 375.2
## 4035 19 12 Peiffer Arnd GER 1614.4 414.9
## 4036 20 10 Garanichev Evgeniy RUS 1613.2 398.3
## 4037 21 17 Landertinger Dominik AUT 1621.3 390.6
## 4038 22 43 Fillon Maillet Quentin FRA 1625.9 371.9
## 4039 23 32 Gow Christian CAN 1611.5 379.3
## 4040 24 47 Otcenas Martin SVK 1620.8 404.0
## 4041 25 18 Windisch Dominik ITA 1626.1 369.6
## 4042 26 19 Wiestner Serafin SUI 1646.7 387.4
## 4043 27 35 Desthieux Simon FRA 1644.4 432.1
## 4044 28 37 Lesser Erik GER 1645.6 411.4
## 4045 29 15 Dolder Mario SUI 1639.5 401.0
## 4046 30 42 Slesingr Michal CZE 1654.9 437.1
## 4047 31 51 Roesch Michael BEL 1659.7 378.4
## 4048 32 40 Burke Tim USA 1668.8 407.1
## 4049 33 24 Savitskiy Yan KAZ 1667.4 403.3
## 4050 34 44 Montello Giuseppe ITA 1666.5 397.2
## 4051 35 29 Koiv Kauri EST 1661.8 418.1
## 4052 36 48 Hiidensalo Olli FIN 1691.3 428.4
## 4053 37 57 Rastorgujevs Andrejs LAT 1691.9 415.9
## 4054 38 20 Puchianu Cornel ROU 1681.3 399.6
## 4055 39 49 Babikov Anton RUS 1692.3 384.5
## 4056 40 45 Bocharnikov Sergey BLR 1678.4 401.6
## 4057 41 31 Kaukenas Tomas LTU 1688.0 425.5
## 4058 42 23 Faur Remus ROU 1693.7 419.3
## 4059 43 16 Hasilla Tomas SVK 1696.6 417.1
## 4060 44 59 Nelin Jesper SWE 1722.2 399.7
## 4061 45 58 Zhyrnyi Oleksandr UKR 1713.6 416.7
## 4062 46 60 Stenersen Torstein SWE 1736.8 383.7
## 4063 47 25 Gow Scott CAN 1734.0 409.5
## 4064 48 46 Bormolini Thomas ITA 1718.8 399.4
## 4065 49 26 Nordgren Leif USA 1718.2 414.9
## 4066 50 50 Mesotitsch Daniel AUT 1739.8 407.8
## 4067 51 52 Lessing Roland EST 1728.6 416.2
## 4068 52 38 Green Brendan CAN 1742.1 408.1
## 4069 53 55 Weger Benjamin SUI 1764.7 395.2
## 4070 54 34 Vaclavik Adam CZE 1778.6 426.2
## 4071 55 39 Doherty Sean USA 1795.1 406.4
## 4072 56 54 Strolia Vytautas LTU 1804.2 418.5
## 4073 57 53 Guzik Grzegorz POL 1815.0 420.4
## 4074 1 38 Fourcade Martin FRA 934.8 480.3
## 4075 2 24 Moravec Ondrej CZE 929.0 470.8
## 4076 3 20 Svendsen Emil Hegle NOR 943.7 478.2
## 4077 4 3 Boe Johannes Thingnes NOR 939.5 478.2
## 4078 5 22 Peiffer Arnd GER 943.8 477.3
## 4079 6 45 Eder Simon AUT 950.0 494.6
## 4080 7 42 Rastorgujevs Andrejs LAT 940.9 492.5
## 4081 8 23 Bjoerndalen Ole Einar NOR 956.8 470.6
## 4082 9 40 Eberhard Julian AUT 972.8 474.6
## 4083 10 48 Roesch Michael BEL 949.1 491.3
## 4084 11 10 Landertinger Dominik AUT 968.1 476.5
## 4085 12 37 Rees Roman GER 955.1 483.9
## 4086 13 61 Christiansen Vetle Sjaastad NOR 950.0 490.7
## 4087 14 2 Krcmar Michal CZE 975.8 497.7
## 4088 15 44 Hofer Lukas ITA 980.6 481.0
## 4089 16 28 Bailey Lowell USA 961.6 492.6
## 4090 17 29 Windisch Dominik ITA 978.7 506.3
## 4091 18 80 Lapshin Timofei KOR 973.3 509.4
## 4092 19 1 Graf Florian GER 970.2 486.7
## 4093 20 50 Bauer Klemen SLO 980.0 513.1
## 4094 21 25 Birkeland Lars Helge NOR 979.6 485.9
## 4095 21 57 Anev Krasimir BUL 975.3 505.7
## 4096 23 30 Garanichev Evgeniy RUS 983.2 524.1
## 4097 24 18 Desthieux Simon FRA 994.6 487.6
## 4098 25 6 Samuelsson Sebastian SWE 971.2 502.0
## 4099 26 8 Pidruchnyi Dmytro UKR 987.9 509.8
## 4100 27 4 Eliseev Matvey RUS 974.0 486.3
## 4101 28 5 Kaukenas Tomas LTU 964.9 495.7
## 4102 29 27 Shipulin Anton RUS 997.5 521.6
## 4103 30 41 Doll Benedikt GER 992.3 514.2
## 4104 31 13 Mesotitsch Daniel AUT 979.3 502.1
## 4105 32 15 Boe Tarjei NOR 994.1 525.6
## 4106 33 47 Iliev Vladimir BUL 993.9 529.3
## 4107 34 75 Nawrath Philipp GER 986.3 491.9
## 4108 35 31 Slesingr Michal CZE 984.6 488.5
## 4109 36 17 Dolder Mario SUI 991.6 527.2
## 4110 37 34 Savitskiy Yan KAZ 989.8 491.1
## 4111 38 74 Babikov Anton RUS 974.2 503.3
## 4112 39 67 Hiidensalo Olli FIN 1005.6 525.7
## 4113 40 26 Weger Benjamin SUI 980.0 502.9
## 4114 41 93 Claude Fabien FRA 990.4 498.4
## 4115 42 46 Pryma Artem UKR 1002.6 527.6
## 4116 43 14 Nordgren Leif USA 1004.1 505.4
## 4117 44 71 Doherty Sean USA 998.5 521.4
## 4118 45 21 Green Brendan CAN 997.3 505.4
## 4119 46 62 Trsan Rok SLO 1005.1 515.6
## 4120 47 12 Semenov Sergii UKR 1019.9 534.0
## 4121 48 43 Fillon Maillet Quentin FRA 1019.7 525.5
## 4122 49 84 Abasheu Dzmitry BLR 1013.6 528.5
## 4123 50 77 Gow Christian CAN 993.4 515.3
## 4124 51 92 Kobonoki Tsukasa JPN 1014.4 518.7
## 4125 52 76 Faur Remus ROU 1006.4 511.6
## 4126 53 66 Zahkna Rene EST 1007.6 508.6
## 4127 54 96 Gerdzhikov Dimitar BUL 1026.2 534.7
## 4128 55 7 Bocharnikov Sergey BLR 1038.7 556.0
## 4129 56 78 Lessing Roland EST 1028.0 524.7
## 4130 57 87 Zhyrnyi Oleksandr UKR 1024.1 548.8
## 4131 58 32 Lindstroem Fredrik SWE 1018.6 545.6
## 4132 59 58 Siemakov Volodymyr UKR 1033.3 553.6
## 4133 60 33 Tsvetkov Maxim RUS 1006.0 540.4
## 4134 61 36 Beatrix Jean Guillaume FRA 1024.4 555.0
## 4135 62 99 Finello Jeremy SUI 1021.3 539.9
## 4136 63 70 Varabei Maksim BLR 1034.3 528.1
## 4137 64 63 Vaclavik Adam CZE 1040.1 539.8
## 4138 65 60 Waeger Lorenz AUT 1023.8 523.3
## 4139 66 54 Montello Giuseppe ITA 1040.5 556.5
## 4140 67 39 Gow Scott CAN 1030.5 528.4
## 4141 68 49 Chepelin Vladimir BLR 1052.7 556.6
## 4142 69 65 Podkorytov Vassiliy KAZ 1024.8 507.4
## 4143 70 64 Kazar Matej SVK 1044.0 533.9
## 4144 71 88 Soukup Jaroslav CZE 1040.8 553.4
## 4145 72 19 Sinapov Anton BUL 1063.9 511.3
## 4146 73 73 Yeremin Roman KAZ 1057.2 516.2
## 4147 74 86 Oblak Lenart SLO 1023.3 518.8
## 4148 75 90 Buta George ROU 1034.7 521.2
## 4149 76 68 Wiestner Serafin SUI 1058.4 517.8
## 4150 77 72 Tachizaki Mikito JPN 1058.7 570.9
## 4151 78 55 Dovzan Miha SLO 1052.4 502.4
## 4152 79 101 Soederhielm Tiio SWE 1040.3 561.8
## 4153 80 51 Otcenas Martin SVK 1048.9 545.3
## 4154 81 16 Gronman Tuomas FIN 1057.9 538.0
## 4155 82 69 Szczurek Lukasz POL 1041.7 532.8
## 4156 83 9 Hasilla Tomas SVK 1058.5 577.5
## 4157 84 100 Schommer Paul USA 1067.9 539.0
## 4158 85 85 Strolia Vytautas LTU 1088.5 557.9
## 4159 86 52 Fourcade Simon FRA 1087.4 522.9
## 4160 87 89 Remmelg Martin EST 1068.2 523.2
## 4161 88 35 Puchianu Cornel ROU 1086.2 563.6
## 4162 89 56 Angelis Apostolos GRE 1071.6 546.8
## 4163 90 81 Braun Maxim KAZ 1080.6 560.2
## 4164 91 94 Bormolini Thomas ITA 1075.6 556.8
## 4165 92 53 Dombrovski Karol LTU 1072.4 546.1
## 4166 93 83 Hoerl Fabian AUT 1074.7 543.0
## 4167 94 97 Malyshko Dmitry RUS 1082.5 559.5
## 4168 95 91 Seppala Tero FIN 1087.9 594.3
## 4169 96 59 Stenersen Torstein SWE 1098.7 537.9
## 4170 97 11 Guzik Grzegorz POL 1088.5 533.9
## 4171 98 79 Bricis Ilmars LAT 1090.6 542.8
## 4172 99 98 Nedza-Kubiniec Andrzej POL 1098.3 533.2
## 4173 100 82 Lusa Daumants LAT 1149.6 581.7
## 4174 101 95 Kim Jongmin KOR 1156.0 592.1
## 4175 1 5 Peiffer Arnd GER 1521.3 398.3
## 4176 2 6 Eder Simon AUT 1528.3 396.7
## 4177 3 3 Svendsen Emil Hegle NOR 1534.4 396.7
## 4178 4 2 Moravec Ondrej CZE 1534.2 401.0
## 4179 5 1 Fourcade Martin FRA 1548.3 413.9
## 4180 6 15 Hofer Lukas ITA 1557.7 376.9
## 4181 7 4 Boe Johannes Thingnes NOR 1560.6 401.3
## 4182 8 13 Christiansen Vetle Sjaastad NOR 1555.9 400.3
## 4183 9 7 Rastorgujevs Andrejs LAT 1570.5 434.1
## 4184 10 29 Shipulin Anton RUS 1574.0 418.9
## 4185 11 32 Boe Tarjei NOR 1592.2 380.9
## 4186 12 23 Garanichev Evgeniy RUS 1580.4 374.3
## 4187 12 24 Desthieux Simon FRA 1592.9 382.2
## 4188 14 12 Rees Roman GER 1583.1 390.5
## 4189 15 18 Lapshin Timofei KOR 1594.0 411.5
## 4190 16 22 Anev Krasimir BUL 1598.5 385.2
## 4191 17 21 Birkeland Lars Helge NOR 1592.5 386.9
## 4192 18 44 Doherty Sean USA 1598.8 382.8
## 4193 19 27 Eliseev Matvey RUS 1593.5 414.6
## 4194 20 30 Doll Benedikt GER 1618.2 379.3
## 4195 21 26 Pidruchnyi Dmytro UKR 1616.3 415.9
## 4196 22 10 Roesch Michael BEL 1607.9 381.3
## 4197 23 11 Landertinger Dominik AUT 1637.7 407.4
## 4198 24 17 Windisch Dominik ITA 1637.7 381.2
## 4199 25 19 Graf Florian GER 1638.5 402.5
## 4200 26 25 Samuelsson Sebastian SWE 1639.2 389.3
## 4201 27 16 Bailey Lowell USA 1628.5 434.5
## 4202 28 31 Mesotitsch Daniel AUT 1638.9 419.9
## 4203 29 8 Bjoerndalen Ole Einar NOR 1646.9 392.9
## 4204 30 33 Iliev Vladimir BUL 1644.1 410.0
## 4205 31 40 Weger Benjamin SUI 1653.5 385.5
## 4206 32 14 Krcmar Michal CZE 1672.3 402.3
## 4207 33 35 Slesingr Michal CZE 1671.8 402.9
## 4208 34 36 Dolder Mario SUI 1660.2 424.9
## 4209 35 41 Claude Fabien FRA 1670.7 401.4
## 4210 36 42 Pryma Artem UKR 1665.2 391.6
## 4211 37 50 Gow Christian CAN 1669.5 395.4
## 4212 38 49 Abasheu Dzmitry BLR 1678.2 416.8
## 4213 39 46 Trsan Rok SLO 1680.1 421.4
## 4214 40 20 Bauer Klemen SLO 1684.6 409.2
## 4215 41 47 Semenov Sergii UKR 1696.1 389.6
## 4216 42 34 Nawrath Philipp GER 1703.7 442.1
## 4217 43 43 Nordgren Leif USA 1698.3 391.4
## 4218 44 28 Kaukenas Tomas LTU 1710.2 408.5
## 4219 45 56 Lessing Roland EST 1738.4 399.2
## 4220 46 54 Gerdzhikov Dimitar BUL 1739.2 400.6
## 4221 47 51 Kobonoki Tsukasa JPN 1736.8 398.6
## 4222 48 55 Bocharnikov Sergey BLR 1756.7 443.6
## 4223 49 58 Lindstroem Fredrik SWE 1757.5 425.9
## 4224 50 45 Green Brendan CAN 1762.7 456.8
## 4225 51 57 Zhyrnyi Oleksandr UKR 1793.2 409.1
## 4226 52 53 Zahkna Rene EST 1787.7 406.6
## 4227 53 39 Hiidensalo Olli FIN 1861.2 471.8
## 4228 54 59 Siemakov Volodymyr UKR 1865.6 437.9
## 4229 1 31 Fourcade Martin FRA 1014.4 520.2
## 4230 2 16 Shipulin Anton RUS 1001.8 503.4
## 4231 3 25 Svendsen Emil Hegle NOR 1017.3 520.8
## 4232 4 22 Boe Johannes Thingnes NOR 1013.6 499.2
## 4233 5 38 Iliev Vladimir BUL 1016.6 526.1
## 4234 6 7 Rastorgujevs Andrejs LAT 1019.2 518.4
## 4235 7 42 Semenov Sergii UKR 1010.9 509.9
## 4236 8 43 Moravec Ondrej CZE 1019.3 510.4
## 4237 9 20 Eberhard Julian AUT 1044.2 508.5
## 4238 10 73 Bjoentegaard Erlend NOR 1033.6 527.9
## 4239 11 11 Peiffer Arnd GER 1027.2 515.3
## 4240 12 6 Tsvetkov Maxim RUS 1025.2 511.6
## 4241 13 44 Samuelsson Sebastian SWE 1038.7 527.3
## 4242 14 2 Bjoerndalen Ole Einar NOR 1029.5 508.7
## 4243 15 45 Lesser Erik GER 1035.1 529.8
## 4244 16 34 Fillon Maillet Quentin FRA 1034.9 504.9
## 4245 17 27 Schempp Simon GER 1040.8 534.9
## 4246 18 15 Gow Scott CAN 1034.8 519.9
## 4247 19 66 Soukup Jaroslav CZE 1030.9 520.2
## 4248 20 3 Bailey Lowell USA 1048.4 536.3
## 4249 21 33 Windisch Dominik ITA 1043.1 513.8
## 4250 22 29 Pidruchnyi Dmytro UKR 1048.7 513.9
## 4251 23 1 Pryma Artem UKR 1048.5 514.3
## 4252 24 36 Wiestner Serafin SUI 1062.3 565.5
## 4253 25 30 Doll Benedikt GER 1068.4 526.3
## 4254 26 5 Mesotitsch Daniel AUT 1056.4 545.9
## 4255 27 57 Kilchytskyy Vitaliy UKR 1042.3 521.1
## 4256 28 9 Krcmar Michal CZE 1061.1 554.2
## 4257 29 50 Komatz David AUT 1042.4 523.2
## 4258 30 23 Roesch Michael BEL 1049.1 545.6
## 4259 31 67 Beatrix Jean Guillaume FRA 1058.9 548.4
## 4260 32 48 Hofer Lukas ITA 1058.1 520.7
## 4261 33 8 Chepelin Vladimir BLR 1068.7 536.9
## 4262 34 81 Yaliotnau Raman BLR 1061.5 519.6
## 4263 35 13 Desthieux Simon FRA 1059.9 542.4
## 4264 36 35 Birkeland Lars Helge NOR 1064.2 533.4
## 4265 37 24 Bauer Klemen SLO 1067.2 530.9
## 4266 38 21 Anev Krasimir BUL 1055.4 539.2
## 4267 39 71 Hiidensalo Olli FIN 1074.0 551.7
## 4268 40 80 Dolder Mario SUI 1070.5 559.9
## 4269 41 47 Garanichev Evgeniy RUS 1071.3 540.8
## 4270 42 40 Otcenas Martin SVK 1074.6 555.9
## 4271 43 32 Hasilla Tomas SVK 1071.7 530.0
## 4272 44 26 Slesingr Michal CZE 1085.6 509.7
## 4273 45 77 Savitskiy Yan KAZ 1072.7 540.9
## 4274 46 72 Bischl Matthias GER 1065.5 550.6
## 4275 47 12 Lindstroem Fredrik SWE 1088.3 558.7
## 4276 48 46 Eliseev Matvey RUS 1090.6 563.2
## 4277 49 19 Eder Simon AUT 1078.7 577.6
## 4278 50 10 Babikov Anton RUS 1085.3 528.8
## 4279 51 51 Dovzan Miha SLO 1077.6 550.8
## 4280 52 39 Varabei Maksim BLR 1080.9 567.5
## 4281 53 63 Kazar Matej SVK 1098.1 549.6
## 4282 54 37 Green Brendan CAN 1085.8 540.7
## 4283 55 78 Currier Russell USA 1095.0 545.7
## 4284 56 83 Femling Peppe SWE 1090.9 549.2
## 4285 57 84 Gerdzhikov Dimitar BUL 1081.5 539.5
## 4286 58 90 Oblak Lenart SLO 1077.7 539.7
## 4287 59 60 Sinapov Anton BUL 1101.5 554.2
## 4288 60 61 Malyshko Dmitry RUS 1096.7 558.7
## 4289 61 82 Begue Aristide FRA 1099.6 536.3
## 4290 62 102 Finello Jeremy SUI 1097.2 575.8
## 4291 63 98 Sima Michal SVK 1102.2 577.6
## 4292 64 65 Braun Maxim KAZ 1090.6 542.0
## 4293 65 18 Fourcade Simon FRA 1121.7 556.5
## 4294 66 28 Weger Benjamin SUI 1104.1 540.2
## 4295 67 56 Kaukenas Tomas LTU 1106.1 570.7
## 4296 68 58 Tachizaki Mikito JPN 1113.0 558.7
## 4297 69 95 Waeger Lorenz AUT 1102.3 560.5
## 4298 70 17 Puchianu Cornel ROU 1115.4 598.6
## 4299 71 69 Guzik Grzegorz POL 1117.6 567.8
## 4300 72 101 Zhyrnyi Oleksandr UKR 1107.6 558.3
## 4301 73 88 Podkorytov Vassiliy KAZ 1118.5 557.5
## 4302 74 75 Davies Macx CAN 1118.4 564.5
## 4303 75 97 Remmelg Martin EST 1109.3 567.5
## 4304 76 96 Kristejn Lukas CZE 1120.2 566.2
## 4305 77 92 Darozhka Aliaksandr BLR 1116.0 590.7
## 4306 78 41 Dorfer Matthias GER 1102.8 564.5
## 4307 79 100 Buta George ROU 1114.9 577.0
## 4308 80 79 Lessing Roland EST 1109.8 579.0
## 4309 81 104 Pantov Anton KAZ 1120.7 573.1
## 4310 82 52 Bormolini Thomas ITA 1119.2 565.8
## 4311 83 54 Trsan Rok SLO 1154.0 605.7
## 4312 84 74 Dombrovski Karol LTU 1117.8 575.9
## 4313 85 4 Koiv Kauri EST 1150.8 555.7
## 4314 86 62 Faur Remus ROU 1137.3 583.5
## 4315 87 55 Bricis Ilmars LAT 1142.7 589.1
## 4316 88 87 Strolia Vytautas LTU 1144.5 570.6
## 4317 89 99 Montello Giuseppe ITA 1127.2 598.1
## 4318 90 86 Nedza-Kubiniec Andrzej POL 1129.7 575.1
## 4319 91 85 Ozaki Kosuke JPN 1136.0 603.8
## 4320 92 89 Gjesbakk Fredrik NOR 1168.6 594.6
## 4321 93 49 Leitner Felix AUT 1175.9 614.8
## 4322 94 76 Crnkovic Kresimir CRO 1168.4 610.1
## 4323 95 53 Orpana Sami FIN 1160.4 629.0
## 4324 96 68 Penar Rafal POL 1168.1 607.0
## 4325 97 94 Starodubets Aleksandr KOR 1142.1 568.6
## 4326 98 64 Kim Jongmin KOR 1187.5 639.4
## 4327 99 70 Dixon Scott GBR 1195.6 608.9
## 4328 100 93 Huhtala Teemu FIN 1224.1 609.7
## 4329 101 91 Slotins Roberts LAT 1230.2 638.4
## 4330 1 1 Fourcade Martin FRA 1799.0 437.4
## 4331 2 6 Schempp Simon GER 1831.4 451.3
## 4332 3 16 Babikov Anton RUS 1826.9 466.5
## 4333 4 20 Moravec Ondrej CZE 1827.5 465.5
## 4334 5 24 Pidruchnyi Dmytro UKR 1828.2 469.1
## 4335 6 19 Eliseev Matvey RUS 1828.5 439.5
## 4336 7 5 Bjoerndalen Ole Einar NOR 1832.2 446.6
## 4337 8 11 Fillon Maillet Quentin FRA 1830.8 440.7
## 4338 9 3 Boe Johannes Thingnes NOR 1829.9 444.8
## 4339 10 15 Desthieux Simon FRA 1845.1 446.5
## 4340 11 8 Lesser Erik GER 1844.5 459.0
## 4341 12 2 Shipulin Anton RUS 1844.1 452.2
## 4342 13 23 Beatrix Jean Guillaume FRA 1835.8 473.2
## 4343 14 7 Peiffer Arnd GER 1839.9 462.6
## 4344 15 21 Birkeland Lars Helge NOR 1854.7 452.1
## 4345 16 30 Windisch Dominik ITA 1868.8 465.9
## 4346 17 27 Semenov Sergii UKR 1864.5 469.8
## 4347 18 10 Eberhard Julian AUT 1881.8 466.7
## 4348 19 12 Krcmar Michal CZE 1868.1 469.0
## 4349 20 28 Bjoentegaard Erlend NOR 1888.4 484.7
## 4350 21 9 Bailey Lowell USA 1877.2 496.1
## 4351 22 4 Tsvetkov Maxim RUS 1867.7 481.1
## 4352 23 17 Eder Simon AUT 1889.0 466.7
## 4353 24 14 Doll Benedikt GER 1905.3 490.6
## 4354 25 13 Rastorgujevs Andrejs LAT 1909.9 460.3
## 4355 26 22 Roesch Michael BEL 1892.4 476.1
## 4356 27 29 Soukup Jaroslav CZE 1904.3 524.5
## 4357 28 26 Iliev Vladimir BUL 1923.2 490.6
## 4358 29 25 Samuelsson Sebastian SWE 1940.9 473.6
## 4359 30 18 Slesingr Michal CZE 1948.1 500.5
## 4360 1 1 Fourcade Martin FRA 1620.3 404.2
## 4361 2 2 Shipulin Anton RUS 1661.1 434.1
## 4362 3 16 Fillon Maillet Quentin FRA 1669.8 414.2
## 4363 4 17 Schempp Simon GER 1674.0 415.0
## 4364 5 4 Boe Johannes Thingnes NOR 1697.5 459.1
## 4365 6 30 Roesch Michael BEL 1702.3 416.4
## 4366 7 6 Rastorgujevs Andrejs LAT 1710.3 421.5
## 4367 8 31 Beatrix Jean Guillaume FRA 1722.9 437.9
## 4368 9 20 Bailey Lowell USA 1726.8 420.4
## 4369 10 28 Krcmar Michal CZE 1727.9 420.9
## 4370 11 41 Garanichev Evgeniy RUS 1724.2 416.8
## 4371 12 14 Bjoerndalen Ole Einar NOR 1715.2 418.8
## 4372 13 9 Eberhard Julian AUT 1754.8 410.9
## 4373 14 12 Tsvetkov Maxim RUS 1738.0 422.5
## 4374 15 25 Doll Benedikt GER 1748.2 416.6
## 4375 16 10 Bjoentegaard Erlend NOR 1744.3 456.1
## 4376 17 22 Pidruchnyi Dmytro UKR 1741.0 447.8
## 4377 18 13 Samuelsson Sebastian SWE 1750.2 467.6
## 4378 19 44 Slesingr Michal CZE 1756.8 415.0
## 4379 20 19 Soukup Jaroslav CZE 1738.5 455.1
## 4380 21 7 Semenov Sergii UKR 1749.0 444.0
## 4381 22 5 Iliev Vladimir BUL 1749.8 474.7
## 4382 23 35 Desthieux Simon FRA 1767.7 437.5
## 4383 24 15 Lesser Erik GER 1764.1 452.1
## 4384 25 21 Windisch Dominik ITA 1763.6 436.2
## 4385 26 11 Peiffer Arnd GER 1758.9 427.7
## 4386 27 23 Pryma Artem UKR 1769.4 413.3
## 4387 28 26 Mesotitsch Daniel AUT 1771.7 420.6
## 4388 29 24 Wiestner Serafin SUI 1786.6 446.7
## 4389 30 32 Hofer Lukas ITA 1791.1 426.0
## 4390 31 49 Eder Simon AUT 1786.1 424.4
## 4391 32 48 Eliseev Matvey RUS 1787.1 437.7
## 4392 33 33 Chepelin Vladimir BLR 1794.3 436.2
## 4393 34 50 Babikov Anton RUS 1812.5 443.1
## 4394 35 36 Birkeland Lars Helge NOR 1801.9 463.5
## 4395 36 46 Bischl Matthias GER 1818.7 449.5
## 4396 37 38 Anev Krasimir BUL 1817.2 448.5
## 4397 38 39 Hiidensalo Olli FIN 1822.2 451.9
## 4398 39 47 Lindstroem Fredrik SWE 1853.7 455.7
## 4399 40 18 Gow Scott CAN 1829.1 442.9
## 4400 41 45 Savitskiy Yan KAZ 1834.6 496.7
## 4401 42 40 Dolder Mario SUI 1844.8 455.3
## 4402 43 42 Otcenas Martin SVK 1852.9 452.2
## 4403 44 53 Kazar Matej SVK 1864.3 466.0
## 4404 45 27 Kilchytskyy Vitaliy UKR 1866.5 477.7
## 4405 46 37 Bauer Klemen SLO 1869.1 455.1
## 4406 47 60 Malyshko Dmitry RUS 1873.7 470.5
## 4407 48 34 Yaliotnau Raman BLR 1858.9 472.3
## 4408 49 29 Komatz David AUT 1876.0 486.2
## 4409 50 8 Moravec Ondrej CZE 1917.4 433.3
## 4410 51 43 Hasilla Tomas SVK 1919.1 480.4
## 4411 52 54 Green Brendan CAN 1933.6 454.9
## 4412 53 51 Dovzan Miha SLO 1935.8 468.6
## 4413 54 56 Femling Peppe SWE 1984.9 470.8
## 4414 55 59 Sinapov Anton BUL 1999.2 476.4
## 4415 56 52 Varabei Maksim BLR 2042.6 500.4
## 4416 57 58 Oblak Lenart SLO 2042.1 491.7
## 4417 1 31 Eberhard Julian AUT 1174.8 556.4
## 4418 2 22 Slesingr Michal CZE 1188.7 588.2
## 4419 3 26 Windisch Dominik ITA 1200.1 590.1
## 4420 4 70 Hofer Lukas ITA 1199.1 584.4
## 4421 5 40 Lesser Erik GER 1213.1 615.7
## 4422 6 44 Schempp Simon GER 1221.1 597.4
## 4423 7 34 Svendsen Emil Hegle NOR 1203.7 602.6
## 4424 8 23 Fourcade Martin FRA 1226.8 627.9
## 4425 9 35 Weger Benjamin SUI 1201.2 586.4
## 4426 10 43 Iliev Vladimir BUL 1232.8 623.8
## 4427 11 48 Malyshko Dmitry RUS 1222.3 603.4
## 4428 11 65 Landertinger Dominik AUT 1226.5 630.5
## 4429 13 18 Tsvetkov Maxim RUS 1222.6 615.5
## 4430 14 25 Semenov Sergii UKR 1229.7 620.9
## 4431 15 16 Peiffer Arnd GER 1237.3 626.7
## 4432 16 75 Beatrix Jean Guillaume FRA 1219.2 591.5
## 4433 17 52 Vaclavik Adam CZE 1226.5 627.0
## 4434 18 30 Babikov Anton RUS 1219.0 610.6
## 4435 19 20 Moravec Ondrej CZE 1233.2 621.2
## 4436 20 11 L'Abee-Lund Henrik NOR 1235.0 597.9
## 4437 21 14 Krcmar Michal CZE 1241.9 602.4
## 4438 22 92 Bischl Matthias GER 1229.8 626.6
## 4439 23 4 Kilchytskyy Vitaliy UKR 1242.9 580.4
## 4440 24 17 Shipulin Anton RUS 1251.8 624.0
## 4441 25 19 Mesotitsch Daniel AUT 1242.6 602.5
## 4442 26 93 Guzik Grzegorz POL 1239.6 614.6
## 4443 27 37 Fillon Maillet Quentin FRA 1254.0 618.5
## 4444 28 56 Siemakov Volodymyr UKR 1246.6 593.2
## 4445 29 81 Jaeger Martin SUI 1243.3 608.8
## 4446 30 49 Bjoentegaard Erlend NOR 1257.6 637.9
## 4447 31 99 Christiansen Vetle Sjaastad NOR 1232.4 617.9
## 4448 32 45 Bjoerndalen Ole Einar NOR 1254.5 595.2
## 4449 33 95 Shopin Yury RUS 1246.3 633.9
## 4450 34 32 Lindstroem Fredrik SWE 1262.5 622.3
## 4451 35 21 Burke Tim USA 1263.7 645.3
## 4452 36 36 Roesch Michael BEL 1252.1 612.6
## 4453 37 76 Crnkovic Kresimir CRO 1256.0 613.3
## 4454 38 96 Guigonnat Antonin FRA 1265.3 619.0
## 4455 39 100 Leitner Felix AUT 1264.7 599.0
## 4456 40 58 Savitskiy Yan KAZ 1258.1 605.3
## 4457 41 97 Faur Remus ROU 1254.4 623.4
## 4458 42 2 Claude Fabien FRA 1263.7 639.2
## 4459 43 42 Gow Scott CAN 1263.6 636.3
## 4460 44 57 Doll Benedikt GER 1298.6 674.3
## 4461 45 9 Dolder Mario SUI 1267.5 595.5
## 4462 46 82 Currier Russell USA 1284.1 638.6
## 4463 47 24 Eder Simon AUT 1284.7 610.4
## 4464 48 89 Kobonoki Tsukasa JPN 1274.1 640.4
## 4465 49 10 Graf Florian GER 1266.5 616.2
## 4466 50 41 Yaliotnau Raman BLR 1292.9 648.3
## 4467 51 105 Lee Inbok KOR 1250.4 618.8
## 4468 52 102 Montello Giuseppe ITA 1290.9 642.5
## 4469 53 91 Ermits Kalev EST 1271.3 624.0
## 4470 54 86 Bocharnikov Sergey BLR 1299.9 593.6
## 4471 55 84 Kubaliak Michal SVK 1256.4 610.2
## 4472 56 15 Kazar Matej SVK 1292.7 624.5
## 4473 57 13 Pryma Artem UKR 1302.5 642.5
## 4474 58 94 Arwidson Tobias SWE 1273.0 620.0
## 4475 59 77 Bricis Ilmars LAT 1283.0 605.2
## 4476 60 51 Gerdzhikov Dimitar BUL 1294.1 638.9
## 4477 61 63 Wiestner Serafin SUI 1288.1 642.4
## 4478 62 78 Pantov Anton KAZ 1285.1 598.8
## 4479 63 54 Strolia Vytautas LTU 1290.5 657.9
## 4480 64 39 Desthieux Simon FRA 1310.9 632.3
## 4481 65 50 Kaukenas Tomas LTU 1289.6 651.5
## 4482 66 74 Buta George ROU 1279.7 614.9
## 4483 67 62 Lessing Roland EST 1307.7 641.7
## 4484 68 67 Davies Macx CAN 1301.4 663.6
## 4485 69 12 Green Brendan CAN 1326.9 621.0
## 4486 70 6 Bormolini Thomas ITA 1313.8 588.5
## 4487 71 3 Soukup Jaroslav CZE 1326.6 676.0
## 4488 72 28 Puchianu Cornel ROU 1317.8 597.4
## 4489 73 1 Komatz David AUT 1306.2 673.3
## 4490 73 73 Tachizaki Mikito JPN 1319.3 638.7
## 4491 75 68 Otcenas Martin SVK 1319.7 595.0
## 4492 76 79 Stenersen Torstein SWE 1326.2 647.7
## 4493 77 80 Lusa Daumants LAT 1292.1 648.2
## 4494 78 87 Szczurek Lukasz POL 1320.9 633.1
## 4495 79 55 Kim Jongmin KOR 1300.8 628.8
## 4496 80 47 Doherty Sean USA 1317.0 656.1
## 4497 81 69 Dovzan Miha SLO 1312.4 612.3
## 4498 82 106 Invenius Tuukka FIN 1309.3 651.9
## 4499 83 101 Partalov Dimitar BUL 1319.5 641.2
## 4500 84 8 Sinapov Anton BUL 1354.8 630.6
## 4501 85 64 Varabei Maksim BLR 1347.4 654.1
## 4502 86 72 Ponsiluoma Martin SWE 1344.1 665.7
## 4503 87 5 Chepelin Vladimir BLR 1369.4 609.4
## 4504 88 83 Yeremin Roman KAZ 1369.2 671.3
## 4505 89 61 Trsan Rok SLO 1346.3 655.2
## 4506 90 88 Hudec Matthew CAN 1328.7 662.5
## 4507 91 46 Orpana Sami FIN 1335.3 655.1
## 4508 92 38 Gow Christian CAN 1350.0 679.1
## 4509 93 27 Koiv Kauri EST 1354.2 689.6
## 4510 94 85 Braun Maxim KAZ 1381.8 638.7
## 4511 95 7 Eliseev Matvey RUS 1391.1 657.9
## 4512 96 60 Angelis Apostolos GRE 1387.6 640.1
## 4513 97 29 Bauer Klemen SLO 1426.1 639.4
## 4514 98 104 Slotins Roberts LAT 1391.4 682.3
## 4515 99 53 Loukkaanhuhta Mikko FIN 1404.8 680.9
## 4516 100 59 Nedza-Kubiniec Andrzej POL 1407.8 685.1
## 4517 101 103 Suslavicius Rokas LTU 1416.1 692.0
## 4518 102 71 Hodzic Edin SRB 1442.0 676.3
## 4519 1 3 Schempp Simon GER 1930.6 479.5
## 4520 2 6 Lesser Erik GER 1929.6 499.6
## 4521 3 1 Fourcade Martin FRA 1929.3 458.8
## 4522 4 16 Beatrix Jean Guillaume FRA 1929.7 473.8
## 4523 5 8 Bjoerndalen Ole Einar NOR 1927.4 501.1
## 4524 6 17 Doll Benedikt GER 1977.9 483.1
## 4525 7 7 Svendsen Emil Hegle NOR 1960.0 504.9
## 4526 8 10 Babikov Anton RUS 1967.1 502.4
## 4527 9 15 Krcmar Michal CZE 1981.5 477.9
## 4528 10 23 Weger Benjamin SUI 1979.1 476.4
## 4529 11 5 Tsvetkov Maxim RUS 1976.2 487.8
## 4530 12 28 Landertinger Dominik AUT 1984.8 513.4
## 4531 13 14 Moravec Ondrej CZE 2003.4 511.6
## 4532 14 2 Shipulin Anton RUS 1998.1 473.4
## 4533 15 18 Eliseev Matvey RUS 1992.6 495.9
## 4534 16 24 Hofer Lukas ITA 2008.0 501.3
## 4535 17 27 Malyshko Dmitry RUS 2013.3 482.1
## 4536 18 4 Peiffer Arnd GER 2025.3 534.1
## 4537 19 20 Roesch Michael BEL 2003.3 500.9
## 4538 20 26 L'Abee-Lund Henrik NOR 2022.7 478.1
## 4539 21 25 Iliev Vladimir BUL 2027.6 473.9
## 4540 22 9 Eberhard Julian AUT 2043.8 508.1
## 4541 23 21 Semenov Sergii UKR 2043.3 506.3
## 4542 24 30 Mesotitsch Daniel AUT 2036.0 490.8
## 4543 25 29 Siemakov Volodymyr UKR 2042.9 517.8
## 4544 26 19 Desthieux Simon FRA 2042.8 536.4
## 4545 27 22 Pidruchnyi Dmytro UKR 2057.1 503.7
## 4546 28 11 Windisch Dominik ITA 2065.7 529.1
## 4547 29 12 Slesingr Michal CZE 2107.6 497.7
## 4548 1 8 Fourcade Martin FRA 1821.7 442.4
## 4549 2 15 Peiffer Arnd GER 1916.4 500.3
## 4550 3 3 Windisch Dominik ITA 1947.4 493.7
## 4551 4 7 Svendsen Emil Hegle NOR 1946.1 477.7
## 4552 5 5 Lesser Erik GER 1959.4 520.9
## 4553 6 18 Babikov Anton RUS 1953.5 439.5
## 4554 7 2 Slesingr Michal CZE 1982.8 544.7
## 4555 8 20 L'Abee-Lund Henrik NOR 1979.2 490.7
## 4556 9 57 Pryma Artem UKR 1975.8 464.9
## 4557 10 13 Tsvetkov Maxim RUS 1970.6 549.0
## 4558 11 9 Weger Benjamin SUI 1984.8 451.2
## 4559 12 4 Hofer Lukas ITA 1990.8 445.2
## 4560 13 28 Siemakov Volodymyr UKR 1983.1 465.2
## 4561 14 36 Roesch Michael BEL 1983.2 468.2
## 4562 15 16 Beatrix Jean Guillaume FRA 1976.6 509.7
## 4563 16 24 Shipulin Anton RUS 2009.5 468.8
## 4564 17 10 Iliev Vladimir BUL 2009.0 464.3
## 4565 18 11 Malyshko Dmitry RUS 2004.4 459.2
## 4566 19 1 Eberhard Julian AUT 2027.4 583.3
## 4567 20 6 Schempp Simon GER 2017.3 459.2
## 4568 21 19 Moravec Ondrej CZE 2010.3 483.7
## 4569 22 25 Mesotitsch Daniel AUT 2009.1 489.2
## 4570 23 42 Claude Fabien FRA 2034.9 515.5
## 4571 24 44 Doll Benedikt GER 2039.6 446.0
## 4572 25 27 Fillon Maillet Quentin FRA 2028.0 485.8
## 4573 26 35 Burke Tim USA 2041.5 498.9
## 4574 27 31 Christiansen Vetle Sjaastad NOR 2028.1 466.3
## 4575 28 21 Krcmar Michal CZE 2048.1 535.0
## 4576 29 14 Semenov Sergii UKR 2047.8 498.4
## 4577 30 12 Landertinger Dominik AUT 2083.6 517.7
## 4578 31 33 Shopin Yury RUS 2093.4 503.6
## 4579 32 38 Guigonnat Antonin FRA 2110.4 476.8
## 4580 33 17 Vaclavik Adam CZE 2098.3 510.3
## 4581 34 46 Currier Russell USA 2116.0 505.9
## 4582 35 22 Bischl Matthias GER 2118.8 533.2
## 4583 36 54 Bocharnikov Sergey BLR 2123.8 497.1
## 4584 37 32 Bjoerndalen Ole Einar NOR 2108.5 506.9
## 4585 38 60 Gerdzhikov Dimitar BUL 2129.4 512.1
## 4586 39 56 Kazar Matej SVK 2140.5 509.1
## 4587 40 30 Bjoentegaard Erlend NOR 2164.9 561.9
## 4588 41 41 Faur Remus ROU 2155.9 515.4
## 4589 42 34 Lindstroem Fredrik SWE 2168.0 512.5
## 4590 43 52 Montello Giuseppe ITA 2168.4 491.1
## 4591 44 40 Savitskiy Yan KAZ 2180.4 478.1
## 4592 45 43 Gow Scott CAN 2174.3 536.6
## 4593 46 45 Dolder Mario SUI 2187.4 485.6
## 4594 47 58 Arwidson Tobias SWE 2165.1 483.7
## 4595 48 23 Kilchytskyy Vitaliy UKR 2215.8 574.4
## 4596 49 49 Graf Florian GER 2215.3 588.4
## 4597 50 29 Jaeger Martin SUI 2246.6 545.4
## 4598 51 39 Leitner Felix AUT 2253.4 529.5
## 4599 52 53 Ermits Kalev EST 2254.1 534.7
## 4600 53 26 Guzik Grzegorz POL 2280.3 520.0
## 4601 54 48 Kobonoki Tsukasa JPN 2291.6 551.1
## 4602 55 55 Kubaliak Michal SVK 2371.2 576.0
## 4603 56 51 Lee Inbok KOR 2403.4 633.9
## 4604 1 11 Fourcade Martin FRA 986.6 487.1
## 4605 2 44 Lindstroem Fredrik SWE 1024.1 505.8
## 4606 3 2 Peiffer Arnd GER 1022.7 506.8
## 4607 4 18 Doll Benedikt GER 1030.3 527.8
## 4608 5 23 Eberhard Julian AUT 1042.1 518.1
## 4609 6 43 Windisch Dominik ITA 1022.0 505.5
## 4610 7 45 Babikov Anton RUS 1031.9 518.3
## 4611 8 77 Desthieux Simon FRA 1035.5 523.3
## 4612 9 24 Pidruchnyi Dmytro UKR 1029.4 517.1
## 4613 10 26 Fourcade Simon FRA 1034.1 503.7
## 4614 10 31 Tsvetkov Maxim RUS 1026.3 520.1
## 4615 12 20 Bjoerndalen Ole Einar NOR 1024.6 509.9
## 4616 13 30 Bailey Lowell USA 1025.4 509.2
## 4617 14 1 Svendsen Emil Hegle NOR 1041.0 527.2
## 4618 15 41 Lesser Erik GER 1032.4 511.5
## 4619 16 61 Eliseev Matvey RUS 1043.8 531.3
## 4620 17 9 Slesingr Michal CZE 1039.5 510.8
## 4621 18 40 Rastorgujevs Andrejs LAT 1042.8 529.3
## 4622 19 79 Samuelsson Sebastian SWE 1034.1 519.4
## 4623 20 32 Pryma Artem UKR 1035.9 522.2
## 4624 21 22 Schempp Simon GER 1056.4 520.2
## 4625 22 47 Bjoentegaard Erlend NOR 1045.7 533.6
## 4626 23 35 Beatrix Jean Guillaume FRA 1041.2 527.1
## 4627 24 7 Eder Simon AUT 1043.2 525.8
## 4628 25 38 Weger Benjamin SUI 1045.0 521.8
## 4629 26 67 Wiestner Serafin SUI 1058.1 543.9
## 4630 27 60 Birkeland Lars Helge NOR 1044.8 506.3
## 4631 28 33 Shipulin Anton RUS 1050.5 526.7
## 4632 29 16 Burke Tim USA 1058.7 540.9
## 4633 30 14 Boe Johannes Thingnes NOR 1066.2 534.3
## 4634 31 95 Malyshko Dmitry RUS 1066.2 529.9
## 4635 32 12 Green Brendan CAN 1075.4 518.6
## 4636 33 19 Landertinger Dominik AUT 1074.5 558.8
## 4637 34 70 Kilchytskyy Vitaliy UKR 1067.9 520.7
## 4638 35 27 Moravec Ondrej CZE 1065.3 548.2
## 4639 36 39 Mesotitsch Daniel AUT 1062.5 522.0
## 4640 37 29 Semenov Sergii UKR 1063.5 539.4
## 4641 38 42 Krcmar Michal CZE 1072.1 545.1
## 4642 39 96 Claude Fabien FRA 1081.3 554.1
## 4643 40 21 Hofer Lukas ITA 1097.5 538.4
## 4644 41 69 Roesch Michael BEL 1071.2 558.2
## 4645 42 15 Anev Krasimir BUL 1083.7 565.0
## 4646 43 5 Nelin Jesper SWE 1093.6 585.2
## 4647 44 72 Hasilla Tomas SVK 1084.0 528.6
## 4648 45 50 Leitner Felix AUT 1079.7 562.0
## 4649 46 83 Gerdzhikov Dimitar BUL 1075.6 531.8
## 4650 47 81 Yaliotnau Raman BLR 1098.7 538.4
## 4651 48 48 Trsan Rok SLO 1096.2 527.7
## 4652 49 25 Garanichev Evgeniy RUS 1093.9 533.1
## 4653 50 62 Gow Scott CAN 1083.2 543.0
## 4654 51 55 Hiidensalo Olli FIN 1095.8 560.8
## 4655 52 46 Davies Macx CAN 1089.8 549.2
## 4656 53 6 Kaukenas Tomas LTU 1080.1 537.0
## 4657 54 28 Fillon Maillet Quentin FRA 1102.5 532.0
## 4658 55 74 Vaclavik Adam CZE 1096.8 519.8
## 4659 56 8 Chepelin Vladimir BLR 1100.3 558.5
## 4660 57 85 Rees Roman GER 1086.2 551.7
## 4661 58 100 L'Abee-Lund Henrik NOR 1117.4 557.6
## 4662 59 73 Graf Florian GER 1093.5 546.9
## 4663 60 10 Dolder Mario SUI 1116.6 550.7
## 4664 61 34 Varabei Maksim BLR 1107.5 567.5
## 4665 62 37 Iliev Vladimir BUL 1115.5 578.9
## 4666 63 99 Grossegger Sven AUT 1103.7 579.1
## 4667 64 56 Puchianu Cornel ROU 1113.7 592.4
## 4668 65 66 Zahkna Rene EST 1095.5 555.5
## 4669 66 87 Podkorytov Vassiliy KAZ 1106.7 540.7
## 4670 67 58 Pantov Anton KAZ 1090.6 543.9
## 4671 68 57 Braun Maxim KAZ 1104.0 536.3
## 4672 69 53 Currier Russell USA 1130.7 545.8
## 4673 70 76 Tachizaki Mikito JPN 1099.1 557.8
## 4674 71 63 Bormolini Thomas ITA 1104.2 552.9
## 4675 72 75 Faur Remus ROU 1109.2 571.3
## 4676 73 101 Sima Michal SVK 1108.9 565.8
## 4677 74 78 Gronman Tuomas FIN 1096.7 545.4
## 4678 75 84 Siemakov Volodymyr UKR 1121.7 576.0
## 4679 76 80 Drinovec Mitja SLO 1108.3 544.1
## 4680 77 71 Sinapov Anton BUL 1132.4 602.7
## 4681 78 94 Finello Jeremy SUI 1120.9 560.7
## 4682 79 59 Janik Mateusz POL 1115.9 556.8
## 4683 80 64 Kim Jongmin KOR 1100.9 560.6
## 4684 81 65 Dombrovski Karol LTU 1132.4 592.9
## 4685 82 98 Buta George ROU 1129.2 566.8
## 4686 83 51 Koiv Kauri EST 1138.9 607.6
## 4687 84 105 Montello Giuseppe ITA 1138.5 592.4
## 4688 85 3 Bauer Klemen SLO 1151.2 601.3
## 4689 86 90 Penar Rafal POL 1126.0 574.5
## 4690 87 102 Oblak Lenart SLO 1130.1 591.1
## 4691 88 97 Strolia Vytautas LTU 1144.8 551.4
## 4692 89 89 Slotins Roberts LAT 1143.7 602.1
## 4693 90 86 Gow Christian CAN 1131.7 596.7
## 4694 91 54 Bricis Ilmars LAT 1155.3 594.1
## 4695 92 4 Kazar Matej SVK 1193.2 595.9
## 4696 93 93 Soukup Jaroslav CZE 1170.1 593.9
## 4697 94 103 Stenersen Torstein SWE 1164.2 561.6
## 4698 95 92 Huhtala Teemu FIN 1158.1 598.2
## 4699 96 17 Smith Nathan CAN 1169.6 596.6
## 4700 97 36 Otcenas Martin SVK 1206.9 663.6
## 4701 98 82 Talihaerm Johan EST 1196.3 641.2
## 4702 99 52 Guzik Grzegorz POL 1191.9 563.3
## 4703 100 13 Savitskiy Yan KAZ 1237.4 617.8
## 4704 101 91 Lee Inbok KOR 1185.6 589.8
## 4705 102 88 Kobonoki Tsukasa JPN 1226.7 629.9
## 4706 103 68 Dixon Scott GBR 1188.9 610.4
## 4707 104 49 Crnkovic Kresimir CRO 1246.6 598.1
## 4708 105 104 Liadov Yuryi BLR 1219.9 636.6
## 4709 1 10 Fourcade Martin FRA 2557.6 619.1
## 4710 2 15 Boe Johannes Thingnes NOR 2573.7 765.6
## 4711 3 17 Chepelin Vladimir BLR 2609.3 640.2
## 4712 4 40 Birkeland Lars Helge NOR 2668.5 629.3
## 4713 5 25 Bjoerndalen Ole Einar NOR 2672.0 702.2
## 4714 6 1 Rastorgujevs Andrejs LAT 2694.3 771.9
## 4715 7 21 Anev Krasimir BUL 2673.5 644.3
## 4716 8 94 Graf Florian GER 2673.0 716.0
## 4717 9 8 Lindstroem Fredrik SWE 2694.6 698.0
## 4718 10 19 Weger Benjamin SUI 2690.2 719.9
## 4719 11 35 Shipulin Anton RUS 2713.0 825.8
## 4720 12 16 Eder Simon AUT 2725.0 700.7
## 4721 13 36 Fourcade Simon FRA 2726.9 634.3
## 4722 14 78 Puchianu Cornel ROU 2741.1 711.5
## 4723 15 18 Bailey Lowell USA 2765.0 763.0
## 4724 16 27 Burke Tim USA 2747.7 720.2
## 4725 17 23 Moravec Ondrej CZE 2751.1 650.8
## 4726 18 29 Eberhard Julian AUT 2799.5 764.8
## 4727 19 33 Hofer Lukas ITA 2766.0 658.6
## 4728 20 79 Gronman Tuomas FIN 2742.0 675.0
## 4729 21 52 Koiv Kauri EST 2768.3 716.6
## 4730 22 2 Tsvetkov Maxim RUS 2776.3 742.0
## 4731 23 7 Garanichev Evgeniy RUS 2797.6 696.8
## 4732 24 97 Gjermundshaug Vegard NOR 2803.2 633.7
## 4733 25 5 Slesingr Michal CZE 2800.1 697.1
## 4734 26 62 Mesotitsch Daniel AUT 2788.3 788.7
## 4735 27 81 Hasilla Tomas SVK 2775.9 727.6
## 4736 28 20 Fillon Maillet Quentin FRA 2808.5 697.7
## 4737 29 46 Otcenas Martin SVK 2788.2 664.3
## 4738 30 6 Doll Benedikt GER 2822.3 873.7
## 4739 31 45 Lesser Erik GER 2814.5 690.1
## 4740 32 26 Peiffer Arnd GER 2808.8 766.6
## 4741 33 3 Bauer Klemen SLO 2825.1 694.3
## 4742 34 41 Iliev Vladimir BUL 2831.4 683.9
## 4743 35 76 Beatrix Jean Guillaume FRA 2809.7 706.6
## 4744 36 24 Kazar Matej SVK 2823.1 653.2
## 4745 37 50 Sinapov Anton BUL 2815.6 734.7
## 4746 38 63 Bormolini Thomas ITA 2834.7 784.4
## 4747 39 83 Drinovec Mitja SLO 2809.9 739.1
## 4748 40 84 Varabei Maksim BLR 2823.3 733.8
## 4749 41 88 Siemakov Volodymyr UKR 2819.3 744.1
## 4750 42 48 Krcmar Michal CZE 2859.7 777.1
## 4751 43 22 Smith Nathan CAN 2833.4 737.4
## 4752 44 13 Savitskiy Yan KAZ 2858.8 784.8
## 4753 45 43 Stenersen Torstein SWE 2861.0 788.5
## 4754 46 9 Schempp Simon GER 2895.2 742.8
## 4755 47 56 Buta George ROU 2849.6 744.6
## 4756 48 73 Rees Roman GER 2885.4 829.4
## 4757 49 28 Desthieux Simon FRA 2879.9 883.8
## 4758 50 86 Shopin Yury RUS 2889.9 785.1
## 4759 51 11 Bjoentegaard Erlend NOR 2894.2 846.2
## 4760 52 64 Dolder Mario SUI 2909.9 796.0
## 4761 53 60 Kilchytskyy Vitaliy UKR 2919.9 736.5
## 4762 54 77 Currier Russell USA 2949.3 771.5
## 4763 55 38 Wiestner Serafin SUI 2946.4 834.8
## 4764 56 54 Hiidensalo Olli FIN 2939.8 751.3
## 4765 57 44 Babikov Anton RUS 2950.1 847.8
## 4766 58 90 Finello Jeremy SUI 2954.8 772.3
## 4767 59 34 Pryma Artem UKR 2956.1 831.7
## 4768 60 67 Gow Scott CAN 2949.2 800.2
## 4769 61 39 Yaliotnau Raman BLR 2963.4 828.0
## 4770 62 42 Davies Macx CAN 2923.5 760.5
## 4771 63 82 Bricis Ilmars LAT 2954.5 859.7
## 4772 64 80 Guzik Grzegorz POL 2954.0 797.6
## 4773 65 70 L'Abee-Lund Henrik NOR 3003.1 750.8
## 4774 66 4 Windisch Dominik ITA 2987.9 887.8
## 4775 67 55 Trsan Rok SLO 2966.2 815.2
## 4776 68 99 Strolia Vytautas LTU 2962.2 821.3
## 4777 69 69 Nelin Jesper SWE 3023.6 689.5
## 4778 70 47 Grossegger Sven AUT 2983.2 750.9
## 4779 71 51 Bocharnikov Sergey BLR 3024.1 767.5
## 4780 72 85 Ungureanu Marius ROU 2984.3 807.2
## 4781 73 87 Tachizaki Mikito JPN 3015.4 673.2
## 4782 74 68 Braun Maxim KAZ 2999.8 750.3
## 4783 75 72 Roesch Michael BEL 3027.4 893.8
## 4784 76 101 Kletcherov Michail BUL 2994.8 770.0
## 4785 77 103 Claude Fabien FRA 3018.9 880.8
## 4786 78 57 Crnkovic Kresimir CRO 3048.9 723.1
## 4787 79 66 Dombrovski Karol LTU 3037.9 681.0
## 4788 80 74 Malyshko Dmitry RUS 3070.8 690.9
## 4789 81 106 Penar Rafal POL 3005.7 823.3
## 4790 82 59 Pantov Anton KAZ 3021.3 829.3
## 4791 83 91 Femling Peppe SWE 3050.3 731.5
## 4792 84 65 Zahkna Rene EST 3067.8 741.0
## 4793 85 30 Kaukenas Tomas LTU 3090.5 848.5
## 4794 86 49 Kobonoki Tsukasa JPN 3099.2 750.3
## 4795 87 102 Lee Inbok KOR 3097.3 824.0
## 4796 88 12 Landertinger Dominik AUT 3140.4 768.6
## 4797 89 14 Green Brendan CAN 3100.3 857.5
## 4798 90 75 Janik Mateusz POL 3099.5 831.1
## 4799 91 31 Zhyrnyi Oleksandr UKR 3132.0 806.2
## 4800 92 32 Semenov Sergii UKR 3181.1 891.2
## 4801 93 58 Starodubets Aleksandr KOR 3148.0 838.8
## 4802 94 105 Lusa Daumants LAT 3135.5 859.5
## 4803 95 92 Vaclavik Adam CZE 3225.1 854.0
## 4804 96 53 Dovzan Miha SLO 3196.4 857.2
## 4805 97 61 Soukup Jaroslav CZE 3220.0 924.5
## 4806 98 100 Talihaerm Johan EST 3257.3 926.1
## 4807 99 96 Gow Christian CAN 3202.1 820.8
## 4808 100 89 Sima Michal SVK 3322.8 900.8
## 4809 101 98 Podkorytov Vassiliy KAZ 3344.8 808.4
## 4810 102 93 Montello Giuseppe ITA 3356.8 839.5
## 4811 103 104 Huhtala Teemu FIN 3337.3 876.1
## 4812 1 7 Babikov Anton RUS 1575.3 381.8
## 4813 2 11 Tsvetkov Maxim RUS 1579.2 383.2
## 4814 3 1 Fourcade Martin FRA 1586.1 425.0
## 4815 4 3 Peiffer Arnd GER 1628.5 379.4
## 4816 5 15 Lesser Erik GER 1626.9 406.0
## 4817 6 10 Fourcade Simon FRA 1620.3 383.1
## 4818 7 38 Krcmar Michal CZE 1633.6 389.6
## 4819 8 28 Shipulin Anton RUS 1639.2 373.5
## 4820 9 21 Schempp Simon GER 1643.4 399.9
## 4821 10 30 Boe Johannes Thingnes NOR 1650.7 393.5
## 4822 11 23 Beatrix Jean Guillaume FRA 1642.7 410.7
## 4823 12 12 Bjoerndalen Ole Einar NOR 1645.1 405.9
## 4824 13 9 Pidruchnyi Dmytro UKR 1644.7 413.0
## 4825 14 8 Desthieux Simon FRA 1650.6 439.9
## 4826 15 13 Bailey Lowell USA 1642.2 442.2
## 4827 16 14 Svendsen Emil Hegle NOR 1661.9 387.0
## 4828 17 16 Eliseev Matvey RUS 1664.7 427.0
## 4829 18 35 Moravec Ondrej CZE 1668.1 390.8
## 4830 19 58 L'Abee-Lund Henrik NOR 1675.8 385.4
## 4831 20 19 Samuelsson Sebastian SWE 1671.7 404.5
## 4832 21 33 Landertinger Dominik AUT 1671.3 399.7
## 4833 22 17 Slesingr Michal CZE 1675.2 385.6
## 4834 23 24 Eder Simon AUT 1670.8 424.4
## 4835 24 20 Pryma Artem UKR 1666.7 439.1
## 4836 25 6 Windisch Dominik ITA 1665.9 414.2
## 4837 26 31 Malyshko Dmitry RUS 1680.2 395.5
## 4838 27 5 Eberhard Julian AUT 1691.8 420.5
## 4839 28 27 Birkeland Lars Helge NOR 1674.3 424.5
## 4840 29 39 Claude Fabien FRA 1691.4 400.6
## 4841 30 49 Garanichev Evgeniy RUS 1699.6 407.9
## 4842 31 18 Rastorgujevs Andrejs LAT 1697.3 432.0
## 4843 32 43 Nelin Jesper SWE 1705.1 407.8
## 4844 33 4 Doll Benedikt GER 1717.9 455.3
## 4845 34 36 Mesotitsch Daniel AUT 1717.1 396.0
## 4846 35 29 Burke Tim USA 1719.8 429.7
## 4847 36 57 Rees Roman GER 1729.2 417.1
## 4848 37 22 Bjoentegaard Erlend NOR 1734.4 420.1
## 4849 38 2 Lindstroem Fredrik SWE 1726.5 452.0
## 4850 39 41 Roesch Michael BEL 1739.8 389.0
## 4851 40 40 Hofer Lukas ITA 1746.5 437.7
## 4852 41 59 Graf Florian GER 1743.8 423.3
## 4853 42 55 Vaclavik Adam CZE 1756.6 436.5
## 4854 43 45 Leitner Felix AUT 1754.4 415.4
## 4855 44 44 Hasilla Tomas SVK 1755.3 412.3
## 4856 45 51 Hiidensalo Olli FIN 1763.5 446.7
## 4857 46 42 Anev Krasimir BUL 1763.0 439.7
## 4858 47 50 Gow Scott CAN 1769.8 427.0
## 4859 48 26 Wiestner Serafin SUI 1780.4 430.5
## 4860 49 34 Kilchytskyy Vitaliy UKR 1778.8 420.6
## 4861 50 32 Green Brendan CAN 1786.5 450.2
## 4862 51 52 Davies Macx CAN 1795.1 455.2
## 4863 52 37 Semenov Sergii UKR 1784.3 465.9
## 4864 53 60 Dolder Mario SUI 1805.9 476.0
## 4865 54 47 Yaliotnau Raman BLR 1813.8 444.0
## 4866 55 48 Trsan Rok SLO 1828.5 481.0
## 4867 56 25 Weger Benjamin SUI 1839.1 429.8
## 4868 57 56 Chepelin Vladimir BLR 1869.3 485.6
## 4869 58 53 Kaukenas Tomas LTU 1857.6 484.7
## 4870 59 46 Gerdzhikov Dimitar BUL 1864.3 465.2
## 4871 1 15 Boe Johannes Thingnes NOR 991.1 501.8
## 4872 2 27 Fourcade Martin FRA 1015.5 523.7
## 4873 3 106 Shipulin Anton RUS 1006.0 512.5
## 4874 4 12 Landertinger Dominik AUT 1021.3 519.4
## 4875 5 8 Semenov Sergii UKR 1018.0 514.9
## 4876 6 36 Boe Tarjei NOR 1028.6 531.0
## 4877 7 28 Moravec Ondrej CZE 1015.9 512.5
## 4878 8 4 Garanichev Evgeniy RUS 1009.4 510.2
## 4879 9 48 Desthieux Simon FRA 1029.4 526.5
## 4880 10 100 Eberhard Julian AUT 1036.1 537.2
## 4881 11 51 Doll Benedikt GER 1036.6 515.0
## 4882 12 107 Eder Simon AUT 1029.8 511.0
## 4883 13 19 Slesingr Michal CZE 1043.6 521.1
## 4884 14 1 Peiffer Arnd GER 1043.6 539.6
## 4885 15 14 Lindstroem Fredrik SWE 1033.2 538.2
## 4886 16 32 Fillon Maillet Quentin FRA 1041.1 504.9
## 4887 17 3 Bauer Klemen SLO 1036.4 534.4
## 4888 18 38 Anev Krasimir BUL 1034.6 520.5
## 4889 19 22 Beatrix Jean Guillaume FRA 1043.6 539.6
## 4890 20 9 Svendsen Emil Hegle NOR 1036.2 539.7
## 4891 21 24 Hofer Lukas ITA 1049.8 513.1
## 4892 22 2 Bocharnikov Sergey BLR 1044.8 539.4
## 4893 23 29 Rastorgujevs Andrejs LAT 1062.4 552.2
## 4894 24 25 Schempp Simon GER 1053.1 520.2
## 4895 25 94 Gjesbakk Fredrik NOR 1034.1 529.6
## 4896 26 52 Puchianu Cornel ROU 1043.4 531.9
## 4897 27 18 Weger Benjamin SUI 1044.2 530.2
## 4898 28 50 Krcmar Michal CZE 1060.3 557.7
## 4899 29 43 Wiestner Serafin SUI 1067.3 539.8
## 4900 30 108 Volkov Alexey RUS 1046.7 530.3
## 4901 31 49 Eliseev Matvey RUS 1019.8 515.9
## 4902 32 37 Waeger Lorenz AUT 1053.4 534.7
## 4903 33 41 L'Abee-Lund Henrik NOR 1086.2 537.0
## 4904 34 55 Dovzan Miha SLO 1057.6 531.8
## 4905 35 21 Doherty Sean USA 1070.3 566.7
## 4906 36 42 Rees Roman GER 1058.5 552.3
## 4907 37 86 Bormolini Thomas ITA 1052.2 552.0
## 4908 38 95 Loginov Alexander RUS 1071.3 564.6
## 4909 39 39 Pryma Artem UKR 1067.2 535.5
## 4910 40 5 Windisch Dominik ITA 1077.8 533.8
## 4911 40 89 Claude Fabien FRA 1069.3 520.3
## 4912 42 35 Babikov Anton RUS 1072.7 540.8
## 4913 43 65 Dolder Mario SUI 1051.1 553.6
## 4914 44 20 Bailey Lowell USA 1082.4 580.7
## 4915 45 92 Darozhka Aliaksandr BLR 1068.2 549.4
## 4916 46 16 Bjoerndalen Ole Einar NOR 1069.9 526.7
## 4917 47 74 Fourcade Simon FRA 1080.4 548.3
## 4918 48 17 Lesser Erik GER 1089.5 547.8
## 4919 49 69 Nawrath Philipp GER 1083.6 528.8
## 4920 50 62 Trsan Rok SLO 1085.5 539.9
## 4921 51 47 Abasheu Dzmitry BLR 1084.1 568.2
## 4922 52 85 Soukup Jaroslav CZE 1078.5 560.3
## 4923 53 56 Christiansen Vetle Sjaastad NOR 1082.4 550.3
## 4924 54 45 Samuelsson Sebastian SWE 1104.6 572.7
## 4925 55 7 Lapshin Timofei KOR 1073.6 549.0
## 4926 56 53 Vaclavik Adam CZE 1107.9 548.1
## 4927 57 79 Sinapov Anton BUL 1106.8 572.7
## 4928 58 33 Iliev Vladimir BUL 1087.2 556.6
## 4929 59 72 Kazar Matej SVK 1099.5 552.7
## 4930 60 88 Gerdzhikov Dimitar BUL 1103.0 571.0
## 4931 61 26 Gow Christian CAN 1071.6 553.0
## 4932 61 87 Mesotitsch Daniel AUT 1115.9 608.6
## 4933 63 66 Pantov Anton KAZ 1099.1 569.7
## 4934 64 10 Pidruchnyi Dmytro UKR 1082.3 548.8
## 4935 65 57 Dixon Scott GBR 1092.0 553.6
## 4936 66 76 Tachizaki Mikito JPN 1108.3 545.7
## 4937 67 13 Hasilla Tomas SVK 1094.1 559.6
## 4938 68 83 Varabei Maksim BLR 1114.2 566.7
## 4939 69 64 Femling Peppe SWE 1105.7 558.3
## 4940 70 103 Jaeger Martin SUI 1133.7 577.8
## 4941 71 59 Hiidensalo Olli FIN 1134.4 551.2
## 4942 72 98 Zahkna Rene EST 1088.3 554.9
## 4943 73 84 Kobonoki Tsukasa JPN 1117.0 542.4
## 4944 74 102 Nelin Jesper SWE 1134.1 543.8
## 4945 75 75 Podkorytov Vassiliy KAZ 1114.2 570.9
## 4946 76 78 Guzik Grzegorz POL 1112.9 548.4
## 4947 77 44 Otcenas Martin SVK 1123.4 540.9
## 4948 78 11 Roesch Michael BEL 1098.6 591.8
## 4949 79 34 Faur Remus ROU 1113.3 594.6
## 4950 80 71 Montello Giuseppe ITA 1129.0 555.9
## 4951 81 61 Lessing Roland EST 1130.4 587.2
## 4952 82 6 Gronman Tuomas FIN 1119.7 540.7
## 4953 83 58 Skjelvik Kristoffer NOR 1099.0 559.5
## 4954 84 31 Kaukenas Tomas LTU 1127.9 577.5
## 4955 85 40 Green Brendan CAN 1120.8 564.9
## 4956 86 54 Malinovskii Igor RUS 1139.3 587.4
## 4957 87 30 Koiv Kauri EST 1131.9 619.8
## 4958 88 68 Siemakov Volodymyr UKR 1102.5 535.2
## 4959 89 82 Komatz David AUT 1146.9 529.0
## 4960 90 80 Szczurek Lukasz POL 1107.7 557.5
## 4961 91 81 Strolia Vytautas LTU 1126.2 599.1
## 4962 92 96 Nedza-Kubiniec Andrzej POL 1114.3 583.8
## 4963 93 91 Bricis Ilmars LAT 1128.1 560.2
## 4964 94 105 Braun Maxim KAZ 1131.0 576.7
## 4965 95 73 Gow Scott CAN 1126.6 588.3
## 4966 96 97 Oblak Lenart SLO 1122.9 559.5
## 4967 97 63 Lusa Daumants LAT 1135.1 569.6
## 4968 98 60 Schommer Paul USA 1158.5 576.7
## 4969 99 93 Zhyrnyi Oleksandr UKR 1180.1 589.5
## 4970 100 46 Nordgren Leif USA 1138.4 580.5
## 4971 101 90 Sima Michal SVK 1166.2 570.0
## 4972 102 99 Ranta Jaakko FIN 1166.0 598.6
## 4973 103 104 Angelis Apostolos GRE 1205.6 582.9
## 4974 104 67 Pop Gheorghe ROU 1263.3 627.5
## 4975 105 70 Krsmanovic Dejan SRB 1252.4 584.5
## 4976 106 77 Kim Yonggyu KOR 1248.9 621.6
## 4977 107 101 Dombrovski Karol LTU 1227.9 630.7
## 4978 1 1 Fourcade Martin FRA 1796.8 448.4
## 4979 2 22 Rastorgujevs Andrejs LAT 1827.0 447.1
## 4980 3 13 Eder Simon AUT 1821.6 452.2
## 4981 4 7 Svendsen Emil Hegle NOR 1845.9 474.4
## 4982 5 6 Peiffer Arnd GER 1852.4 478.5
## 4983 6 23 Slesingr Michal CZE 1846.4 490.9
## 4984 7 16 Beatrix Jean Guillaume FRA 1843.1 487.9
## 4985 8 19 Garanichev Evgeniy RUS 1851.5 473.4
## 4986 9 17 Krcmar Michal CZE 1849.6 470.4
## 4987 10 25 Babikov Anton RUS 1846.8 470.3
## 4988 11 2 Shipulin Anton RUS 1868.2 496.3
## 4989 12 27 Boe Tarjei NOR 1882.5 462.2
## 4990 13 11 Doll Benedikt GER 1881.2 500.6
## 4991 14 10 Lesser Erik GER 1870.8 498.4
## 4992 15 8 Bailey Lowell USA 1881.5 487.1
## 4993 16 15 Landertinger Dominik AUT 1889.7 464.3
## 4994 17 9 Bjoerndalen Ole Einar NOR 1848.6 476.5
## 4995 18 26 Lindstroem Fredrik SWE 1873.6 483.7
## 4996 19 14 Windisch Dominik ITA 1894.1 503.7
## 4997 20 5 Schempp Simon GER 1883.2 489.5
## 4998 21 21 Semenov Sergii UKR 1890.9 464.6
## 4999 22 20 Fillon Maillet Quentin FRA 1893.7 504.6
## 5000 23 30 Gjesbakk Fredrik NOR 1900.1 504.4
## 5001 24 12 Moravec Ondrej CZE 1933.9 505.0
## 5002 25 24 Desthieux Simon FRA 1934.3 496.7
## 5003 26 4 Eberhard Julian AUT 1967.7 514.4
## 5004 27 29 Anev Krasimir BUL 1966.6 519.7
## 5005 28 18 Tsvetkov Maxim RUS 1983.6 497.6
## 5006 29 3 Boe Johannes Thingnes NOR 1988.0 559.5
## 5007 30 28 Hofer Lukas ITA 2014.7 522.9
## 5008 1 3 Shipulin Anton RUS 1553.8 386.3
## 5009 2 2 Fourcade Martin FRA 1575.2 410.2
## 5010 3 1 Boe Johannes Thingnes NOR 1574.9 410.4
## 5011 4 15 Lindstroem Fredrik SWE 1590.6 388.4
## 5012 5 21 Hofer Lukas ITA 1622.7 402.6
## 5013 6 10 Eberhard Julian AUT 1620.5 403.7
## 5014 7 12 Eder Simon AUT 1619.7 401.9
## 5015 8 7 Moravec Ondrej CZE 1612.8 417.8
## 5016 9 8 Garanichev Evgeniy RUS 1618.5 405.3
## 5017 10 23 Rastorgujevs Andrejs LAT 1638.0 405.2
## 5018 11 24 Schempp Simon GER 1627.4 401.3
## 5019 12 4 Landertinger Dominik AUT 1650.5 393.3
## 5020 13 28 Krcmar Michal CZE 1651.3 392.9
## 5021 14 6 Boe Tarjei NOR 1648.8 425.0
## 5022 15 40 Windisch Dominik ITA 1666.2 388.4
## 5023 16 20 Svendsen Emil Hegle NOR 1659.7 407.1
## 5024 17 5 Semenov Sergii UKR 1660.1 416.6
## 5025 18 11 Doll Benedikt GER 1675.5 413.2
## 5026 19 30 Volkov Alexey RUS 1678.5 398.2
## 5027 20 25 Gjesbakk Fredrik NOR 1699.2 393.7
## 5028 21 39 Pryma Artem UKR 1693.5 390.0
## 5029 22 18 Anev Krasimir BUL 1696.5 413.4
## 5030 23 44 Bailey Lowell USA 1710.5 388.0
## 5031 24 42 Babikov Anton RUS 1690.1 435.8
## 5032 25 33 L'Abee-Lund Henrik NOR 1719.1 428.0
## 5033 26 14 Peiffer Arnd GER 1714.2 437.8
## 5034 27 16 Fillon Maillet Quentin FRA 1712.7 413.9
## 5035 28 48 Lesser Erik GER 1713.2 431.6
## 5036 29 58 Iliev Vladimir BUL 1717.2 387.2
## 5037 30 53 Christiansen Vetle Sjaastad NOR 1718.7 383.9
## 5038 31 27 Weger Benjamin SUI 1716.0 414.2
## 5039 32 29 Wiestner Serafin SUI 1733.4 415.1
## 5040 33 32 Waeger Lorenz AUT 1720.3 421.5
## 5041 34 13 Slesingr Michal CZE 1735.6 453.8
## 5042 35 47 Fourcade Simon FRA 1742.2 401.1
## 5043 36 38 Loginov Alexander RUS 1739.3 401.4
## 5044 37 55 Lapshin Timofei KOR 1718.6 413.5
## 5045 38 17 Bauer Klemen SLO 1742.1 440.8
## 5046 39 54 Samuelsson Sebastian SWE 1749.7 420.2
## 5047 40 19 Beatrix Jean Guillaume FRA 1741.5 460.8
## 5048 41 57 Sinapov Anton BUL 1770.7 439.0
## 5049 42 43 Dolder Mario SUI 1773.5 442.5
## 5050 43 37 Bormolini Thomas ITA 1756.0 408.9
## 5051 44 52 Soukup Jaroslav CZE 1764.8 447.2
## 5052 45 56 Vaclavik Adam CZE 1786.0 419.8
## 5053 46 35 Doherty Sean USA 1792.0 419.6
## 5054 47 22 Bocharnikov Sergey BLR 1802.9 438.2
## 5055 48 36 Rees Roman GER 1785.8 432.6
## 5056 49 51 Abasheu Dzmitry BLR 1814.2 420.6
## 5057 50 45 Darozhka Aliaksandr BLR 1808.8 410.7
## 5058 51 31 Eliseev Matvey RUS 1805.8 440.3
## 5059 52 34 Dovzan Miha SLO 1824.5 413.9
## 5060 53 41 Claude Fabien FRA 1848.0 446.8
## 5061 54 50 Trsan Rok SLO 1844.6 410.5
## 5062 55 49 Nawrath Philipp GER 1870.2 464.7
## 5063 56 59 Kazar Matej SVK 1893.7 451.1
## 5064 1 30 Fourcade Martin FRA 965.2 479.8
## 5065 2 21 Boe Johannes Thingnes NOR 964.7 486.4
## 5066 3 29 Shipulin Anton RUS 978.8 486.2
## 5067 4 18 Svendsen Emil Hegle NOR 983.5 491.5
## 5068 5 88 Fillon Maillet Quentin FRA 976.2 481.9
## 5069 6 38 Schempp Simon GER 986.0 490.1
## 5070 7 9 Bjoerndalen Ole Einar NOR 976.1 487.5
## 5071 8 3 Lesser Erik GER 982.6 490.7
## 5072 9 35 Krcmar Michal CZE 990.8 495.3
## 5073 10 41 Eliseev Matvey RUS 995.0 481.4
## 5074 11 31 Eder Simon AUT 992.8 506.0
## 5075 12 8 Bauer Klemen SLO 1003.9 503.4
## 5076 13 28 Tsvetkov Maxim RUS 1005.5 501.2
## 5077 14 47 Mesotitsch Daniel AUT 1012.6 510.6
## 5078 15 33 Slesingr Michal CZE 1019.2 522.0
## 5079 16 11 Roesch Michael BEL 1018.5 499.6
## 5080 17 42 Wiestner Serafin SUI 1015.7 520.0
## 5081 18 15 Bailey Lowell USA 1008.6 502.8
## 5082 19 14 Peiffer Arnd GER 1022.4 498.3
## 5083 20 17 Desthieux Simon FRA 1028.3 503.2
## 5084 21 2 Doll Benedikt GER 1037.8 551.7
## 5085 21 49 Babikov Anton RUS 1007.0 507.2
## 5086 23 70 Gow Scott CAN 1018.8 513.3
## 5087 24 4 Weger Benjamin SUI 1020.4 518.9
## 5088 25 45 Semenov Sergii UKR 1007.4 513.0
## 5089 26 27 Anev Krasimir BUL 1005.2 502.1
## 5090 27 39 Beatrix Jean Guillaume FRA 1034.5 515.1
## 5091 28 68 Dolder Mario SUI 1021.5 531.1
## 5092 29 19 Fourcade Simon FRA 1020.2 494.5
## 5093 30 48 Samuelsson Sebastian SWE 1023.2 526.3
## 5094 31 10 Moravec Ondrej CZE 1032.3 503.3
## 5095 32 36 Birkeland Lars Helge NOR 1039.3 515.3
## 5096 33 102 Gow Christian CAN 1015.9 508.2
## 5097 34 7 Puchianu Cornel ROU 1036.7 532.3
## 5098 35 13 Hasilla Tomas SVK 1024.9 511.3
## 5099 35 25 Garanichev Evgeniy RUS 1027.5 522.0
## 5100 37 97 Dorfer Matthias GER 1007.9 514.2
## 5101 38 81 Bjoentegaard Erlend NOR 1039.4 547.9
## 5102 39 16 Pryma Artem UKR 1038.8 521.8
## 5103 39 76 Leitner Felix AUT 1040.9 497.5
## 5104 41 64 Yaliotnau Raman BLR 1046.4 545.8
## 5105 42 40 Hofer Lukas ITA 1049.2 509.7
## 5106 42 46 Otcenas Martin SVK 1042.5 519.0
## 5107 44 94 Bocharnikov Sergey BLR 1026.9 523.5
## 5108 45 60 Sinapov Anton BUL 1051.9 548.6
## 5109 46 6 Pidruchnyi Dmytro UKR 1061.1 538.7
## 5110 47 20 Eberhard Julian AUT 1065.3 507.3
## 5111 48 82 Lessing Roland EST 1032.6 523.5
## 5112 49 26 Landertinger Dominik AUT 1059.7 555.1
## 5113 50 58 Vaclavik Adam CZE 1045.7 500.7
## 5114 51 84 Krupcik Tomas CZE 1025.2 512.7
## 5115 52 23 Green Brendan CAN 1060.3 530.6
## 5116 53 12 Burke Tim USA 1066.1 522.4
## 5117 53 55 Dombrovski Karol LTU 1037.0 527.5
## 5118 55 65 Claude Fabien FRA 1057.9 562.5
## 5119 56 86 Finello Jeremy SUI 1043.7 508.8
## 5120 57 62 Graf Florian GER 1055.3 510.8
## 5121 58 79 Hiidensalo Olli FIN 1063.2 531.5
## 5122 59 5 Windisch Dominik ITA 1066.2 548.2
## 5123 60 63 Kilchytskyy Vitaliy UKR 1075.2 549.1
## 5124 61 44 Iliev Vladimir BUL 1077.3 541.0
## 5125 62 77 Shopin Yury RUS 1066.6 554.7
## 5126 63 53 Kazar Matej SVK 1074.8 535.9
## 5127 64 61 Savitskiy Yan KAZ 1038.9 537.7
## 5128 65 59 Currier Russell USA 1074.5 530.4
## 5129 66 72 Tachizaki Mikito JPN 1064.4 518.4
## 5130 67 37 Varabei Maksim BLR 1087.0 555.2
## 5131 68 104 Grossegger Sven AUT 1065.1 541.6
## 5132 69 103 L'Abee-Lund Henrik NOR 1081.6 550.8
## 5133 70 34 Rastorgujevs Andrejs LAT 1079.1 591.4
## 5134 71 56 Guzik Grzegorz POL 1070.1 536.7
## 5135 72 69 Braun Maxim KAZ 1056.2 543.9
## 5136 73 52 Zahkna Rene EST 1058.2 530.1
## 5137 74 74 Bricis Ilmars LAT 1083.4 561.2
## 5138 75 91 Montello Giuseppe ITA 1067.8 526.1
## 5139 76 24 Nelin Jesper SWE 1074.2 528.8
## 5140 77 71 Faur Remus ROU 1073.9 556.7
## 5141 78 67 Crnkovic Kresimir CRO 1106.9 566.5
## 5142 79 96 Podkorytov Vassiliy KAZ 1087.2 545.4
## 5143 80 54 Davies Macx CAN 1095.1 585.6
## 5144 81 101 Zhyrnyi Oleksandr UKR 1093.2 562.4
## 5145 82 57 Bormolini Thomas ITA 1082.6 531.1
## 5146 82 73 Kaukenas Tomas LTU 1086.7 550.3
## 5147 84 50 Stenersen Torstein SWE 1077.9 547.9
## 5148 85 87 Gerdzhikov Dimitar BUL 1081.8 530.2
## 5149 86 98 Sima Michal SVK 1081.2 558.7
## 5150 87 66 Janik Mateusz POL 1080.6 557.6
## 5151 88 83 Dovzan Miha SLO 1098.3 529.6
## 5152 89 32 Chepelin Vladimir BLR 1096.1 573.8
## 5153 90 78 Trsan Rok SLO 1102.2 538.9
## 5154 91 92 Kobonoki Tsukasa JPN 1094.9 538.9
## 5155 92 75 Dixon Scott GBR 1091.9 539.5
## 5156 93 100 Szczurek Lukasz POL 1130.0 556.1
## 5157 94 85 Strolia Vytautas LTU 1108.4 601.7
## 5158 95 99 Buta George ROU 1106.8 533.5
## 5159 96 22 Gronman Tuomas FIN 1117.2 527.6
## 5160 97 1 Koiv Kauri EST 1133.8 576.0
## 5161 98 80 Kim Jongmin KOR 1115.8 567.1
## 5162 99 51 Femling Peppe SWE 1096.0 543.6
## 5163 100 93 Vitenko Vladislav KAZ 1129.8 581.9
## 5164 101 95 Lee Inbok KOR 1141.2 585.4
## 5165 102 43 Drinovec Mitja SLO 1126.5 588.7
## 5166 103 90 Huhtala Teemu FIN 1142.8 563.1
## 5167 104 89 Slotins Roberts LAT 1142.8 589.3
## 5168 1 1 Fourcade Martin FRA 1490.6 370.3
## 5169 2 4 Svendsen Emil Hegle NOR 1515.0 374.6
## 5170 3 3 Shipulin Anton RUS 1514.6 394.9
## 5171 4 2 Boe Johannes Thingnes NOR 1550.9 411.1
## 5172 5 6 Schempp Simon GER 1558.2 375.1
## 5173 6 16 Roesch Michael BEL 1573.8 379.4
## 5174 7 10 Eliseev Matvey RUS 1595.9 413.1
## 5175 8 13 Tsvetkov Maxim RUS 1601.4 410.2
## 5176 9 7 Bjoerndalen Ole Einar NOR 1609.6 378.4
## 5177 10 9 Krcmar Michal CZE 1610.5 386.6
## 5178 11 8 Lesser Erik GER 1595.4 413.2
## 5179 12 19 Peiffer Arnd GER 1607.4 384.7
## 5180 13 32 Birkeland Lars Helge NOR 1622.9 378.2
## 5181 14 31 Moravec Ondrej CZE 1626.1 373.5
## 5182 15 20 Desthieux Simon FRA 1632.7 409.6
## 5183 16 11 Eder Simon AUT 1628.9 400.9
## 5184 17 24 Weger Benjamin SUI 1635.4 384.4
## 5185 18 18 Bailey Lowell USA 1617.3 388.5
## 5186 19 15 Slesingr Michal CZE 1633.9 431.2
## 5187 20 5 Fillon Maillet Quentin FRA 1633.4 423.7
## 5188 21 47 Eberhard Julian AUT 1647.3 395.2
## 5189 22 21 Doll Benedikt GER 1655.9 433.6
## 5190 23 39 Pryma Artem UKR 1648.2 374.8
## 5191 24 25 Semenov Sergii UKR 1641.9 416.4
## 5192 25 26 Anev Krasimir BUL 1652.6 406.0
## 5193 26 36 Garanichev Evgeniy RUS 1649.5 383.5
## 5194 27 49 Landertinger Dominik AUT 1668.1 395.6
## 5195 28 42 Hofer Lukas ITA 1674.1 393.8
## 5196 29 59 Windisch Dominik ITA 1673.3 382.4
## 5197 30 46 Pidruchnyi Dmytro UKR 1664.0 408.4
## 5198 31 33 Gow Christian CAN 1656.7 388.1
## 5199 32 38 Bjoentegaard Erlend NOR 1689.8 416.9
## 5200 33 28 Dolder Mario SUI 1682.0 431.1
## 5201 34 22 Babikov Anton RUS 1689.3 420.1
## 5202 35 30 Samuelsson Sebastian SWE 1676.9 403.0
## 5203 36 37 Dorfer Matthias GER 1679.5 409.5
## 5204 37 35 Hasilla Tomas SVK 1674.1 404.7
## 5205 38 51 Krupcik Tomas CZE 1676.1 418.6
## 5206 39 27 Beatrix Jean Guillaume FRA 1709.2 394.3
## 5207 40 57 Graf Florian GER 1713.0 389.9
## 5208 41 12 Bauer Klemen SLO 1714.7 418.2
## 5209 42 53 Burke Tim USA 1745.8 455.3
## 5210 43 41 Yaliotnau Raman BLR 1757.3 391.4
## 5211 44 44 Bocharnikov Sergey BLR 1757.6 395.0
## 5212 45 17 Wiestner Serafin SUI 1735.0 397.4
## 5213 46 14 Mesotitsch Daniel AUT 1743.1 449.9
## 5214 47 43 Otcenas Martin SVK 1755.8 425.9
## 5215 48 23 Gow Scott CAN 1751.6 449.2
## 5216 49 48 Lessing Roland EST 1758.1 406.5
## 5217 50 50 Vaclavik Adam CZE 1771.1 396.0
## 5218 51 56 Finello Jeremy SUI 1772.5 394.6
## 5219 52 45 Sinapov Anton BUL 1753.5 424.2
## 5220 53 54 Dombrovski Karol LTU 1766.9 422.8
## 5221 54 58 Hiidensalo Olli FIN 1791.9 438.1
## 5222 55 40 Leitner Felix AUT 1790.0 436.9
## 5223 56 29 Fourcade Simon FRA 1722.9 423.5
## 5224 57 52 Green Brendan CAN 1801.6 419.8
## 5225 58 34 Puchianu Cornel ROU 1811.1 482.1
## 5226 1 90 Eberhard Julian AUT 970.2 500.0
## 5227 2 81 Bailey Lowell USA 990.8 510.9
## 5228 3 76 Fourcade Martin FRA 1023.9 528.2
## 5229 4 26 Landertinger Dominik AUT 1014.4 519.3
## 5230 5 72 Lesser Erik GER 1014.3 531.1
## 5231 6 24 Windisch Dominik ITA 1022.5 505.0
## 5232 7 70 Wiestner Serafin SUI 1026.4 518.9
## 5233 8 63 Eder Simon AUT 1033.6 562.8
## 5234 9 89 Garanichev Evgeniy RUS 1023.4 548.2
## 5235 10 59 Pryma Artem UKR 1006.4 527.4
## 5236 11 34 Desthieux Simon FRA 1028.2 539.8
## 5237 12 6 Hofer Lukas ITA 1040.8 537.9
## 5238 13 46 Rees Roman GER 1024.2 546.0
## 5239 14 37 Tsvetkov Maxim RUS 1023.9 528.7
## 5240 15 33 Rastorgujevs Andrejs LAT 1043.9 536.6
## 5241 16 41 Pidruchnyi Dmytro UKR 1037.5 530.7
## 5242 17 8 Beatrix Jean Guillaume FRA 1042.1 550.6
## 5243 18 11 Christiansen Vetle Sjaastad NOR 1041.7 543.1
## 5244 19 9 Krupcik Tomas CZE 1027.9 537.1
## 5245 20 27 Doll Benedikt GER 1053.3 528.7
## 5246 21 13 Waeger Lorenz AUT 1029.4 533.7
## 5247 21 56 Fourcade Simon FRA 1035.9 538.5
## 5248 23 39 Shipulin Anton RUS 1044.3 555.3
## 5249 24 73 Slesingr Michal CZE 1039.5 526.9
## 5250 25 40 Semenov Sergii UKR 1046.5 544.3
## 5251 26 62 Bjoerndalen Ole Einar NOR 1058.5 554.5
## 5252 27 22 Gow Scott CAN 1052.8 541.2
## 5253 28 31 Green Brendan CAN 1051.4 552.2
## 5254 29 21 Graf Florian GER 1052.7 538.9
## 5255 30 47 Bocharnikov Sergey BLR 1044.4 534.6
## 5256 31 32 Peiffer Arnd GER 1068.2 584.7
## 5257 32 10 Fillon Maillet Quentin FRA 1071.0 532.3
## 5258 33 79 Varabei Maksim BLR 1053.9 559.7
## 5259 34 36 Chepelin Vladimir BLR 1066.5 562.5
## 5260 35 80 Finello Jeremy SUI 1056.5 571.7
## 5261 36 69 Montello Giuseppe ITA 1070.0 564.2
## 5262 37 29 Nordgren Leif USA 1067.3 545.7
## 5263 38 67 L'Abee-Lund Henrik NOR 1083.0 593.6
## 5264 39 92 Gerdzhikov Dimitar BUL 1055.5 545.7
## 5265 40 23 Gjermundshaug Vegard NOR 1065.3 548.7
## 5266 41 94 Babikov Anton RUS 1054.5 561.6
## 5267 42 16 Iliev Vladimir BUL 1087.4 577.2
## 5268 43 30 Vaclavik Adam CZE 1078.1 539.2
## 5269 43 42 Anev Krasimir BUL 1063.7 546.0
## 5270 45 3 Weger Benjamin SUI 1068.3 528.1
## 5271 46 87 Claude Fabien FRA 1070.2 540.6
## 5272 47 35 Savitskiy Yan KAZ 1071.0 570.7
## 5273 48 2 Bauer Klemen SLO 1080.0 567.7
## 5274 49 49 Krcmar Michal CZE 1069.1 548.6
## 5275 50 14 Samuelsson Sebastian SWE 1086.7 569.1
## 5276 50 20 Dolder Mario SUI 1086.2 597.4
## 5277 52 5 Shopin Yury RUS 1067.2 558.4
## 5278 53 43 Guzik Grzegorz POL 1077.3 537.9
## 5279 54 4 Siemakov Volodymyr UKR 1079.4 577.5
## 5280 55 50 Podkorytov Vassiliy KAZ 1077.9 565.1
## 5281 56 12 Gow Christian CAN 1080.3 534.1
## 5282 57 74 Hasilla Tomas SVK 1083.3 567.3
## 5283 58 86 Zhyrnyi Oleksandr UKR 1088.6 550.9
## 5284 59 97 Hoerl Fabian AUT 1077.0 578.6
## 5285 60 48 Sinapov Anton BUL 1110.6 546.7
## 5286 61 84 Gjesbakk Fredrik NOR 1093.3 590.9
## 5287 62 66 Szczurek Lukasz POL 1089.9 550.7
## 5288 63 19 Faur Remus ROU 1095.4 552.7
## 5289 64 45 Bjoentegaard Erlend NOR 1106.4 573.8
## 5290 65 75 Puchianu Cornel ROU 1097.7 571.9
## 5291 66 58 Bricis Ilmars LAT 1089.5 582.2
## 5292 67 88 Orpana Sami FIN 1085.2 577.5
## 5293 68 18 Otcenas Martin SVK 1104.0 593.8
## 5294 69 95 Soukup Jaroslav CZE 1093.0 554.9
## 5295 70 55 Tachizaki Mikito JPN 1101.8 591.9
## 5296 71 53 Dombrovski Karol LTU 1099.5 572.6
## 5297 72 52 Grossegger Sven AUT 1098.8 540.9
## 5298 73 82 Bormolini Thomas ITA 1111.1 554.6
## 5299 74 44 Dovzan Miha SLO 1108.5 584.9
## 5300 75 65 Pantov Anton KAZ 1114.5 545.8
## 5301 76 78 Lusa Daumants LAT 1093.7 575.5
## 5302 77 98 Strolia Vytautas LTU 1116.5 562.9
## 5303 78 15 Abasheu Dzmitry BLR 1121.6 581.4
## 5304 79 91 Stenersen Torstein SWE 1110.3 547.8
## 5305 80 93 Doherty Sean USA 1119.5 569.0
## 5306 81 7 Roesch Michael BEL 1112.0 590.9
## 5307 82 71 Zahkna Rene EST 1118.1 567.6
## 5308 83 25 Koiv Kauri EST 1106.5 593.1
## 5309 84 38 Femling Peppe SWE 1114.1 569.3
## 5310 85 103 Buta George ROU 1125.4 552.9
## 5311 86 1 Kazar Matej SVK 1142.9 587.5
## 5312 87 102 Kim Jongmin KOR 1095.7 574.9
## 5313 88 54 Smith Nathan CAN 1116.3 605.6
## 5314 89 17 Kaukenas Tomas LTU 1129.9 619.4
## 5315 90 85 Sima Michal SVK 1131.4 570.5
## 5316 91 96 Kobonoki Tsukasa JPN 1141.2 604.4
## 5317 92 28 Gronman Tuomas FIN 1140.0 565.6
## 5318 93 51 Loukkaanhuhta Mikko FIN 1156.4 585.8
## 5319 94 64 Kim Yonggyu KOR 1135.1 616.4
## 5320 95 77 Trsan Rok SLO 1160.5 566.7
## 5321 96 100 Remmelg Martin EST 1141.1 608.0
## 5322 97 99 Vitenko Vladislav KAZ 1170.6 570.6
## 5323 98 101 Davies Macx CAN 1187.1 592.0
## 5324 99 60 Oblak Lenart SLO 1168.2 624.7
## 5325 99 68 Makhambetov Timur RUS 1181.8 580.0
## 5326 101 61 Schommer Paul USA 1190.0 599.0
## 5327 102 83 Penar Rafal POL 1191.2 622.0
## 5328 1 3 Fourcade Martin FRA 1571.4 385.7
## 5329 2 23 Shipulin Anton RUS 1599.9 389.0
## 5330 3 1 Eberhard Julian AUT 1608.4 410.6
## 5331 4 8 Eder Simon AUT 1630.3 435.2
## 5332 5 9 Garanichev Evgeniy RUS 1635.2 394.3
## 5333 6 11 Desthieux Simon FRA 1640.5 393.6
## 5334 7 4 Landertinger Dominik AUT 1653.3 450.9
## 5335 8 20 Doll Benedikt GER 1659.6 410.5
## 5336 9 2 Bailey Lowell USA 1643.0 401.7
## 5337 10 12 Hofer Lukas ITA 1658.1 437.7
## 5338 11 17 Beatrix Jean Guillaume FRA 1656.8 401.0
## 5339 12 18 Christiansen Vetle Sjaastad NOR 1660.8 410.1
## 5340 13 5 Lesser Erik GER 1660.2 413.8
## 5341 14 15 Rastorgujevs Andrejs LAT 1680.2 398.2
## 5342 15 41 Babikov Anton RUS 1677.3 396.0
## 5343 16 22 Fourcade Simon FRA 1675.5 441.8
## 5344 17 38 L'Abee-Lund Henrik NOR 1687.5 406.1
## 5345 18 30 Bocharnikov Sergey BLR 1689.3 411.7
## 5346 19 26 Bjoerndalen Ole Einar NOR 1690.8 439.8
## 5347 20 14 Tsvetkov Maxim RUS 1684.7 404.2
## 5348 21 31 Peiffer Arnd GER 1702.5 445.0
## 5349 22 6 Windisch Dominik ITA 1698.8 402.8
## 5350 23 13 Rees Roman GER 1701.2 421.9
## 5351 24 24 Slesingr Michal CZE 1699.4 425.0
## 5352 25 32 Fillon Maillet Quentin FRA 1697.8 396.0
## 5353 26 7 Wiestner Serafin SUI 1700.7 421.8
## 5354 27 19 Krupcik Tomas CZE 1707.4 426.5
## 5355 28 37 Nordgren Leif USA 1705.9 426.5
## 5356 29 29 Graf Florian GER 1722.1 442.4
## 5357 30 16 Pidruchnyi Dmytro UKR 1715.7 444.3
## 5358 31 35 Finello Jeremy SUI 1740.5 410.7
## 5359 32 56 Gow Christian CAN 1748.0 417.4
## 5360 33 10 Pryma Artem UKR 1749.8 436.6
## 5361 34 21 Waeger Lorenz AUT 1766.8 435.6
## 5362 35 44 Anev Krasimir BUL 1770.0 409.5
## 5363 36 34 Chepelin Vladimir BLR 1781.8 450.1
## 5364 37 25 Semenov Sergii UKR 1772.5 476.0
## 5365 38 48 Bauer Klemen SLO 1785.1 436.4
## 5366 39 60 Sinapov Anton BUL 1782.7 432.0
## 5367 40 40 Gjermundshaug Vegard NOR 1788.6 454.8
## 5368 41 47 Savitskiy Yan KAZ 1782.2 464.4
## 5369 42 52 Shopin Yury RUS 1795.4 414.2
## 5370 43 27 Gow Scott CAN 1802.3 482.0
## 5371 44 28 Green Brendan CAN 1796.2 426.7
## 5372 45 59 Hoerl Fabian AUT 1808.7 419.8
## 5373 46 36 Montello Giuseppe ITA 1820.9 439.4
## 5374 47 46 Claude Fabien FRA 1829.4 464.7
## 5375 48 45 Weger Benjamin SUI 1812.9 420.5
## 5376 49 54 Siemakov Volodymyr UKR 1818.0 467.6
## 5377 50 58 Zhyrnyi Oleksandr UKR 1829.1 467.0
## 5378 51 49 Krcmar Michal CZE 1823.1 438.1
## 5379 52 39 Gerdzhikov Dimitar BUL 1823.6 440.0
## 5380 53 50 Samuelsson Sebastian SWE 1854.1 407.6
## 5381 54 33 Varabei Maksim BLR 1851.4 443.9
## 5382 55 57 Hasilla Tomas SVK 1857.6 450.5
## 5383 56 51 Dolder Mario SUI 1843.3 495.9
## 5384 57 53 Guzik Grzegorz POL 1880.2 450.4
## 5385 58 43 Vaclavik Adam CZE 1904.8 458.6
## 5386 1 60 Fourcade Martin FRA 943.9 473.6
## 5387 2 27 Eberhard Julian AUT 957.1 480.5
## 5388 3 25 Svendsen Emil Hegle NOR 969.3 482.8
## 5389 4 81 Peiffer Arnd GER 973.3 489.8
## 5390 5 66 Schempp Simon GER 979.8 502.6
## 5391 6 30 Malyshko Dmitry RUS 973.1 485.3
## 5392 7 23 Pidruchnyi Dmytro UKR 979.0 490.3
## 5393 8 13 Bjoerndalen Ole Einar NOR 978.1 494.8
## 5394 9 26 Landertinger Dominik AUT 996.2 512.1
## 5395 10 10 Birkeland Lars Helge NOR 981.2 496.0
## 5396 11 22 Weger Benjamin SUI 983.2 490.8
## 5397 12 21 Burke Tim USA 998.4 510.7
## 5398 13 72 Lindstroem Fredrik SWE 991.3 501.4
## 5399 14 38 Bauer Klemen SLO 993.8 506.8
## 5400 15 50 Mesotitsch Daniel AUT 987.2 501.0
## 5401 16 47 Bischl Matthias GER 993.1 501.0
## 5402 17 48 Chepelin Vladimir BLR 996.3 518.6
## 5403 18 80 Bailey Lowell USA 996.8 509.7
## 5404 19 90 Garanichev Evgeniy RUS 996.8 508.4
## 5405 20 29 Doll Benedikt GER 1019.6 540.1
## 5406 21 100 Bjoentegaard Erlend NOR 1013.3 518.8
## 5407 22 33 Rastorgujevs Andrejs LAT 1003.9 506.0
## 5408 23 14 Babikov Anton RUS 1009.3 493.4
## 5409 23 69 Shipulin Anton RUS 1013.9 501.6
## 5410 25 78 Dolder Mario SUI 1008.0 517.9
## 5411 26 75 Fillon Maillet Quentin FRA 1002.8 502.9
## 5412 27 31 Lesser Erik GER 1001.7 496.4
## 5413 28 15 Iliev Vladimir BUL 1013.8 509.4
## 5414 29 71 Krcmar Michal CZE 1009.7 515.1
## 5415 30 51 Anev Krasimir BUL 1004.2 516.6
## 5416 31 70 Tsvetkov Maxim RUS 1010.4 516.8
## 5417 32 57 Kaukenas Tomas LTU 1005.0 506.0
## 5418 33 65 Beatrix Jean Guillaume FRA 1020.3 528.7
## 5419 34 28 Roesch Michael BEL 1002.6 494.0
## 5420 35 45 Pryma Artem UKR 1022.4 520.6
## 5421 36 35 Samuelsson Sebastian SWE 1018.0 507.6
## 5422 37 16 Boe Johannes Thingnes NOR 1016.3 501.8
## 5423 38 93 Willeitner Michael GER 1024.1 508.7
## 5424 39 88 Vaclavik Adam CZE 1025.7 496.7
## 5425 40 79 Doherty Sean USA 1013.8 498.8
## 5426 41 4 Wiestner Serafin SUI 1036.5 529.3
## 5427 42 34 Gow Scott CAN 1022.1 506.9
## 5428 43 52 Windisch Dominik ITA 1029.1 515.8
## 5429 44 42 Bricis Ilmars LAT 1013.3 509.9
## 5430 45 91 Stenersen Torstein SWE 1014.8 526.0
## 5431 46 24 Fourcade Simon FRA 1020.8 522.2
## 5432 47 92 Kilchytskyy Vitaliy UKR 1017.6 519.9
## 5433 48 11 Semenov Sergii UKR 1038.7 531.2
## 5434 49 105 Claude Fabien FRA 1026.7 513.9
## 5435 50 44 Komatz David AUT 1032.4 503.4
## 5436 51 20 Gronman Tuomas FIN 1036.7 502.6
## 5437 52 56 Moravec Ondrej CZE 1055.5 510.7
## 5438 53 9 Nelin Jesper SWE 1055.9 484.5
## 5439 53 64 L'Abee-Lund Henrik NOR 1058.6 552.4
## 5440 55 19 Hofer Lukas ITA 1057.4 536.2
## 5441 56 43 Fak Jakov SLO 1032.0 524.9
## 5442 57 36 Bocharnikov Sergey BLR 1051.4 547.5
## 5443 58 58 Savitskiy Yan KAZ 1028.5 523.9
## 5444 59 53 Eliseev Matvey RUS 1050.2 489.2
## 5445 60 107 Bormolini Thomas ITA 1027.9 530.5
## 5446 61 5 Siemakov Volodymyr UKR 1055.2 517.7
## 5447 62 74 Faur Remus ROU 1043.3 536.6
## 5448 63 96 Grossegger Sven AUT 1039.9 538.9
## 5449 64 76 Green Brendan CAN 1054.3 527.4
## 5450 65 77 Slesingr Michal CZE 1060.1 503.9
## 5451 66 17 Guzik Grzegorz POL 1048.7 532.1
## 5452 67 59 Kazar Matej SVK 1054.3 547.4
## 5453 68 82 Braun Maxim KAZ 1038.2 531.0
## 5454 69 61 Zahkna Rene EST 1052.0 518.3
## 5455 70 18 Soukup Jaroslav CZE 1064.2 515.3
## 5456 71 83 Nordgren Leif USA 1059.3 529.0
## 5457 72 95 Tambornino Eligius SUI 1073.6 550.5
## 5458 73 7 Yaliotnau Raman BLR 1086.3 592.0
## 5459 74 32 Puchianu Cornel ROU 1064.2 540.1
## 5460 75 1 Currier Russell USA 1087.5 547.5
## 5461 76 6 Leitner Felix AUT 1061.0 536.1
## 5462 77 99 Orpana Sami FIN 1067.1 563.7
## 5463 78 98 Dovzan Miha SLO 1067.9 536.1
## 5464 79 41 Montello Giuseppe ITA 1079.5 560.8
## 5465 80 55 Strolia Vytautas LTU 1099.1 532.7
## 5466 81 37 Crnkovic Kresimir CRO 1081.7 553.6
## 5467 82 101 Davies Macx CAN 1085.7 534.3
## 5468 83 85 Abasheu Dzmitry BLR 1092.9 529.4
## 5469 84 40 Hiidensalo Olli FIN 1093.5 579.2
## 5470 85 12 Otcenas Martin SVK 1098.8 554.1
## 5471 86 8 Sinapov Anton BUL 1105.8 530.7
## 5472 87 86 Podkorytov Vassiliy KAZ 1087.0 509.5
## 5473 88 2 Gow Christian CAN 1094.6 537.6
## 5474 89 84 Buta George ROU 1082.5 515.3
## 5475 90 39 Janik Mateusz POL 1080.1 571.0
## 5476 91 3 Hasilla Tomas SVK 1108.7 535.5
## 5477 92 102 Gerdzhikov Dimitar BUL 1101.4 594.5
## 5478 93 46 Ermits Kalev EST 1110.2 512.6
## 5479 94 106 Penar Rafal POL 1088.8 567.3
## 5480 95 103 Dombrovski Karol LTU 1097.9 581.0
## 5481 96 73 Kobonoki Tsukasa JPN 1128.9 576.5
## 5482 97 94 Lusa Daumants LAT 1102.1 576.6
## 5483 98 68 Pantov Anton KAZ 1141.8 554.3
## 5484 99 49 Lee Inbok KOR 1113.9 591.1
## 5485 100 97 Tachizaki Mikito JPN 1126.3 625.6
## 5486 101 62 Trsan Rok SLO 1142.1 611.9
## 5487 102 54 Hodzic Edin SRB 1101.2 584.4
## 5488 103 87 Sima Michal SVK 1116.1 576.5
## 5489 104 104 Kim Jongmin KOR 1126.3 579.8
## 5490 105 67 Dixon Scott GBR 1126.9 574.8
## 5491 106 89 Remmelg Martin EST 1156.4 572.1
## 5492 107 63 Angelis Apostolos GRE 1197.6 603.6
## 5493 1 1 Fourcade Martin FRA 1686.4 400.1
## 5494 2 3 Svendsen Emil Hegle NOR 1700.7 414.9
## 5495 3 29 Krcmar Michal CZE 1721.9 406.7
## 5496 4 24 Shipulin Anton RUS 1715.1 422.1
## 5497 5 4 Peiffer Arnd GER 1719.2 425.2
## 5498 6 9 Landertinger Dominik AUT 1734.1 407.0
## 5499 7 5 Schempp Simon GER 1741.9 446.4
## 5500 8 21 Bjoentegaard Erlend NOR 1742.5 401.4
## 5501 9 15 Mesotitsch Daniel AUT 1731.5 410.7
## 5502 10 22 Rastorgujevs Andrejs LAT 1740.3 401.6
## 5503 11 43 Windisch Dominik ITA 1750.2 421.0
## 5504 12 28 Iliev Vladimir BUL 1747.8 395.7
## 5505 13 2 Eberhard Julian AUT 1765.0 411.8
## 5506 14 6 Malyshko Dmitry RUS 1741.7 448.1
## 5507 15 37 Boe Johannes Thingnes NOR 1759.7 400.3
## 5508 16 46 Fourcade Simon FRA 1765.2 400.3
## 5509 17 33 Beatrix Jean Guillaume FRA 1764.1 424.2
## 5510 18 7 Pidruchnyi Dmytro UKR 1759.3 397.9
## 5511 19 13 Lindstroem Fredrik SWE 1760.4 403.9
## 5512 20 11 Weger Benjamin SUI 1756.8 436.6
## 5513 21 54 L'Abee-Lund Henrik NOR 1770.5 402.7
## 5514 22 20 Doll Benedikt GER 1784.6 443.1
## 5515 23 27 Lesser Erik GER 1784.2 443.9
## 5516 24 12 Burke Tim USA 1786.0 423.8
## 5517 25 19 Garanichev Evgeniy RUS 1787.4 448.3
## 5518 26 18 Bailey Lowell USA 1772.4 434.2
## 5519 27 35 Pryma Artem UKR 1782.3 408.3
## 5520 28 25 Dolder Mario SUI 1785.6 441.8
## 5521 29 17 Chepelin Vladimir BLR 1790.9 408.3
## 5522 30 30 Anev Krasimir BUL 1789.1 432.2
## 5523 31 34 Roesch Michael BEL 1788.3 454.2
## 5524 32 26 Fillon Maillet Quentin FRA 1823.7 443.0
## 5525 33 49 Claude Fabien FRA 1829.2 452.4
## 5526 34 8 Bjoerndalen Ole Einar NOR 1822.6 440.5
## 5527 35 58 Savitskiy Yan KAZ 1824.1 419.9
## 5528 36 10 Birkeland Lars Helge NOR 1817.4 450.5
## 5529 37 52 Moravec Ondrej CZE 1846.9 433.3
## 5530 38 55 Hofer Lukas ITA 1873.8 417.4
## 5531 39 31 Tsvetkov Maxim RUS 1863.6 463.1
## 5532 40 39 Vaclavik Adam CZE 1864.2 420.6
## 5533 41 42 Gow Scott CAN 1859.6 445.5
## 5534 42 38 Willeitner Michael GER 1841.4 484.6
## 5535 43 40 Doherty Sean USA 1868.2 448.1
## 5536 44 50 Komatz David AUT 1878.0 427.3
## 5537 45 41 Wiestner Serafin SUI 1903.9 425.9
## 5538 46 48 Semenov Sergii UKR 1874.3 418.7
## 5539 47 57 Bocharnikov Sergey BLR 1920.0 455.4
## 5540 48 16 Bischl Matthias GER 1916.1 457.8
## 5541 49 36 Samuelsson Sebastian SWE 1939.0 490.7
## 5542 50 56 Fak Jakov SLO 1940.5 496.5
## 5543 51 53 Nelin Jesper SWE 1984.1 438.6
## 5544 52 60 Bormolini Thomas ITA 1982.2 450.7
## 5545 53 32 Kaukenas Tomas LTU 1981.9 450.0
## 5546 54 51 Gronman Tuomas FIN 2020.0 524.5
## 5547 55 44 Bricis Ilmars LAT 2043.5 496.5
## 5548 1 24 Boe Johannes Thingnes NOR 931.7 467.0
## 5549 2 31 Fourcade Martin FRA 946.4 473.4
## 5550 3 88 Guigonnat Antonin FRA 959.5 475.4
## 5551 4 11 Schempp Simon GER 966.4 482.1
## 5552 5 29 Desthieux Simon FRA 968.1 476.3
## 5553 6 84 Shipulin Anton RUS 981.3 477.1
## 5554 7 87 Gjesbakk Fredrik NOR 966.6 484.6
## 5555 8 18 Lapshin Timofei KOR 968.1 485.8
## 5556 9 10 Windisch Dominik ITA 982.1 485.9
## 5557 10 40 Burke Tim USA 971.3 484.1
## 5558 11 12 Weger Benjamin SUI 978.3 487.3
## 5559 12 92 Doll Benedikt GER 995.6 514.8
## 5560 13 34 Fak Jakov SLO 992.9 488.0
## 5561 14 51 Ermits Kalev EST 982.8 489.4
## 5562 15 45 Babikov Anton RUS 977.9 487.3
## 5563 16 99 Gow Scott CAN 987.6 490.1
## 5564 17 7 Doherty Sean USA 989.0 493.4
## 5565 18 39 Loginov Alexander RUS 1004.8 476.5
## 5566 19 83 Garanichev Evgeniy RUS 997.3 506.7
## 5567 20 9 Eliseev Matvey RUS 996.0 505.5
## 5568 21 21 Birkeland Lars Helge NOR 1007.1 511.4
## 5569 22 15 Peiffer Arnd GER 1006.1 513.3
## 5570 23 28 Samuelsson Sebastian SWE 1008.2 510.7
## 5571 24 42 Rastorgujevs Andrejs LAT 1008.6 508.2
## 5572 25 46 Bjoentegaard Erlend NOR 1012.0 503.5
## 5573 26 38 Eder Simon AUT 1011.7 528.6
## 5574 27 59 Iliev Vladimir BUL 1008.4 513.4
## 5575 28 55 Eberhard Tobias AUT 1003.6 507.4
## 5576 29 69 Otcenas Martin SVK 1008.3 497.6
## 5577 30 50 Gow Christian CAN 994.8 497.0
## 5578 31 27 Seppala Tero FIN 1022.4 507.7
## 5579 32 72 Bormolini Thomas ITA 988.9 504.8
## 5580 33 90 Wiestner Serafin SUI 1014.1 496.0
## 5581 34 25 Krcmar Michal CZE 1022.0 494.2
## 5582 35 17 Bailey Lowell USA 1019.6 494.2
## 5583 36 60 Claude Florent BEL 1007.6 503.2
## 5584 37 33 Moravec Ondrej CZE 1023.0 486.9
## 5585 38 49 Kuehn Johannes GER 1031.4 515.9
## 5586 39 97 Gronman Tuomas FIN 1004.5 499.0
## 5587 40 47 Hofer Lukas ITA 1030.0 520.5
## 5588 41 4 Slesingr Michal CZE 1011.6 504.8
## 5589 42 26 Bauer Klemen SLO 1029.7 532.7
## 5590 43 66 Anev Krasimir BUL 1020.9 494.4
## 5591 44 22 Lesser Erik GER 1037.3 550.6
## 5592 45 65 Eberhard Julian AUT 1046.3 517.7
## 5593 46 3 Beatrix Jean Guillaume FRA 1033.6 538.0
## 5594 47 81 Krupcik Tomas CZE 1031.9 518.2
## 5595 48 16 Boe Tarjei NOR 1033.6 524.4
## 5596 49 23 Strolia Vytautas LTU 1020.2 525.2
## 5597 50 54 Kazar Matej SVK 1039.1 511.1
## 5598 50 76 Muiznieks Oskars LAT 1026.5 497.2
## 5599 52 95 Komatz David AUT 1040.2 505.7
## 5600 53 102 Sinapov Anton BUL 1034.9 512.5
## 5601 54 77 Finello Jeremy SUI 1031.0 537.0
## 5602 55 5 Dovzan Miha SLO 1035.2 505.9
## 5603 56 75 Nordgren Leif USA 1031.1 499.4
## 5604 57 56 Hiidensalo Olli FIN 1040.4 517.9
## 5605 58 14 Lindstroem Fredrik SWE 1042.0 544.9
## 5606 59 1 Nawrath Philipp GER 1032.2 525.3
## 5607 60 32 Tkalenko Ruslan UKR 1043.7 508.2
## 5608 61 19 Fillon Maillet Quentin FRA 1066.3 529.6
## 5609 62 41 Dolder Mario SUI 1052.8 512.0
## 5610 63 57 Nelin Jesper SWE 1052.9 515.0
## 5611 64 100 Bartko Simon SVK 1046.2 521.7
## 5612 65 71 Fourcade Simon FRA 1040.1 518.1
## 5613 66 63 Szczurek Lukasz POL 1055.9 536.8
## 5614 67 70 Kaukenas Tomas LTU 1049.3 535.9
## 5615 68 82 Sima Michal SVK 1056.9 526.2
## 5616 69 36 Tachizaki Mikito JPN 1048.0 538.1
## 5617 70 96 Lusa Daumants LAT 1043.9 535.6
## 5618 71 52 Abasheu Dzmitry BLR 1062.0 537.7
## 5619 72 44 Drinovec Mitja SLO 1048.4 524.5
## 5620 73 74 Yeremin Roman KAZ 1076.5 527.3
## 5621 74 61 Grossegger Sven AUT 1064.2 545.3
## 5622 75 13 Buta George ROU 1071.6 563.1
## 5623 76 58 Kobonoki Tsukasa JPN 1066.4 532.6
## 5624 77 89 Chenal Thierry ITA 1061.1 537.6
## 5625 78 79 Zhyrnyi Oleksandr UKR 1054.5 516.6
## 5626 79 62 Tyshchenko Artem UKR 1062.1 517.9
## 5627 80 20 Zahkna Rene EST 1076.0 553.4
## 5628 81 103 Faur Remus ROU 1064.7 554.9
## 5629 82 98 Khamitgatin Timur KAZ 1068.9 525.8
## 5630 83 48 Guzik Grzegorz POL 1083.9 527.0
## 5631 84 53 Vaclavik Adam CZE 1091.4 596.5
## 5632 85 106 Schommer Paul USA 1085.5 523.2
## 5633 86 8 Green Brendan CAN 1107.7 532.0
## 5634 87 105 Nedza-Kubiniec Andrzej POL 1080.7 530.5
## 5635 88 73 Dixon Scott GBR 1080.1 562.2
## 5636 89 86 Ivko Maksym UKR 1063.5 522.2
## 5637 90 93 Smolski Anton BLR 1105.5 547.3
## 5638 91 30 Smith Nathan CAN 1074.8 563.6
## 5639 92 2 Leitner Felix AUT 1115.7 615.8
## 5640 93 78 Vitenko Vladislav KAZ 1117.8 553.8
## 5641 94 43 Crnkovic Kresimir CRO 1128.3 556.1
## 5642 95 37 Yaliotnau Raman BLR 1112.9 584.0
## 5643 96 94 Kuts Timur KAZ 1106.1 534.2
## 5644 97 101 Kletcherov Michail BUL 1129.1 531.2
## 5645 98 91 Dotsenko Andriy UKR 1129.1 545.4
## 5646 99 104 Femling Peppe SWE 1109.5 600.8
## 5647 100 64 Puchianu Cornel ROU 1156.2 598.5
## 5648 100 80 Angelis Apostolos GRE 1143.2 578.9
## 5649 102 68 Choi Dujin KOR 1136.4 569.0
## 5650 103 67 Hodzic Edin SRB 1168.5 606.6
## 5651 1 1 Fourcade Martin FRA 1797.0 446.4
## 5652 2 2 Boe Johannes Thingnes NOR 1812.7 444.8
## 5653 3 10 Lesser Erik GER 1805.7 458.1
## 5654 4 5 Shipulin Anton RUS 1805.1 456.1
## 5655 5 9 Weger Benjamin SUI 1824.9 446.8
## 5656 6 12 Peiffer Arnd GER 1830.7 451.8
## 5657 7 27 Windisch Dominik ITA 1859.8 458.1
## 5658 8 3 Fak Jakov SLO 1846.9 462.8
## 5659 9 17 Loginov Alexander RUS 1865.0 487.9
## 5660 10 28 Bjoentegaard Erlend NOR 1884.1 459.1
## 5661 11 6 Boe Tarjei NOR 1877.2 486.2
## 5662 12 16 Eder Simon AUT 1864.7 496.5
## 5663 13 15 Babikov Anton RUS 1869.2 459.0
## 5664 14 19 Lindstroem Fredrik SWE 1878.1 479.6
## 5665 15 7 Hofer Lukas ITA 1892.4 476.4
## 5666 16 8 Birkeland Lars Helge NOR 1887.9 485.4
## 5667 17 14 Desthieux Simon FRA 1925.2 473.5
## 5668 18 20 Doll Benedikt GER 1926.9 523.1
## 5669 19 30 Garanichev Evgeniy RUS 1918.6 460.3
## 5670 20 13 Fillon Maillet Quentin FRA 1926.5 514.5
## 5671 21 21 Tsvetkov Maxim RUS 1902.6 503.5
## 5672 22 26 Guigonnat Antonin FRA 1924.9 488.5
## 5673 23 24 Bailey Lowell USA 1928.4 491.3
## 5674 24 25 Doherty Sean USA 1950.2 508.3
## 5675 25 4 Schempp Simon GER 1961.9 549.0
## 5676 26 29 Gow Scott CAN 2018.5 510.2
## 5677 27 11 Rastorgujevs Andrejs LAT 2040.8 555.2
## 5678 28 23 Lapshin Timofei KOR 2019.4 537.0
## 5679 29 18 L'Abee-Lund Henrik NOR 2055.2 548.2
## 5680 30 22 Eliseev Matvey RUS 2123.4 540.5
## 5681 1 1 Boe Johannes Thingnes NOR 1607.4 403.5
## 5682 2 2 Fourcade Martin FRA 1685.4 419.9
## 5683 3 6 Shipulin Anton RUS 1701.0 430.0
## 5684 4 18 Loginov Alexander RUS 1712.6 401.2
## 5685 5 4 Schempp Simon GER 1721.2 405.9
## 5686 6 5 Desthieux Simon FRA 1734.5 433.1
## 5687 7 40 Hofer Lukas ITA 1743.6 424.0
## 5688 8 12 Doll Benedikt GER 1745.6 433.6
## 5689 9 26 Eder Simon AUT 1742.3 402.7
## 5690 10 25 Bjoentegaard Erlend NOR 1765.2 427.5
## 5691 11 22 Peiffer Arnd GER 1762.2 411.6
## 5692 12 3 Guigonnat Antonin FRA 1755.9 408.9
## 5693 13 13 Fak Jakov SLO 1767.0 428.5
## 5694 14 35 Bailey Lowell USA 1752.7 420.8
## 5695 15 9 Windisch Dominik ITA 1782.5 422.9
## 5696 16 11 Weger Benjamin SUI 1777.9 434.0
## 5697 17 21 Birkeland Lars Helge NOR 1761.8 416.2
## 5698 18 36 Claude Florent BEL 1774.6 418.7
## 5699 19 24 Rastorgujevs Andrejs LAT 1781.0 436.4
## 5700 20 48 Boe Tarjei NOR 1796.2 414.5
## 5701 21 54 Finello Jeremy SUI 1793.6 415.0
## 5702 22 34 Krcmar Michal CZE 1813.0 421.3
## 5703 23 15 Babikov Anton RUS 1803.8 456.5
## 5704 24 19 Garanichev Evgeniy RUS 1809.0 439.8
## 5705 25 20 Eliseev Matvey RUS 1808.3 444.8
## 5706 26 10 Burke Tim USA 1799.3 445.3
## 5707 27 16 Gow Scott CAN 1809.6 456.1
## 5708 28 27 Iliev Vladimir BUL 1811.9 463.4
## 5709 29 30 Gow Christian CAN 1798.5 427.4
## 5710 30 17 Doherty Sean USA 1807.7 443.6
## 5711 31 8 Lapshin Timofei KOR 1798.8 448.3
## 5712 32 44 Lesser Erik GER 1822.6 435.6
## 5713 33 14 Ermits Kalev EST 1820.6 434.0
## 5714 34 43 Anev Krasimir BUL 1839.6 423.9
## 5715 35 51 Muiznieks Oskars LAT 1839.9 423.3
## 5716 36 23 Samuelsson Sebastian SWE 1854.6 450.3
## 5717 37 46 Beatrix Jean Guillaume FRA 1857.2 427.3
## 5718 38 42 Bauer Klemen SLO 1857.7 444.4
## 5719 39 7 Gjesbakk Fredrik NOR 1850.4 459.4
## 5720 40 29 Otcenas Martin SVK 1864.3 448.1
## 5721 41 37 Moravec Ondrej CZE 1868.6 437.2
## 5722 42 33 Wiestner Serafin SUI 1879.9 479.3
## 5723 43 47 Krupcik Tomas CZE 1891.7 442.0
## 5724 44 59 Nawrath Philipp GER 1898.2 446.9
## 5725 45 39 Gronman Tuomas FIN 1892.7 428.0
## 5726 46 32 Bormolini Thomas ITA 1891.3 499.8
## 5727 47 58 Lindstroem Fredrik SWE 1893.6 443.0
## 5728 48 56 Nordgren Leif USA 1886.9 498.4
## 5729 49 57 Hiidensalo Olli FIN 1917.4 498.3
## 5730 50 38 Kuehn Johannes GER 1934.0 469.5
## 5731 51 50 Kazar Matej SVK 1933.4 459.3
## 5732 52 55 Dovzan Miha SLO 1930.9 435.1
## 5733 53 53 Sinapov Anton BUL 1973.8 512.0
## 5734 54 49 Strolia Vytautas LTU 1990.1 464.0
## 5735 55 28 Eberhard Tobias AUT 1991.4 491.2
## 5736 56 60 Tkalenko Ruslan UKR 2006.6 487.6
## 5737 57 52 Komatz David AUT 2005.9 434.4
## 5738 1 42 Boe Johannes Thingnes NOR 963.9 462.2
## 5739 2 48 Fourcade Martin FRA 967.0 475.7
## 5740 3 47 Peiffer Arnd GER 986.3 497.0
## 5741 4 46 Shipulin Anton RUS 991.1 505.5
## 5742 5 94 Jacquelin Emilien FRA 982.9 493.4
## 5743 6 37 Birkeland Lars Helge NOR 997.4 498.3
## 5744 7 38 Eberhard Julian AUT 1035.5 538.6
## 5745 8 51 Babikov Anton RUS 1021.9 509.0
## 5746 9 77 Chepelin Vladimir BLR 1039.7 525.7
## 5747 10 31 Moravec Ondrej CZE 1031.4 511.5
## 5748 11 23 Desthieux Simon FRA 1064.6 533.6
## 5749 12 78 Siemakov Volodymyr UKR 1035.2 519.1
## 5750 13 62 Doll Benedikt GER 1060.4 510.2
## 5751 14 2 Rastorgujevs Andrejs LAT 1049.5 549.0
## 5752 15 41 Lesser Erik GER 1054.9 512.4
## 5753 16 39 Weger Benjamin SUI 1044.3 523.1
## 5754 17 27 Windisch Dominik ITA 1078.9 488.7
## 5755 18 32 Eder Simon AUT 1058.6 553.7
## 5756 19 71 Kuehn Johannes GER 1062.6 547.1
## 5757 20 44 Schempp Simon GER 1052.6 513.0
## 5758 21 34 Otcenas Martin SVK 1049.2 526.1
## 5759 22 43 Boe Tarjei NOR 1057.8 542.5
## 5760 23 22 Lapshin Timofei KOR 1044.2 525.0
## 5761 24 73 Fourcade Simon FRA 1042.9 534.1
## 5762 25 63 Gronman Tuomas FIN 1046.8 513.9
## 5763 26 20 Fillon Maillet Quentin FRA 1084.1 528.7
## 5764 27 29 Hofer Lukas ITA 1068.2 509.7
## 5765 28 7 Guigonnat Antonin FRA 1081.9 524.1
## 5766 29 8 Rees Roman GER 1065.6 554.9
## 5767 30 88 Guzik Grzegorz POL 1059.4 504.1
## 5768 31 50 Tsvetkov Maxim RUS 1052.5 555.4
## 5769 32 10 Svendsen Emil Hegle NOR 1073.0 546.1
## 5770 33 21 Fak Jakov SLO 1068.7 533.5
## 5771 34 15 Yaliotnau Raman BLR 1068.5 528.7
## 5772 35 64 Anev Krasimir BUL 1057.8 531.3
## 5773 36 93 Bjoentegaard Erlend NOR 1076.9 575.5
## 5774 37 26 Bauer Klemen SLO 1074.2 526.8
## 5775 38 85 L'Abee-Lund Henrik NOR 1074.9 543.7
## 5776 39 49 Lessing Roland EST 1071.1 528.3
## 5777 40 33 Roesch Michael BEL 1065.2 562.9
## 5778 41 30 Bailey Lowell USA 1063.0 540.3
## 5779 42 19 Loginov Alexander RUS 1083.8 553.0
## 5780 43 40 Burke Tim USA 1072.2 550.7
## 5781 44 36 Pidruchnyi Dmytro UKR 1087.7 540.7
## 5782 45 76 Hasilla Tomas SVK 1081.3 537.6
## 5783 46 1 Seppala Tero FIN 1084.6 550.4
## 5784 47 89 Montello Giuseppe ITA 1067.5 544.5
## 5785 48 98 Eliseev Matvey RUS 1071.0 505.1
## 5786 49 4 Landertinger Dominik AUT 1094.4 565.3
## 5787 50 65 Nordgren Leif USA 1073.8 534.4
## 5788 51 54 Nedza-Kubiniec Andrzej POL 1066.9 562.9
## 5789 52 99 Vitenko Vladislav KAZ 1075.5 532.7
## 5790 53 9 Garanichev Evgeniy RUS 1094.9 558.6
## 5791 54 17 Eberhard Tobias AUT 1067.0 557.6
## 5792 55 13 Slesingr Michal CZE 1092.4 573.7
## 5793 56 95 Puchianu Cornel ROU 1093.6 550.2
## 5794 57 91 Grossegger Sven AUT 1081.7 541.9
## 5795 58 57 Vaclavik Adam CZE 1102.8 598.4
## 5796 58 66 Faur Remus ROU 1069.1 548.1
## 5797 60 59 Strolia Vytautas LTU 1094.6 578.9
## 5798 61 45 Dolder Mario SUI 1107.3 572.6
## 5799 62 35 Krcmar Michal CZE 1109.3 546.2
## 5800 63 96 Currier Russell USA 1103.1 564.8
## 5801 64 25 Hiidensalo Olli FIN 1120.9 581.6
## 5802 65 82 Chenal Thierry ITA 1096.0 571.3
## 5803 66 55 Davies Macx CAN 1107.6 569.9
## 5804 67 16 Kazar Matej SVK 1104.2 533.6
## 5805 68 101 Abasheu Dzmitry BLR 1112.5 537.7
## 5806 69 86 Podkorytov Vassiliy KAZ 1093.9 544.8
## 5807 70 110 Jaeger Martin SUI 1109.8 576.6
## 5808 71 56 Kobonoki Tsukasa JPN 1094.1 557.4
## 5809 72 108 Kubaliak Michal SVK 1072.8 555.4
## 5810 73 69 Muiznieks Oskars LAT 1108.1 537.3
## 5811 74 75 Stenersen Torstein SWE 1103.9 552.8
## 5812 75 5 Doherty Sean USA 1124.0 541.2
## 5813 76 18 Ermits Kalev EST 1110.4 530.1
## 5814 77 84 Yeremin Roman KAZ 1129.2 557.0
## 5815 78 11 Bormolini Thomas ITA 1112.4 576.0
## 5816 79 67 Dombrovski Karol LTU 1092.5 576.5
## 5817 80 109 Gerdzhikov Dimitar BUL 1109.4 518.3
## 5818 81 100 Kristejn Lukas CZE 1122.0 531.7
## 5819 82 83 Campbell Carsen CAN 1117.6 540.6
## 5820 83 14 Pryma Artem UKR 1139.7 628.0
## 5821 84 58 Drinovec Mitja SLO 1123.0 594.7
## 5822 85 53 Tyshchenko Artem UKR 1090.2 554.0
## 5823 86 80 Komatz David AUT 1127.9 559.3
## 5824 86 87 Koiv Kauri EST 1120.7 580.2
## 5825 88 107 Tkalenko Ruslan UKR 1133.3 622.4
## 5826 89 104 Hudec Matthew CAN 1115.7 579.4
## 5827 90 70 Szczurek Lukasz POL 1133.9 540.6
## 5828 91 68 Hallstroem Simon SWE 1152.0 579.9
## 5829 92 24 Iliev Vladimir BUL 1161.6 585.8
## 5830 93 106 Soederhielm Tiio SWE 1153.6 579.1
## 5831 94 3 Dovzan Miha SLO 1137.6 571.4
## 5832 95 28 Varabei Maksim BLR 1174.7 572.6
## 5833 96 61 Dixon Scott GBR 1128.1 587.9
## 5834 97 6 Sinapov Anton BUL 1190.8 617.5
## 5835 98 97 Ozaki Kosuke JPN 1169.6 642.8
## 5836 99 103 Arwidson Tobias SWE 1139.3 616.0
## 5837 100 92 Braun Maxim KAZ 1166.0 620.1
## 5838 101 102 Bricis Ilmars LAT 1171.9 628.0
## 5839 102 12 Wiestner Serafin SUI 1196.5 628.2
## 5840 103 90 Banys Linas LTU 1180.9 566.5
## 5841 104 60 Kim Yonggyu KOR 1185.3 585.1
## 5842 105 81 Angelis Apostolos GRE 1196.0 576.1
## 5843 106 52 Pop Gheorghe ROU 1201.0 622.7
## 5844 107 105 Millar Aidan CAN 1196.6 597.0
## 5845 108 74 Crnkovic Kresimir CRO 1242.1 623.7
## 5846 109 72 Hodzic Edin SRB 1283.5 657.3
## 5847 1 1 Fourcade Martin FRA 1967.7 500.2
## 5848 2 6 Boe Tarjei NOR 1997.8 506.9
## 5849 3 27 Bjoentegaard Erlend NOR 1998.5 506.4
## 5850 4 13 Doll Benedikt GER 2004.4 511.8
## 5851 5 28 Kuehn Johannes GER 2008.8 489.6
## 5852 6 2 Boe Johannes Thingnes NOR 2018.9 498.2
## 5853 7 14 Svendsen Emil Hegle NOR 2018.5 514.8
## 5854 8 24 Windisch Dominik ITA 2021.8 525.8
## 5855 9 4 Shipulin Anton RUS 2019.2 522.3
## 5856 10 8 Desthieux Simon FRA 2027.5 515.0
## 5857 11 23 L'Abee-Lund Henrik NOR 2030.7 513.5
## 5858 12 3 Fak Jakov SLO 2027.8 530.6
## 5859 13 9 Weger Benjamin SUI 2032.6 518.5
## 5860 14 21 Moravec Ondrej CZE 2033.3 500.2
## 5861 15 11 Eder Simon AUT 2032.1 492.4
## 5862 16 22 Krcmar Michal CZE 2045.6 520.3
## 5863 17 17 Lesser Erik GER 2053.4 534.5
## 5864 18 20 Loginov Alexander RUS 2052.8 517.2
## 5865 19 5 Peiffer Arnd GER 2056.7 525.0
## 5866 20 29 Fourcade Simon FRA 2054.8 513.5
## 5867 21 12 Fillon Maillet Quentin FRA 2064.7 498.1
## 5868 22 25 Burke Tim USA 2069.0 510.9
## 5869 23 19 Guigonnat Antonin FRA 2089.6 526.4
## 5870 24 18 Babikov Anton RUS 2095.7 534.1
## 5871 25 7 Hofer Lukas ITA 2107.4 519.7
## 5872 26 10 Birkeland Lars Helge NOR 2115.3 526.6
## 5873 27 16 Rastorgujevs Andrejs LAT 2142.8 587.4
## 5874 28 26 Jacquelin Emilien FRA 2159.3 571.2
## 5875 29 15 Eberhard Julian AUT 2184.1 591.7
## 5876 30 30 Chepelin Vladimir BLR 2197.3 569.6
## 5877 1 1 Boe Johannes Thingnes NOR 1509.5 380.6
## 5878 2 2 Fourcade Martin FRA 1571.2 383.1
## 5879 3 4 Shipulin Anton RUS 1591.5 387.1
## 5880 4 3 Peiffer Arnd GER 1628.5 387.5
## 5881 5 32 Svendsen Emil Hegle NOR 1659.3 387.9
## 5882 6 5 Jacquelin Emilien FRA 1648.7 414.4
## 5883 7 18 Eder Simon AUT 1648.3 408.2
## 5884 8 11 Desthieux Simon FRA 1679.2 414.4
## 5885 9 6 Birkeland Lars Helge NOR 1671.7 407.5
## 5886 10 7 Eberhard Julian AUT 1693.8 379.9
## 5887 11 36 Bjoentegaard Erlend NOR 1694.6 406.3
## 5888 12 16 Weger Benjamin SUI 1696.4 432.1
## 5889 13 26 Fillon Maillet Quentin FRA 1695.6 431.8
## 5890 14 8 Babikov Anton RUS 1701.3 401.1
## 5891 15 35 Anev Krasimir BUL 1701.9 387.2
## 5892 16 13 Doll Benedikt GER 1717.4 407.7
## 5893 17 17 Windisch Dominik ITA 1719.7 399.7
## 5894 18 14 Rastorgujevs Andrejs LAT 1718.0 396.8
## 5895 19 28 Guigonnat Antonin FRA 1715.6 406.6
## 5896 20 31 Tsvetkov Maxim RUS 1715.8 405.4
## 5897 21 43 Burke Tim USA 1716.2 412.3
## 5898 22 49 Landertinger Dominik AUT 1725.3 404.4
## 5899 23 38 L'Abee-Lund Henrik NOR 1729.4 390.7
## 5900 24 55 Slesingr Michal CZE 1728.3 405.5
## 5901 25 24 Fourcade Simon FRA 1719.3 423.8
## 5902 26 40 Roesch Michael BEL 1727.8 412.5
## 5903 27 37 Bauer Klemen SLO 1725.9 412.4
## 5904 28 19 Kuehn Johannes GER 1744.2 419.1
## 5905 29 22 Boe Tarjei NOR 1736.6 452.5
## 5906 30 39 Lessing Roland EST 1742.3 398.8
## 5907 31 30 Guzik Grzegorz POL 1750.6 401.1
## 5908 32 42 Loginov Alexander RUS 1766.6 433.6
## 5909 33 48 Eliseev Matvey RUS 1762.8 424.5
## 5910 34 58 Vaclavik Adam CZE 1764.2 394.7
## 5911 35 41 Bailey Lowell USA 1752.9 429.7
## 5912 36 27 Hofer Lukas ITA 1781.8 386.0
## 5913 37 15 Lesser Erik GER 1747.1 435.1
## 5914 38 44 Pidruchnyi Dmytro UKR 1785.9 414.6
## 5915 39 53 Garanichev Evgeniy RUS 1784.8 414.3
## 5916 40 29 Rees Roman GER 1785.2 414.3
## 5917 41 12 Siemakov Volodymyr UKR 1773.7 431.3
## 5918 42 57 Grossegger Sven AUT 1767.4 423.0
## 5919 43 10 Moravec Ondrej CZE 1782.9 395.4
## 5920 44 50 Nordgren Leif USA 1797.6 402.7
## 5921 45 9 Chepelin Vladimir BLR 1804.6 412.2
## 5922 46 46 Seppala Tero FIN 1823.2 416.5
## 5923 47 47 Montello Giuseppe ITA 1810.6 416.5
## 5924 48 21 Otcenas Martin SVK 1818.5 424.8
## 5925 49 45 Hasilla Tomas SVK 1829.6 479.2
## 5926 50 34 Yaliotnau Raman BLR 1852.9 467.8
## 5927 51 56 Puchianu Cornel ROU 1850.2 433.1
## 5928 52 52 Vitenko Vladislav KAZ 1900.0 462.6
## 5929 1 36 Boe Johannes Thingnes NOR 999.1 506.5
## 5930 2 38 Fourcade Martin FRA 1019.2 515.6
## 5931 3 33 Fak Jakov SLO 1040.5 522.9
## 5932 4 35 Schempp Simon GER 1051.2 546.5
## 5933 5 10 L'Abee-Lund Henrik NOR 1051.3 531.3
## 5934 6 41 Peiffer Arnd GER 1046.5 531.7
## 5935 7 61 Weger Benjamin SUI 1057.3 525.8
## 5936 8 32 Lesser Erik GER 1054.4 523.6
## 5937 9 37 Shipulin Anton RUS 1049.0 521.6
## 5938 9 105 Nawrath Philipp GER 1049.2 528.4
## 5939 11 66 Eberhard Julian AUT 1069.6 530.4
## 5940 12 39 Pidruchnyi Dmytro UKR 1066.5 554.2
## 5941 13 22 Birkeland Lars Helge NOR 1066.0 550.8
## 5942 14 40 Boe Tarjei NOR 1059.9 554.9
## 5943 15 84 Hofer Lukas ITA 1073.0 538.3
## 5944 16 89 Lapshin Timofei KOR 1063.4 557.0
## 5945 17 7 Eliseev Matvey RUS 1068.2 547.8
## 5946 18 63 Rastorgujevs Andrejs LAT 1073.6 550.4
## 5947 19 12 Smith Nathan CAN 1071.6 545.1
## 5948 20 93 Tsvetkov Maxim RUS 1066.8 561.8
## 5949 21 86 Desthieux Simon FRA 1090.9 528.9
## 5950 22 25 Bauer Klemen SLO 1066.3 530.0
## 5951 22 79 Doherty Sean USA 1067.4 543.7
## 5952 24 68 Kuehn Johannes GER 1108.0 554.6
## 5953 24 72 Seppala Tero FIN 1075.3 559.0
## 5954 26 81 Krcmar Michal CZE 1082.4 542.4
## 5955 27 56 Roesch Michael BEL 1092.2 572.5
## 5956 28 91 Bjoerndalen Ole Einar NOR 1078.4 562.7
## 5957 29 53 Loginov Alexander RUS 1098.1 555.1
## 5958 30 57 Babikov Anton RUS 1073.7 555.0
## 5959 31 109 Lessing Roland EST 1084.8 551.6
## 5960 32 59 Nelin Jesper SWE 1106.6 585.9
## 5961 33 64 Tachizaki Mikito JPN 1092.5 562.4
## 5962 34 31 Moravec Ondrej CZE 1107.6 556.3
## 5963 35 34 Eder Simon AUT 1098.8 560.8
## 5964 36 78 Siemakov Volodymyr UKR 1089.0 541.0
## 5965 37 2 Tkalenko Ruslan UKR 1090.6 564.7
## 5966 38 28 Fillon Maillet Quentin FRA 1126.0 581.7
## 5967 39 19 Beatrix Jean Guillaume FRA 1094.7 573.1
## 5968 40 3 Dovzan Miha SLO 1106.1 573.5
## 5969 41 58 Bormolini Thomas ITA 1113.2 578.5
## 5970 41 108 Bjoentegaard Erlend NOR 1120.6 575.6
## 5971 43 87 Gow Scott CAN 1123.5 560.2
## 5972 44 27 Lindstroem Fredrik SWE 1132.2 607.9
## 5973 45 96 Chenal Thierry ITA 1102.1 580.5
## 5974 46 21 Slesingr Michal CZE 1134.0 588.3
## 5975 47 13 Doll Benedikt GER 1142.9 547.1
## 5976 48 9 Faur Remus ROU 1112.6 579.4
## 5977 49 80 Finello Jeremy SUI 1115.8 589.8
## 5978 50 88 Strolia Vytautas LTU 1120.0 591.1
## 5979 51 52 Muiznieks Oskars LAT 1127.0 587.1
## 5980 51 107 Green Brendan CAN 1115.5 575.0
## 5981 53 49 Bailey Lowell USA 1129.0 547.8
## 5982 54 60 Gow Christian CAN 1104.7 573.7
## 5983 55 29 Semenov Sergii UKR 1135.7 588.8
## 5984 56 94 Mesotitsch Daniel AUT 1117.2 589.3
## 5985 57 100 Garanichev Evgeniy RUS 1129.3 566.9
## 5986 58 99 Jacquelin Emilien FRA 1114.3 571.3
## 5987 59 98 Vaclavik Adam CZE 1127.4 600.4
## 5988 60 75 Kazar Matej SVK 1135.3 572.4
## 5989 61 102 Kryuko Viktar BLR 1118.7 591.0
## 5990 62 26 Otcenas Martin SVK 1133.2 593.5
## 5991 63 15 Leitner Felix AUT 1142.8 557.2
## 5992 64 45 Kaukenas Tomas LTU 1130.8 559.3
## 5993 64 48 Podkorytov Vassiliy KAZ 1140.2 589.5
## 5994 66 1 Yaliotnau Raman BLR 1150.6 585.6
## 5995 67 4 Kletcherov Michail BUL 1131.8 573.2
## 5996 68 54 Iliev Vladimir BUL 1145.5 554.1
## 5997 69 103 Zhyrnyi Oleksandr UKR 1129.8 580.0
## 5998 70 20 Krupcik Tomas CZE 1134.5 590.7
## 5999 70 67 Drinovec Mitja SLO 1124.2 558.7
## 6000 72 50 Fourcade Simon FRA 1162.1 562.8
## 6001 73 5 Dombrovski Karol LTU 1129.4 594.9
## 6002 73 30 Burke Tim USA 1152.4 599.4
## 6003 75 90 Puchianu Cornel ROU 1138.5 592.8
## 6004 76 44 Guzik Grzegorz POL 1156.5 594.7
## 6005 77 74 Samuelsson Sebastian SWE 1142.5 594.8
## 6006 78 43 Varabei Maksim BLR 1142.5 587.4
## 6007 79 62 Eberhard Tobias AUT 1152.8 562.2
## 6008 80 77 Windisch Dominik ITA 1172.5 601.6
## 6009 81 24 Hiidensalo Olli FIN 1146.4 605.2
## 6010 82 104 Hasilla Tomas SVK 1153.0 552.2
## 6011 83 47 Dolder Mario SUI 1173.4 553.2
## 6012 84 11 Wiestner Serafin SUI 1158.0 583.9
## 6013 85 83 Waeger Lorenz AUT 1145.5 564.3
## 6014 86 70 Sinapov Anton BUL 1164.6 634.7
## 6015 87 6 Nedza-Kubiniec Andrzej POL 1139.5 601.8
## 6016 88 8 Sima Michal SVK 1156.9 567.6
## 6017 89 42 Zahkna Rene EST 1154.9 618.1
## 6018 90 51 Buta George ROU 1156.7 592.3
## 6019 91 76 Yeremin Roman KAZ 1197.6 603.5
## 6020 92 85 Darozhka Aliaksandr BLR 1181.7 646.4
## 6021 93 73 Szczurek Lukasz POL 1177.5 636.3
## 6022 94 69 Crnkovic Kresimir CRO 1188.1 598.0
## 6023 95 82 Ermits Kalev EST 1159.7 580.0
## 6024 96 71 Lusa Daumants LAT 1145.7 602.6
## 6025 97 92 Kobonoki Tsukasa JPN 1176.1 640.6
## 6026 98 16 Nordgren Leif USA 1167.3 629.4
## 6027 99 14 Loukkaanhuhta Mikko FIN 1175.2 585.5
## 6028 100 101 Jaeger Martin SUI 1161.6 643.0
## 6029 101 18 Pantov Anton KAZ 1168.9 581.3
## 6030 102 17 Stenersen Torstein SWE 1165.1 629.4
## 6031 103 97 Schommer Paul USA 1181.5 611.2
## 6032 104 95 Braun Maxim KAZ 1169.4 578.9
## 6033 105 23 Dixon Scott GBR 1191.8 611.4
## 6034 106 46 Kim Yonggyu KOR 1251.6 604.5
## 6035 107 65 Hodzic Edin SRB 1241.0 659.4
## 6036 108 55 Angelis Apostolos GRE 1300.8 668.3
## 6037 1 1 Boe Johannes Thingnes NOR 1826.8 434.2
## 6038 2 3 Fak Jakov SLO 1885.7 452.8
## 6039 3 2 Fourcade Martin FRA 1905.6 519.4
## 6040 4 4 Schempp Simon GER 1902.0 436.4
## 6041 5 14 Boe Tarjei NOR 1906.5 437.3
## 6042 6 20 Tsvetkov Maxim RUS 1904.8 456.4
## 6043 7 15 Hofer Lukas ITA 1926.0 459.1
## 6044 8 5 L'Abee-Lund Henrik NOR 1927.0 459.2
## 6045 9 9 Shipulin Anton RUS 1922.4 448.7
## 6046 10 13 Birkeland Lars Helge NOR 1928.2 465.6
## 6047 11 11 Eberhard Julian AUT 1953.9 475.3
## 6048 12 38 Fillon Maillet Quentin FRA 1952.5 484.3
## 6049 13 6 Peiffer Arnd GER 1953.2 448.3
## 6050 14 21 Desthieux Simon FRA 1967.5 472.7
## 6051 15 8 Lesser Erik GER 1963.5 466.0
## 6052 16 44 Lindstroem Fredrik SWE 1965.1 451.3
## 6053 17 23 Doherty Sean USA 1945.8 451.4
## 6054 18 12 Pidruchnyi Dmytro UKR 1966.3 466.8
## 6055 19 17 Eliseev Matvey RUS 1953.4 480.4
## 6056 20 30 Babikov Anton RUS 1963.1 484.8
## 6057 21 32 Nelin Jesper SWE 1979.2 440.4
## 6058 22 7 Weger Benjamin SUI 1985.4 467.4
## 6059 23 18 Rastorgujevs Andrejs LAT 1995.5 491.4
## 6060 24 39 Beatrix Jean Guillaume FRA 1980.0 445.2
## 6061 25 26 Krcmar Michal CZE 1990.9 478.9
## 6062 26 57 Garanichev Evgeniy RUS 1990.1 462.4
## 6063 27 47 Doll Benedikt GER 2007.0 439.6
## 6064 28 35 Eder Simon AUT 2000.2 447.3
## 6065 29 10 Nawrath Philipp GER 1983.8 449.9
## 6066 30 41 Bormolini Thomas ITA 2014.2 512.7
## 6067 31 19 Smith Nathan CAN 1993.6 486.9
## 6068 32 27 Roesch Michael BEL 2024.3 464.9
## 6069 33 52 Green Brendan CAN 2028.4 476.9
## 6070 34 42 Bjoentegaard Erlend NOR 2040.1 450.5
## 6071 35 37 Tkalenko Ruslan UKR 2016.2 503.3
## 6072 36 53 Bailey Lowell USA 2023.3 458.2
## 6073 37 22 Bauer Klemen SLO 2027.9 468.1
## 6074 38 50 Strolia Vytautas LTU 2023.7 489.4
## 6075 39 49 Finello Jeremy SUI 2038.0 466.0
## 6076 40 46 Slesingr Michal CZE 2037.9 485.4
## 6077 41 24 Kuehn Johannes GER 2059.9 499.0
## 6078 42 25 Seppala Tero FIN 2058.4 498.2
## 6079 43 34 Moravec Ondrej CZE 2058.9 480.9
## 6080 44 29 Loginov Alexander RUS 2057.4 524.1
## 6081 45 40 Dovzan Miha SLO 2057.8 491.7
## 6082 46 28 Bjoerndalen Ole Einar NOR 2071.6 457.2
## 6083 47 59 Vaclavik Adam CZE 2120.7 472.1
## 6084 48 43 Gow Scott CAN 2126.9 499.0
## 6085 49 54 Gow Christian CAN 2120.3 519.6
## 6086 50 31 Lessing Roland EST 2130.4 489.5
## 6087 51 60 Kazar Matej SVK 2129.9 495.9
## 6088 52 51 Muiznieks Oskars LAT 2139.4 524.5
## 6089 53 55 Semenov Sergii UKR 2136.1 522.3
## 6090 54 45 Chenal Thierry ITA 2166.5 516.6
## 6091 55 33 Tachizaki Mikito JPN 2143.6 545.3
## 6092 56 56 Mesotitsch Daniel AUT 2162.4 504.1
## 6093 57 48 Faur Remus ROU 2144.3 507.7
## 6094 1 19 Shipulin Anton RUS 986.8 505.7
## 6095 2 12 Rastorgujevs Andrejs LAT 997.8 513.6
## 6096 3 6 Fillon Maillet Quentin FRA 1003.1 507.8
## 6097 4 30 Boe Johannes Thingnes NOR 1009.1 534.8
## 6098 5 21 Peiffer Arnd GER 1019.6 533.4
## 6099 6 34 Desthieux Simon FRA 1027.1 517.4
## 6100 7 47 Lesser Erik GER 1016.1 536.9
## 6101 8 23 Schempp Simon GER 1033.4 526.8
## 6102 9 11 Hofer Lukas ITA 1030.5 539.9
## 6103 10 20 Windisch Dominik ITA 1020.4 528.8
## 6104 11 72 L'Abee-Lund Henrik NOR 1027.0 537.7
## 6105 12 91 Bjoerndalen Ole Einar NOR 1010.5 516.9
## 6106 13 51 Anev Krasimir BUL 1018.2 524.5
## 6107 14 32 Birkeland Lars Helge NOR 1015.1 516.7
## 6108 15 24 Lapshin Timofei KOR 1021.6 537.9
## 6109 16 22 Bailey Lowell USA 1026.6 537.7
## 6110 17 55 Nordgren Leif USA 1024.8 533.7
## 6111 18 8 Fak Jakov SLO 1032.0 519.7
## 6112 19 5 Bauer Klemen SLO 1045.0 557.5
## 6113 20 29 Moravec Ondrej CZE 1029.1 536.8
## 6114 21 46 Samuelsson Sebastian SWE 1045.8 542.0
## 6115 22 56 Nelin Jesper SWE 1038.4 526.4
## 6116 23 4 Doll Benedikt GER 1040.0 547.4
## 6117 24 42 Bjoentegaard Erlend NOR 1038.8 524.7
## 6118 25 17 Iliev Vladimir BUL 1053.3 540.2
## 6119 26 98 Malyshko Dmitry RUS 1036.6 517.9
## 6120 27 100 Rees Roman GER 1038.0 537.7
## 6121 28 15 Eberhard Julian AUT 1074.0 537.4
## 6122 29 40 Bormolini Thomas ITA 1044.4 551.5
## 6123 30 2 Tsvetkov Maxim RUS 1048.5 554.5
## 6124 31 13 Bocharnikov Sergey BLR 1043.8 527.3
## 6125 32 81 Mesotitsch Daniel AUT 1044.4 537.6
## 6126 33 10 Boe Tarjei NOR 1074.8 541.4
## 6127 34 70 Green Brendan CAN 1049.7 535.7
## 6128 35 54 Doherty Sean USA 1069.6 554.9
## 6129 36 37 Dolder Mario SUI 1067.1 571.2
## 6130 37 87 Ponsiluoma Martin SWE 1043.9 536.9
## 6131 38 9 Burke Tim USA 1084.0 567.8
## 6132 39 52 Otcenas Martin SVK 1065.0 567.2
## 6133 40 62 Puchianu Cornel ROU 1070.9 560.0
## 6134 41 44 Guigonnat Antonin FRA 1080.2 535.6
## 6135 42 45 Dovzan Miha SLO 1066.3 554.2
## 6136 43 69 Fourcade Simon FRA 1066.2 547.0
## 6137 44 58 Vaclavik Adam CZE 1078.1 567.4
## 6138 45 35 Claude Florent BEL 1070.7 552.0
## 6139 46 18 Garanichev Evgeniy RUS 1080.6 566.8
## 6140 47 80 Vitenko Vladislav KAZ 1066.6 543.4
## 6141 48 60 Zahkna Rene EST 1062.8 537.6
## 6142 49 93 Gerdzhikov Dimitar BUL 1086.0 547.3
## 6143 50 49 Eberhard Tobias AUT 1081.6 557.2
## 6144 51 48 Babikov Anton RUS 1068.2 568.9
## 6145 52 53 Siemakov Volodymyr UKR 1067.2 571.5
## 6146 53 16 Kazar Matej SVK 1091.5 531.6
## 6147 54 79 Yeremin Roman KAZ 1095.9 536.7
## 6148 55 61 Buta George ROU 1067.6 547.5
## 6149 56 36 Pryma Artem UKR 1078.3 556.0
## 6150 57 38 Seppala Tero FIN 1085.1 567.5
## 6151 58 33 Hiidensalo Olli FIN 1064.0 572.7
## 6152 59 99 Dombrovski Karol LTU 1065.6 543.1
## 6153 60 71 Strolia Vytautas LTU 1089.0 560.7
## 6154 61 3 Pidruchnyi Dmytro UKR 1100.8 576.9
## 6155 62 14 Lindstroem Fredrik SWE 1090.9 574.9
## 6156 63 66 Bartko Simon SVK 1091.5 585.5
## 6157 64 74 Yaliotnau Raman BLR 1109.2 578.9
## 6158 65 92 Smolski Anton BLR 1097.3 539.0
## 6159 66 85 Soukup Jaroslav CZE 1093.7 547.1
## 6160 67 26 Ermits Kalev EST 1113.1 576.9
## 6161 68 97 Howe Alex USA 1095.3 562.1
## 6162 69 78 Kuehn Johannes GER 1127.7 542.2
## 6163 70 75 Kobonoki Tsukasa JPN 1099.3 590.9
## 6164 71 88 Koiv Kauri EST 1098.0 567.1
## 6165 72 77 Gronman Tuomas FIN 1085.2 575.3
## 6166 73 67 Tkalenko Ruslan UKR 1114.5 579.3
## 6167 74 64 Drinovec Mitja SLO 1112.4 581.1
## 6168 75 39 Finello Jeremy SUI 1113.4 618.5
## 6169 76 7 Weger Benjamin SUI 1121.1 605.5
## 6170 77 86 Plessnitzer Kevin AUT 1123.0 590.0
## 6171 78 96 Tyshchenko Artem UKR 1112.8 576.4
## 6172 79 41 Gow Christian CAN 1107.8 576.7
## 6173 80 103 Jacquelin Emilien FRA 1113.9 583.9
## 6174 81 63 Nedza-Kubiniec Andrzej POL 1116.8 567.8
## 6175 82 59 Angelis Apostolos GRE 1124.9 579.4
## 6176 83 90 Hasilla Tomas SVK 1124.8 572.9
## 6177 84 65 Patrijuks Aleksandrs LAT 1123.5 582.4
## 6178 85 76 Burkhalter Joscha SUI 1138.0 572.3
## 6179 86 25 Gow Scott CAN 1132.6 598.1
## 6180 87 83 Eliseev Matvey RUS 1101.6 606.8
## 6181 88 1 Krcmar Michal CZE 1143.2 633.3
## 6182 89 27 Guzik Grzegorz POL 1142.7 556.3
## 6183 90 95 Podkorytov Vassiliy KAZ 1106.8 563.9
## 6184 91 89 Faur Remus ROU 1123.5 554.2
## 6185 92 82 Sinapov Anton BUL 1150.4 619.5
## 6186 93 50 Chepelin Vladimir BLR 1189.2 640.2
## 6187 94 94 Ozaki Kosuke JPN 1170.5 603.4
## 6188 95 84 Braun Maxim KAZ 1127.6 587.7
## 6189 96 68 Kaukenas Tomas LTU 1158.0 643.7
## 6190 97 104 Szwajnos Marcin POL 1214.0 655.1
## 6191 98 57 Dixon Scott GBR 1188.1 610.8
## 6192 99 101 Slotins Roberts LAT 1222.5 642.4
## 6193 100 73 Kim Yonggyu KOR 1241.8 620.8
## 6194 1 16 Eberhard Julian AUT 1895.1 492.3
## 6195 2 1 Fourcade Martin FRA 1877.9 468.1
## 6196 3 3 Shipulin Anton RUS 1882.8 473.8
## 6197 4 13 Doll Benedikt GER 1907.0 500.3
## 6198 5 15 Lesser Erik GER 1904.4 480.2
## 6199 6 5 Peiffer Arnd GER 1911.7 524.0
## 6200 7 19 Windisch Dominik ITA 1927.2 470.9
## 6201 8 22 Krcmar Michal CZE 1926.3 481.7
## 6202 9 20 Moravec Ondrej CZE 1918.9 486.2
## 6203 10 12 Fillon Maillet Quentin FRA 1918.5 476.5
## 6204 11 21 Guigonnat Antonin FRA 1916.9 506.2
## 6205 12 4 Fak Jakov SLO 1942.1 508.9
## 6206 13 8 Hofer Lukas ITA 1940.2 474.5
## 6207 14 29 Bailey Lowell USA 1941.7 507.8
## 6208 15 23 Lindstroem Fredrik SWE 1944.2 492.2
## 6209 16 9 Schempp Simon GER 1957.3 504.0
## 6210 17 27 Anev Krasimir BUL 1933.4 497.0
## 6211 18 18 L'Abee-Lund Henrik NOR 1961.2 500.0
## 6212 19 2 Boe Johannes Thingnes NOR 1962.5 520.1
## 6213 20 6 Boe Tarjei NOR 1960.9 510.5
## 6214 21 7 Desthieux Simon FRA 1973.8 491.9
## 6215 22 14 Rastorgujevs Andrejs LAT 1998.0 537.7
## 6216 23 17 Babikov Anton RUS 2009.2 522.5
## 6217 24 28 Lapshin Timofei KOR 2008.6 502.9
## 6218 25 10 Birkeland Lars Helge NOR 1999.6 533.4
## 6219 26 11 Weger Benjamin SUI 2049.3 501.8
## 6220 27 25 Bjoentegaard Erlend NOR 2074.1 537.1
## 6221 28 26 Bjoerndalen Ole Einar NOR 2071.0 550.9
## 6222 29 24 Kuehn Johannes GER 2118.7 576.8
## 6223 30 30 Nordgren Leif USA 2096.6 535.0
## 6224 1 18 Fourcade Martin FRA 1065.6 517.2
## 6225 2 58 Svendsen Emil Hegle NOR 1070.2 521.8
## 6226 3 10 Boe Johannes Thingnes NOR 1079.2 510.0
## 6227 4 22 Burke Tim USA 1072.7 522.2
## 6228 5 33 Boe Tarjei NOR 1089.8 544.3
## 6229 6 11 Hofer Lukas ITA 1098.3 520.6
## 6230 7 31 Fak Jakov SLO 1091.0 535.3
## 6231 8 13 Weger Benjamin SUI 1102.6 535.1
## 6232 9 6 Krcmar Michal CZE 1111.4 555.5
## 6233 10 8 Pidruchnyi Dmytro UKR 1116.2 527.6
## 6234 11 16 Moravec Ondrej CZE 1111.5 529.0
## 6235 12 28 Peiffer Arnd GER 1123.8 549.9
## 6236 13 15 Desthieux Simon FRA 1124.1 539.8
## 6237 14 34 Lapshin Timofei KOR 1104.8 552.4
## 6238 15 17 Birkeland Lars Helge NOR 1116.5 529.6
## 6239 16 21 Pryma Artem UKR 1126.6 549.5
## 6240 17 14 Doll Benedikt GER 1144.3 575.6
## 6241 18 20 Eberhard Julian AUT 1145.3 543.2
## 6242 18 96 Bocharnikov Sergey BLR 1121.5 539.8
## 6243 20 44 Kuehn Johannes GER 1137.6 579.3
## 6244 21 63 Eliseev Matvey RUS 1109.6 542.5
## 6245 22 1 Windisch Dominik ITA 1142.5 581.5
## 6246 23 27 Loginov Alexander RUS 1149.8 572.4
## 6247 24 38 Lindstroem Fredrik SWE 1137.9 559.9
## 6248 25 88 Soukup Jaroslav CZE 1138.0 572.4
## 6249 26 36 Claude Florent BEL 1126.7 565.1
## Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time year
## 1 424.8 43.2 24.0 8.0 0.0 2014-2015
## 2 436.1 39.8 20.0 8.0 0.0 2014-2015
## 3 430.3 43.3 23.0 26.9 0.0 2014-2015
## 4 426.8 48.5 29.0 7.9 0.0 2014-2015
## 5 436.7 45.6 26.0 7.4 0.0 2014-2015
## 6 435.7 48.1 27.0 7.5 0.0 2014-2015
## 7 426.0 48.6 30.0 27.5 0.0 2014-2015
## 8 443.3 37.7 18.0 7.9 0.0 2014-2015
## 9 433.0 43.3 24.0 28.6 0.0 2014-2015
## 10 442.8 46.1 26.0 8.0 0.0 2014-2015
## 11 441.8 48.2 29.0 27.2 0.0 2014-2015
## 12 433.3 41.9 22.0 8.3 0.0 2014-2015
## 13 434.8 47.9 28.0 28.8 0.0 2014-2015
## 14 441.5 47.9 27.0 30.0 0.0 2014-2015
## 15 448.0 44.2 25.0 7.7 0.0 2014-2015
## 16 443.3 42.9 22.0 28.6 0.0 2014-2015
## 17 436.6 46.8 28.0 28.2 0.0 2014-2015
## 18 447.2 45.4 24.0 8.5 0.0 2014-2015
## 19 433.9 46.5 27.0 51.6 0.0 2014-2015
## 20 441.1 51.3 32.0 8.4 0.0 2014-2015
## 21 441.1 47.2 27.0 7.4 0.0 2014-2015
## 22 445.9 50.6 29.0 29.1 0.0 2014-2015
## 23 439.1 49.0 28.0 29.2 0.0 2014-2015
## 24 445.2 44.0 21.0 8.3 0.0 2014-2015
## 25 432.4 44.9 24.0 30.7 0.0 2014-2015
## 26 441.6 46.5 27.0 30.3 0.0 2014-2015
## 27 450.4 46.8 27.0 8.0 0.0 2014-2015
## 28 440.8 50.6 30.0 28.6 0.0 2014-2015
## 29 431.2 48.6 30.0 8.2 0.0 2014-2015
## 30 449.3 49.2 29.0 30.5 0.0 2014-2015
## 31 443.7 42.3 21.0 29.7 0.0 2014-2015
## 32 451.7 45.1 24.0 30.6 0.0 2014-2015
## 33 442.8 47.5 26.0 50.0 0.0 2014-2015
## 34 452.2 48.1 29.0 28.2 0.0 2014-2015
## 35 449.8 48.7 29.0 7.8 0.0 2014-2015
## 36 443.4 46.6 26.0 7.9 0.0 2014-2015
## 37 452.4 46.8 26.0 29.3 0.0 2014-2015
## 38 447.3 43.8 25.0 27.1 0.0 2014-2015
## 39 449.7 48.1 28.0 29.9 0.0 2014-2015
## 40 439.7 55.7 33.0 30.2 0.0 2014-2015
## 41 452.4 52.0 30.0 52.7 0.0 2014-2015
## 42 458.9 57.5 37.0 8.9 0.0 2014-2015
## 43 453.9 53.1 33.0 29.6 0.0 2014-2015
## 44 453.1 48.4 28.0 30.1 0.0 2014-2015
## 45 447.2 48.1 27.0 51.4 0.0 2014-2015
## 46 458.9 47.6 26.0 30.0 0.0 2014-2015
## 47 444.4 50.3 30.0 49.1 0.0 2014-2015
## 48 435.9 50.4 30.0 30.4 0.0 2014-2015
## 49 450.4 56.5 36.0 28.6 0.0 2014-2015
## 50 458.2 49.0 28.0 52.6 0.0 2014-2015
## 51 466.3 48.3 27.0 8.5 0.0 2014-2015
## 52 460.0 59.7 39.0 7.3 0.0 2014-2015
## 53 442.4 46.2 25.0 51.4 0.0 2014-2015
## 54 451.1 57.0 36.0 50.9 0.0 2014-2015
## 55 437.4 45.1 25.0 29.4 0.0 2014-2015
## 56 448.2 51.8 30.0 49.0 0.0 2014-2015
## 57 461.1 48.4 26.0 29.2 0.0 2014-2015
## 58 462.0 47.6 26.0 50.6 0.0 2014-2015
## 59 453.6 41.8 20.0 8.6 0.0 2014-2015
## 60 462.1 63.2 41.0 8.1 0.0 2014-2015
## 61 443.3 45.2 24.0 54.4 0.0 2014-2015
## 62 453.3 47.5 26.0 53.0 0.0 2014-2015
## 63 444.9 52.7 32.0 51.2 0.0 2014-2015
## 64 449.9 49.8 28.0 76.9 0.0 2014-2015
## 65 455.9 49.5 28.0 52.4 0.0 2014-2015
## 66 459.3 47.4 27.0 53.0 0.0 2014-2015
## 67 471.2 48.9 28.0 8.5 0.0 2014-2015
## 68 478.3 45.3 24.0 8.5 0.0 2014-2015
## 69 469.9 44.9 26.0 48.5 0.0 2014-2015
## 70 459.0 52.4 33.0 52.8 0.0 2014-2015
## 71 443.3 43.9 23.0 31.7 0.0 2014-2015
## 72 446.9 52.4 30.0 32.0 0.0 2014-2015
## 73 456.1 56.3 34.0 28.8 0.0 2014-2015
## 74 448.4 50.0 29.0 28.4 0.0 2014-2015
## 75 492.8 45.3 23.0 8.7 0.0 2014-2015
## 76 469.2 45.8 24.0 8.3 0.0 2014-2015
## 77 451.0 43.2 23.0 54.9 0.0 2014-2015
## 78 459.1 52.0 30.0 53.2 0.0 2014-2015
## 79 445.9 48.8 28.0 53.2 0.0 2014-2015
## 80 466.5 41.4 20.0 32.1 0.0 2014-2015
## 81 481.3 47.5 26.0 8.7 0.0 2014-2015
## 82 466.5 46.5 25.0 54.7 0.0 2014-2015
## 83 467.9 50.0 29.0 8.3 0.0 2014-2015
## 84 482.5 44.1 24.0 31.5 0.0 2014-2015
## 85 480.7 56.9 34.0 9.3 0.0 2014-2015
## 86 452.5 54.1 33.0 49.9 0.0 2014-2015
## 87 459.1 49.5 28.0 51.6 0.0 2014-2015
## 88 473.0 50.2 28.0 30.8 0.0 2014-2015
## 89 470.7 51.6 28.0 31.8 0.0 2014-2015
## 90 481.6 52.9 33.0 7.8 0.0 2014-2015
## 91 449.3 52.1 32.0 79.4 0.0 2014-2015
## 92 472.2 48.5 27.0 33.3 0.0 2014-2015
## 93 471.5 49.7 27.0 55.2 0.0 2014-2015
## 94 481.7 65.9 44.0 8.4 0.0 2014-2015
## 95 459.5 49.2 27.0 56.3 0.0 2014-2015
## 96 461.9 67.3 45.0 54.5 0.0 2014-2015
## 97 468.1 46.2 25.0 31.1 0.0 2014-2015
## 98 473.7 59.2 37.0 105.0 0.0 2014-2015
## 99 480.9 54.6 33.0 56.7 0.0 2014-2015
## 100 491.2 53.8 30.0 58.6 0.0 2014-2015
## 101 501.8 57.5 35.0 82.7 0.0 2014-2015
## 102 329.8 41.1 21.0 8.2 0.0 2014-2015
## 103 332.5 39.3 20.0 9.0 0.0 2014-2015
## 104 334.2 38.9 21.0 9.3 0.0 2014-2015
## 105 332.0 39.7 22.0 8.7 0.0 2014-2015
## 106 329.7 40.3 21.0 8.8 0.0 2014-2015
## 107 329.4 46.0 26.0 7.9 0.0 2014-2015
## 108 328.2 41.4 22.0 28.0 0.0 2014-2015
## 109 328.9 42.9 24.0 8.6 0.0 2014-2015
## 110 326.8 43.5 23.0 7.6 0.0 2014-2015
## 111 332.8 50.2 30.0 8.3 0.0 2014-2015
## 112 330.6 43.9 24.0 7.9 0.0 2014-2015
## 113 328.4 42.9 24.0 8.1 0.0 2014-2015
## 114 323.3 46.0 26.0 28.5 0.0 2014-2015
## 115 338.4 46.9 27.0 8.2 0.0 2014-2015
## 116 330.8 42.1 24.0 28.7 0.0 2014-2015
## 117 325.8 43.5 25.0 49.2 0.0 2014-2015
## 118 333.5 45.1 25.0 30.4 0.0 2014-2015
## 119 334.5 44.2 25.0 8.2 0.0 2014-2015
## 120 336.0 43.8 25.0 8.0 0.0 2014-2015
## 121 348.0 48.3 27.0 30.6 0.0 2014-2015
## 122 331.7 47.6 28.0 29.2 0.0 2014-2015
## 123 342.4 54.4 34.0 50.7 0.0 2014-2015
## 124 331.5 48.6 30.0 49.5 0.0 2014-2015
## 125 337.7 44.5 25.0 30.0 0.0 2014-2015
## 126 339.2 42.9 25.0 30.6 0.0 2014-2015
## 127 331.5 45.3 27.0 29.0 0.0 2014-2015
## 128 336.4 52.4 35.0 9.2 0.0 2014-2015
## 129 355.7 51.9 30.0 30.6 0.0 2014-2015
## 130 349.5 45.7 26.0 9.4 0.0 2014-2015
## 131 332.7 45.5 27.0 47.8 0.0 2014-2015
## 132 334.5 43.6 24.0 50.7 0.0 2014-2015
## 133 332.4 46.1 27.0 70.8 0.0 2014-2015
## 134 333.8 54.4 36.0 30.1 0.0 2014-2015
## 135 338.8 48.8 30.0 51.9 0.0 2014-2015
## 136 339.4 46.1 26.0 29.2 0.0 2014-2015
## 137 333.2 43.3 26.0 68.5 0.0 2014-2015
## 138 342.7 44.6 22.0 8.2 0.0 2014-2015
## 139 342.1 45.8 26.0 75.6 0.0 2014-2015
## 140 346.1 46.7 26.0 53.5 0.0 2014-2015
## 141 331.5 45.6 27.0 28.8 0.0 2014-2015
## 142 340.6 48.9 27.0 30.2 0.0 2014-2015
## 143 344.8 47.5 27.0 8.3 0.0 2014-2015
## 144 349.8 47.2 27.0 8.4 0.0 2014-2015
## 145 353.5 46.8 26.0 30.2 0.0 2014-2015
## 146 343.3 57.8 36.0 76.4 0.0 2014-2015
## 147 349.4 49.3 27.0 31.5 0.0 2014-2015
## 148 345.7 46.7 25.0 51.8 0.0 2014-2015
## 149 347.7 51.9 30.0 54.6 0.0 2014-2015
## 150 347.2 47.5 26.0 52.9 0.0 2014-2015
## 151 346.1 48.6 28.0 95.8 0.0 2014-2015
## 152 345.5 51.0 29.0 72.9 0.0 2014-2015
## 153 363.2 46.3 26.0 51.4 0.0 2014-2015
## 154 372.4 43.1 23.0 8.8 0.0 2014-2015
## 155 724.6 47.8 24.0 5.4 0.0 2014-2015
## 156 723.2 50.3 27.0 5.3 0.0 2014-2015
## 157 721.6 49.2 26.0 5.1 0.0 2014-2015
## 158 734.7 51.9 27.0 5.2 0.0 2014-2015
## 159 716.9 48.8 23.0 5.6 0.0 2014-2015
## 160 739.2 47.7 23.0 5.4 0.0 2014-2015
## 161 731.0 50.8 26.0 5.6 0.0 2014-2015
## 162 724.4 51.7 29.0 5.4 0.0 2014-2015
## 163 722.8 49.9 23.0 28.5 0.0 2014-2015
## 164 716.0 52.1 28.0 5.7 0.0 2014-2015
## 165 716.7 51.5 26.0 5.4 0.0 2014-2015
## 166 740.5 53.6 29.0 5.8 0.0 2014-2015
## 167 727.2 48.6 24.0 27.0 0.0 2014-2015
## 168 748.1 50.7 25.0 5.7 0.0 2014-2015
## 169 747.7 50.5 26.0 6.5 0.0 2014-2015
## 170 730.8 52.9 27.0 28.7 0.0 2014-2015
## 171 738.0 53.9 30.0 5.8 0.0 2014-2015
## 172 746.1 48.2 22.0 5.9 0.0 2014-2015
## 173 729.3 51.2 26.0 27.6 0.0 2014-2015
## 174 755.3 54.0 29.0 5.0 0.0 2014-2015
## 175 733.5 52.3 26.0 5.8 0.0 2014-2015
## 176 750.2 52.7 29.0 5.8 0.0 2014-2015
## 177 726.4 52.6 28.0 5.7 0.0 2014-2015
## 178 731.3 50.5 25.0 28.6 0.0 2014-2015
## 179 734.0 49.7 24.0 5.7 0.0 2014-2015
## 180 739.0 58.4 33.0 28.3 0.0 2014-2015
## 181 748.3 58.0 33.0 28.5 0.0 2014-2015
## 182 724.1 55.9 32.0 51.0 0.0 2014-2015
## 183 763.2 52.8 26.0 5.8 0.0 2014-2015
## 184 744.6 54.4 28.0 50.3 0.0 2014-2015
## 185 748.2 47.0 24.0 5.5 0.0 2014-2015
## 186 737.8 54.5 31.0 52.8 0.0 2014-2015
## 187 745.7 51.2 27.0 52.7 0.0 2014-2015
## 188 762.2 47.9 24.0 28.1 0.0 2014-2015
## 189 764.1 47.2 23.0 5.9 0.0 2014-2015
## 190 745.6 53.0 27.0 30.9 0.0 2014-2015
## 191 734.6 50.5 28.0 71.3 0.0 2014-2015
## 192 759.1 47.6 21.0 6.4 0.0 2014-2015
## 193 735.5 46.9 23.0 28.9 0.0 2014-2015
## 194 729.1 54.9 29.0 79.4 0.0 2014-2015
## 195 740.3 52.7 26.0 29.0 0.0 2014-2015
## 196 744.8 54.7 32.0 51.9 0.0 2014-2015
## 197 743.5 47.9 23.0 29.1 0.0 2014-2015
## 198 754.9 60.7 37.0 29.7 0.0 2014-2015
## 199 764.2 58.0 33.0 6.5 0.0 2014-2015
## 200 728.9 53.1 31.0 73.4 0.0 2014-2015
## 201 767.6 56.1 31.0 53.8 0.0 2014-2015
## 202 755.5 52.2 27.0 5.8 0.0 2014-2015
## 203 767.4 54.8 30.0 30.0 0.0 2014-2015
## 204 770.8 57.0 33.0 5.8 0.0 2014-2015
## 205 792.9 46.7 22.0 5.6 0.0 2014-2015
## 206 764.4 52.7 26.0 5.7 0.0 2014-2015
## 207 748.1 54.6 28.0 78.5 0.0 2014-2015
## 208 770.2 54.0 29.0 6.4 0.0 2014-2015
## 209 747.4 56.1 31.0 75.9 0.0 2014-2015
## 210 786.4 48.9 25.0 30.7 0.0 2014-2015
## 211 771.4 53.1 27.0 29.8 0.0 2014-2015
## 212 741.7 52.4 29.0 49.3 0.0 2014-2015
## 213 764.0 63.2 39.0 51.1 0.0 2014-2015
## 214 751.9 49.4 25.0 29.4 0.0 2014-2015
## 215 774.0 55.7 28.0 6.1 0.0 2014-2015
## 216 757.7 47.8 23.0 31.0 0.0 2014-2015
## 217 759.4 53.6 31.0 52.9 0.0 2014-2015
## 218 754.3 52.8 25.0 78.5 0.0 2014-2015
## 219 755.0 47.3 23.0 51.2 0.0 2014-2015
## 220 779.7 50.2 26.0 6.3 0.0 2014-2015
## 221 765.2 58.1 32.0 53.8 0.0 2014-2015
## 222 751.7 70.2 46.0 75.3 0.0 2014-2015
## 223 761.7 72.0 43.0 30.8 0.0 2014-2015
## 224 785.4 60.3 36.0 28.9 0.0 2014-2015
## 225 753.8 50.8 24.0 54.4 0.0 2014-2015
## 226 788.3 46.7 22.0 30.6 0.0 2014-2015
## 227 752.5 52.6 28.0 51.0 0.0 2014-2015
## 228 768.1 61.6 36.0 29.0 0.0 2014-2015
## 229 780.9 63.5 37.0 54.6 0.0 2014-2015
## 230 776.9 54.6 28.0 6.2 0.0 2014-2015
## 231 790.9 54.8 27.0 30.6 0.0 2014-2015
## 232 782.8 61.2 34.0 30.5 0.0 2014-2015
## 233 772.9 53.1 27.0 31.6 0.0 2014-2015
## 234 813.3 46.5 19.0 33.4 0.0 2014-2015
## 235 772.1 47.4 24.0 31.0 0.0 2014-2015
## 236 766.5 55.7 31.0 53.2 0.0 2014-2015
## 237 774.0 56.3 27.0 54.6 0.0 2014-2015
## 238 776.1 57.1 29.0 31.4 0.0 2014-2015
## 239 766.6 64.0 35.0 31.2 0.0 2014-2015
## 240 778.0 55.5 28.0 57.0 0.0 2014-2015
## 241 776.7 56.0 30.0 55.7 0.0 2014-2015
## 242 816.0 53.9 26.0 6.9 0.0 2014-2015
## 243 799.1 54.6 29.0 31.9 0.0 2014-2015
## 244 789.1 62.3 34.0 56.6 0.0 2014-2015
## 245 784.6 57.7 33.0 30.3 0.0 2014-2015
## 246 803.2 53.9 28.0 32.1 0.0 2014-2015
## 247 795.1 54.3 28.0 82.3 0.0 2014-2015
## 248 778.4 54.6 29.0 31.6 0.0 2014-2015
## 249 793.7 52.6 24.0 6.4 0.0 2014-2015
## 250 789.9 53.6 29.0 33.9 0.0 2014-2015
## 251 782.5 57.3 32.0 5.9 0.0 2014-2015
## 252 788.2 63.3 38.0 80.5 0.0 2014-2015
## 253 771.8 55.7 30.0 75.2 0.0 2014-2015
## 254 840.5 55.8 30.0 32.8 0.0 2014-2015
## 255 810.5 65.5 38.0 58.9 0.0 2014-2015
## 256 796.6 64.5 36.0 81.0 0.0 2014-2015
## 257 839.7 58.7 30.0 88.7 0.0 2014-2015
## 258 842.7 59.4 30.0 32.1 0.0 2014-2015
## 259 359.6 49.7 25.0 6.7 0.0 2014-2015
## 260 364.4 51.9 27.0 5.7 0.0 2014-2015
## 261 367.5 47.6 24.0 28.6 0.0 2014-2015
## 262 366.3 42.7 18.0 6.3 0.0 2014-2015
## 263 357.9 51.1 25.0 6.2 0.0 2014-2015
## 264 367.0 47.1 23.0 5.5 0.0 2014-2015
## 265 362.5 49.2 25.0 5.8 0.0 2014-2015
## 266 360.5 51.4 26.0 51.0 0.0 2014-2015
## 267 368.0 49.0 24.0 5.8 0.0 2014-2015
## 268 367.7 49.7 26.0 5.6 0.0 2014-2015
## 269 366.4 51.4 26.0 28.7 0.0 2014-2015
## 270 366.9 50.7 27.0 5.6 0.0 2014-2015
## 271 364.0 51.1 26.0 28.8 0.0 2014-2015
## 272 367.8 47.2 21.0 30.6 0.0 2014-2015
## 273 359.7 52.2 28.0 5.9 0.0 2014-2015
## 274 371.9 53.2 28.0 28.9 0.0 2014-2015
## 275 363.9 50.7 28.0 5.7 0.0 2014-2015
## 276 370.9 47.4 24.0 5.5 0.0 2014-2015
## 277 370.1 51.6 26.0 29.4 0.0 2014-2015
## 278 365.3 51.2 27.0 29.7 0.0 2014-2015
## 279 375.9 54.8 32.0 5.6 0.0 2014-2015
## 280 368.1 48.7 25.0 7.3 0.0 2014-2015
## 281 395.8 51.0 27.0 6.2 0.0 2014-2015
## 282 372.6 55.4 30.0 5.7 0.0 2014-2015
## 283 368.0 52.1 25.0 5.7 0.0 2014-2015
## 284 365.9 48.7 23.0 6.8 0.0 2014-2015
## 285 367.3 43.9 22.0 28.9 0.0 2014-2015
## 286 376.9 52.0 27.0 6.1 0.0 2014-2015
## 287 368.8 54.6 32.0 28.7 0.0 2014-2015
## 288 365.8 47.5 23.0 31.4 0.0 2014-2015
## 289 380.2 48.7 24.0 28.9 0.0 2014-2015
## 290 375.3 49.2 25.0 53.6 0.0 2014-2015
## 291 362.8 47.8 21.0 31.3 0.0 2014-2015
## 292 376.1 51.7 26.0 5.9 0.0 2014-2015
## 293 373.2 52.8 28.0 5.9 0.0 2014-2015
## 294 370.2 52.3 27.0 5.6 0.0 2014-2015
## 295 363.9 49.6 25.0 72.6 0.0 2014-2015
## 296 367.5 49.2 25.0 29.4 0.0 2014-2015
## 297 372.0 52.9 28.0 80.6 0.0 2014-2015
## 298 361.6 52.4 28.0 29.0 0.0 2014-2015
## 299 369.5 49.6 26.0 49.4 0.0 2014-2015
## 300 363.8 59.1 31.0 31.4 0.0 2014-2015
## 301 368.1 49.2 33.0 76.8 0.0 2014-2015
## 302 382.2 53.0 28.0 31.9 0.0 2014-2015
## 303 392.0 42.7 19.0 6.2 0.0 2014-2015
## 304 377.7 51.8 27.0 76.1 0.0 2014-2015
## 305 380.6 51.6 28.0 54.4 0.0 2014-2015
## 306 372.2 55.8 72.0 125.9 0.0 2014-2015
## 307 396.0 51.6 27.0 56.7 0.0 2014-2015
## 308 387.2 51.2 28.0 32.8 0.0 2014-2015
## 309 360.6 74.3 76.0 115.0 0.0 2014-2015
## 310 396.7 56.7 31.0 57.3 0.0 2014-2015
## 311 388.9 51.0 26.0 54.0 0.0 2014-2015
## 312 393.7 51.7 27.0 30.8 0.0 2014-2015
## 313 406.3 51.7 27.0 57.7 0.0 2014-2015
## 314 423.9 49.8 23.0 34.3 0.0 2014-2015
## 315 448.9 40.0 21.5 6.8 0.0 2014-2015
## 316 452.0 41.3 25.7 6.7 0.0 2014-2015
## 317 442.4 48.5 30.2 27.0 0.0 2014-2015
## 318 443.8 51.7 34.2 6.6 0.0 2014-2015
## 319 458.2 40.1 22.6 7.1 0.0 2014-2015
## 320 445.1 47.5 31.5 26.9 0.0 2014-2015
## 321 455.0 50.3 32.4 6.9 0.0 2014-2015
## 322 451.1 46.8 27.4 6.9 0.0 2014-2015
## 323 461.4 41.0 24.1 6.8 0.0 2014-2015
## 324 458.6 53.6 35.5 25.8 0.0 2014-2015
## 325 457.6 45.3 28.9 27.8 0.0 2014-2015
## 326 464.8 41.9 23.5 6.8 0.0 2014-2015
## 327 456.3 42.6 22.9 28.1 0.0 2014-2015
## 328 468.3 42.5 23.6 7.2 0.0 2014-2015
## 329 447.9 49.8 31.0 26.9 0.0 2014-2015
## 330 457.6 41.7 26.4 47.6 0.0 2014-2015
## 331 460.6 43.6 24.9 28.9 0.0 2014-2015
## 332 448.3 46.5 28.3 46.2 0.0 2014-2015
## 333 452.3 47.6 29.6 48.4 0.0 2014-2015
## 334 465.0 46.6 30.5 6.8 0.0 2014-2015
## 335 459.0 46.8 28.3 28.5 0.0 2014-2015
## 336 462.2 50.9 34.6 48.0 0.0 2014-2015
## 337 462.6 40.8 22.2 27.3 0.0 2014-2015
## 338 475.0 42.3 22.9 7.4 0.0 2014-2015
## 339 460.1 42.5 23.3 28.1 0.0 2014-2015
## 340 459.0 44.0 28.5 50.6 0.0 2014-2015
## 341 459.8 52.0 35.4 28.2 0.0 2014-2015
## 342 475.7 49.9 31.9 6.7 0.0 2014-2015
## 343 470.8 53.7 35.2 7.2 0.0 2014-2015
## 344 467.5 46.4 29.2 28.3 0.0 2014-2015
## 345 470.7 44.8 25.0 7.3 0.0 2014-2015
## 346 468.4 44.4 26.5 29.1 0.0 2014-2015
## 347 457.5 40.2 24.5 27.8 0.0 2014-2015
## 348 456.2 47.4 30.7 48.0 0.0 2014-2015
## 349 459.6 47.6 28.7 28.4 0.0 2014-2015
## 350 464.9 41.9 22.9 6.7 0.0 2014-2015
## 351 452.3 43.6 25.1 29.5 0.0 2014-2015
## 352 459.1 42.0 24.2 7.1 0.0 2014-2015
## 353 459.4 49.1 32.0 28.0 0.0 2014-2015
## 354 465.7 42.6 23.1 7.1 0.0 2014-2015
## 355 464.6 46.0 31.7 51.0 0.0 2014-2015
## 356 467.1 45.4 27.1 28.0 0.0 2014-2015
## 357 474.4 37.3 18.9 51.5 0.0 2014-2015
## 358 450.1 48.4 30.9 29.4 0.0 2014-2015
## 359 472.5 49.0 29.3 27.1 0.0 2014-2015
## 360 457.2 47.0 26.4 7.6 0.0 2014-2015
## 361 486.8 39.9 21.8 7.1 0.0 2014-2015
## 362 465.0 40.1 21.6 27.6 0.0 2014-2015
## 363 475.2 51.7 29.9 29.2 0.0 2014-2015
## 364 471.8 41.0 24.4 47.7 0.0 2014-2015
## 365 467.2 43.9 27.0 49.9 0.0 2014-2015
## 366 471.8 46.4 27.4 28.1 0.0 2014-2015
## 367 479.4 46.3 26.7 28.4 0.0 2014-2015
## 368 471.3 49.0 31.0 47.9 0.0 2014-2015
## 369 460.4 44.6 28.3 69.7 0.0 2014-2015
## 370 470.1 48.1 27.0 48.8 0.0 2014-2015
## 371 460.8 47.6 28.3 47.5 0.0 2014-2015
## 372 468.2 48.2 29.4 52.2 0.0 2014-2015
## 373 461.6 39.9 20.4 30.3 0.0 2014-2015
## 374 477.4 42.7 23.3 6.7 0.0 2014-2015
## 375 479.8 41.4 25.2 27.7 0.0 2014-2015
## 376 473.2 45.1 27.1 49.4 0.0 2014-2015
## 377 486.2 59.2 39.6 6.8 0.0 2014-2015
## 378 476.1 45.4 26.9 6.7 0.0 2014-2015
## 379 463.4 55.8 36.5 29.2 0.0 2014-2015
## 380 476.7 44.0 27.1 28.5 0.0 2014-2015
## 381 486.8 47.0 27.6 29.2 0.0 2014-2015
## 382 458.8 43.6 26.6 72.1 0.0 2014-2015
## 383 476.6 44.2 24.6 28.6 0.0 2014-2015
## 384 481.6 41.7 25.1 28.6 0.0 2014-2015
## 385 490.1 48.7 28.4 7.0 0.0 2014-2015
## 386 466.1 57.5 39.7 74.7 0.0 2014-2015
## 387 488.4 40.8 23.7 7.5 0.0 2014-2015
## 388 497.6 39.8 19.4 7.6 0.0 2014-2015
## 389 490.8 40.4 20.3 7.6 0.0 2014-2015
## 390 509.3 41.1 24.0 7.2 0.0 2014-2015
## 391 483.0 56.6 38.1 29.5 0.0 2014-2015
## 392 487.1 51.7 30.6 54.3 0.0 2014-2015
## 393 491.6 42.4 21.1 31.6 0.0 2014-2015
## 394 480.3 39.4 23.1 52.2 0.0 2014-2015
## 395 507.3 50.7 29.7 7.7 0.0 2014-2015
## 396 495.1 52.4 35.9 50.5 0.0 2014-2015
## 397 477.6 49.2 27.7 101.3 0.0 2014-2015
## 398 462.2 53.2 35.1 191.1 0.0 2014-2015
## 399 503.7 48.0 31.9 53.0 0.0 2014-2015
## 400 503.4 56.1 37.8 76.0 0.0 2014-2015
## 401 499.5 94.6 74.4 74.3 0.0 2014-2015
## 402 521.8 60.2 40.0 101.7 0.0 2014-2015
## 403 420.5 43.4 NA 6.9 0.0 2014-2015
## 404 410.1 38.7 NA 6.8 0.0 2014-2015
## 405 423.3 40.8 NA 7.2 0.0 2014-2015
## 406 417.5 40.0 NA 7.4 0.0 2014-2015
## 407 417.5 39.0 NA 7.9 0.0 2014-2015
## 408 416.6 44.1 NA 7.6 0.0 2014-2015
## 409 422.0 44.1 NA 28.6 0.0 2014-2015
## 410 424.4 42.8 NA 7.5 0.0 2014-2015
## 411 425.9 37.4 NA 29.3 0.0 2014-2015
## 412 418.3 42.2 NA 7.2 0.0 2014-2015
## 413 413.5 48.7 NA 6.9 0.0 2014-2015
## 414 411.9 39.6 NA 50.0 0.0 2014-2015
## 415 427.2 48.4 NA 29.6 0.0 2014-2015
## 416 426.0 45.2 NA 29.9 0.0 2014-2015
## 417 434.3 45.2 NA 7.3 0.0 2014-2015
## 418 420.9 41.8 NA 7.1 0.0 2014-2015
## 419 418.5 42.9 NA 28.5 0.0 2014-2015
## 420 427.2 40.1 NA 29.2 0.0 2014-2015
## 421 422.3 48.5 NA 29.1 0.0 2014-2015
## 422 438.4 35.0 NA 31.4 0.0 2014-2015
## 423 431.3 43.4 NA 7.2 0.0 2014-2015
## 424 414.6 47.4 NA 96.8 0.0 2014-2015
## 425 427.8 45.8 NA 29.6 0.0 2014-2015
## 426 432.9 40.3 NA 30.6 0.0 2014-2015
## 427 446.5 46.4 NA 7.4 0.0 2014-2015
## 428 428.4 41.7 NA 7.0 0.0 2014-2015
## 429 432.9 44.1 NA 56.5 0.0 2014-2015
## 430 436.7 38.4 NA 7.1 0.0 2014-2015
## 431 417.9 44.1 NA 99.5 0.0 2014-2015
## 432 439.3 43.5 NA 51.6 0.0 2014-2015
## 433 343.8 41.3 23.1 28.9 0.0 2014-2015
## 434 346.1 46.3 28.8 28.3 0.0 2014-2015
## 435 344.5 48.8 30.0 51.3 0.0 2014-2015
## 436 337.9 50.0 31.3 51.1 0.0 2014-2015
## 437 347.0 49.3 30.8 29.9 0.0 2014-2015
## 438 346.9 47.9 32.0 51.7 0.0 2014-2015
## 439 358.9 56.9 40.1 7.4 0.0 2014-2015
## 440 341.1 48.7 31.0 71.2 0.0 2014-2015
## 441 341.9 51.2 33.7 7.0 0.0 2014-2015
## 442 348.8 40.3 23.7 6.8 0.0 2014-2015
## 443 353.7 54.7 36.7 51.1 0.0 2014-2015
## 444 353.0 40.6 25.3 6.8 0.0 2014-2015
## 445 349.4 59.0 41.7 30.0 0.0 2014-2015
## 446 346.0 56.4 39.9 28.0 0.0 2014-2015
## 447 353.1 50.4 32.5 29.4 0.0 2014-2015
## 448 341.3 50.2 30.7 28.7 0.0 2014-2015
## 449 353.7 43.1 25.0 7.2 0.0 2014-2015
## 450 354.6 46.0 30.3 6.8 0.0 2014-2015
## 451 341.6 44.3 25.9 51.3 0.0 2014-2015
## 452 363.1 54.9 38.4 29.8 0.0 2014-2015
## 453 336.0 47.2 30.5 52.4 0.0 2014-2015
## 454 351.2 42.2 24.8 30.6 0.0 2014-2015
## 455 358.4 42.9 25.8 7.1 0.0 2014-2015
## 456 359.3 48.8 29.2 7.5 0.0 2014-2015
## 457 354.4 53.4 36.9 77.9 0.0 2014-2015
## 458 354.5 42.8 26.4 29.9 0.0 2014-2015
## 459 364.7 38.3 21.2 7.7 0.0 2014-2015
## 460 342.8 50.7 32.3 52.5 0.0 2014-2015
## 461 354.7 48.0 30.8 56.0 0.0 2014-2015
## 462 352.0 48.5 28.7 54.4 0.0 2014-2015
## 463 347.9 57.1 39.9 98.4 0.0 2014-2015
## 464 351.1 48.7 26.9 7.1 0.0 2014-2015
## 465 348.7 44.9 28.6 30.0 0.0 2014-2015
## 466 359.4 42.9 25.2 54.7 0.0 2014-2015
## 467 361.7 42.7 22.9 54.7 0.0 2014-2015
## 468 355.1 42.4 22.6 54.6 0.0 2014-2015
## 469 361.0 49.1 29.4 56.3 0.0 2014-2015
## 470 361.0 48.5 32.0 30.9 0.0 2014-2015
## 471 358.0 45.5 26.2 78.5 0.0 2014-2015
## 472 356.8 46.2 28.6 30.5 0.0 2014-2015
## 473 375.7 47.1 30.0 32.6 0.0 2014-2015
## 474 351.1 55.1 36.5 7.1 0.0 2014-2015
## 475 352.3 41.6 26.4 6.7 0.0 2014-2015
## 476 365.0 50.5 31.1 7.2 0.0 2014-2015
## 477 360.1 40.8 22.0 54.5 0.0 2014-2015
## 478 360.3 62.7 44.3 33.3 0.0 2014-2015
## 479 377.7 52.0 31.8 32.4 0.0 2014-2015
## 480 368.7 58.6 41.1 31.1 0.0 2014-2015
## 481 363.8 52.3 35.2 83.9 0.0 2014-2015
## 482 374.2 45.6 26.9 7.5 0.0 2014-2015
## 483 370.7 47.2 30.2 7.6 0.0 2014-2015
## 484 379.3 49.1 34.5 7.4 0.0 2014-2015
## 485 360.3 49.7 32.5 52.1 0.0 2014-2015
## 486 367.5 46.4 27.3 55.4 0.0 2014-2015
## 487 374.6 41.2 21.5 79.0 0.0 2014-2015
## 488 454.2 44.1 23.7 29.4 0.0 2014-2015
## 489 453.4 44.9 23.9 29.4 0.0 2014-2015
## 490 478.6 42.4 21.8 7.2 0.0 2014-2015
## 491 460.7 58.0 34.6 28.3 0.0 2014-2015
## 492 453.9 53.9 33.0 29.6 0.0 2014-2015
## 493 450.1 50.9 27.4 51.1 0.0 2014-2015
## 494 445.6 53.6 35.1 28.3 0.0 2014-2015
## 495 457.2 48.4 28.1 7.5 0.0 2014-2015
## 496 465.4 58.6 39.8 31.3 0.0 2014-2015
## 497 462.4 46.6 26.7 50.7 0.0 2014-2015
## 498 472.5 48.5 25.9 7.8 0.0 2014-2015
## 499 454.1 44.8 23.8 76.2 0.0 2014-2015
## 500 457.8 55.8 32.8 31.0 0.0 2014-2015
## 501 461.4 45.4 25.7 49.9 0.0 2014-2015
## 502 462.1 51.7 34.2 28.6 0.0 2014-2015
## 503 458.0 57.6 35.5 50.5 0.0 2014-2015
## 504 466.3 46.8 24.7 30.6 0.0 2014-2015
## 505 459.9 62.6 42.0 28.9 0.0 2014-2015
## 506 459.7 47.3 27.6 51.0 0.0 2014-2015
## 507 453.7 57.6 32.9 74.9 0.0 2014-2015
## 508 476.5 49.7 28.5 30.0 0.0 2014-2015
## 509 481.8 41.1 19.6 7.3 0.0 2014-2015
## 510 466.7 47.0 27.0 28.0 0.0 2014-2015
## 511 471.8 50.2 29.6 47.3 0.0 2014-2015
## 512 468.3 49.2 28.7 31.3 0.0 2014-2015
## 513 457.3 57.7 36.7 51.9 0.0 2014-2015
## 514 463.8 51.1 25.7 52.9 0.0 2014-2015
## 515 464.5 55.6 33.4 52.5 0.0 2014-2015
## 516 472.8 49.7 26.9 30.8 0.0 2014-2015
## 517 451.6 70.1 50.5 53.3 0.0 2014-2015
## 518 468.9 49.8 29.1 8.6 0.0 2014-2015
## 519 471.1 47.2 26.5 30.0 0.0 2014-2015
## 520 474.3 66.0 46.9 30.0 0.0 2014-2015
## 521 468.8 42.8 22.0 7.6 0.0 2014-2015
## 522 474.9 62.2 40.2 7.7 0.0 2014-2015
## 523 451.4 53.1 32.8 53.4 0.0 2014-2015
## 524 476.4 53.3 32.6 31.4 0.0 2014-2015
## 525 451.7 78.8 56.2 54.5 0.0 2014-2015
## 526 477.6 56.8 36.0 31.7 0.0 2014-2015
## 527 470.7 54.6 31.5 74.4 0.0 2014-2015
## 528 476.2 48.7 27.5 29.4 0.0 2014-2015
## 529 470.4 45.4 25.2 52.2 0.0 2014-2015
## 530 464.6 53.7 29.2 29.9 0.0 2014-2015
## 531 459.6 50.4 30.7 51.1 0.0 2014-2015
## 532 471.7 60.3 39.5 78.4 0.0 2014-2015
## 533 476.1 56.8 34.4 50.6 0.0 2014-2015
## 534 457.2 52.3 29.0 79.3 0.0 2014-2015
## 535 472.0 46.9 25.1 32.9 0.0 2014-2015
## 536 474.6 52.6 31.3 30.6 0.0 2014-2015
## 537 479.5 57.2 33.5 29.7 0.0 2014-2015
## 538 496.2 49.1 25.4 32.2 0.0 2014-2015
## 539 474.5 75.6 48.0 74.7 0.0 2014-2015
## 540 473.8 54.9 30.8 54.0 0.0 2014-2015
## 541 480.0 64.1 41.4 31.2 0.0 2014-2015
## 542 479.6 47.1 26.1 30.4 0.0 2014-2015
## 543 488.2 71.1 49.9 31.1 0.0 2014-2015
## 544 484.6 48.3 25.3 57.1 0.0 2014-2015
## 545 492.0 62.8 39.5 55.6 0.0 2014-2015
## 546 475.7 53.3 31.2 52.2 0.0 2014-2015
## 547 490.1 63.3 40.7 54.8 0.0 2014-2015
## 548 489.9 68.2 46.3 53.6 0.0 2014-2015
## 549 470.4 74.1 53.7 77.2 0.0 2014-2015
## 550 490.7 57.8 35.6 33.3 0.0 2014-2015
## 551 463.9 47.5 25.9 55.8 0.0 2014-2015
## 552 486.9 59.9 38.7 56.8 0.0 2014-2015
## 553 475.0 65.9 44.0 100.6 0.0 2014-2015
## 554 485.3 64.9 42.7 54.0 0.0 2014-2015
## 555 494.8 70.0 48.3 55.9 0.0 2014-2015
## 556 485.5 67.2 45.1 54.7 0.0 2014-2015
## 557 482.7 61.5 36.7 56.0 0.0 2014-2015
## 558 481.6 51.8 28.2 106.4 0.0 2014-2015
## 559 475.5 62.3 42.5 100.4 0.0 2014-2015
## 560 491.6 60.2 36.8 56.9 0.0 2014-2015
## 561 482.3 67.1 46.3 77.4 0.0 2014-2015
## 562 491.1 52.0 28.0 58.9 0.0 2014-2015
## 563 496.0 52.1 29.3 33.2 0.0 2014-2015
## 564 465.7 64.2 40.3 78.8 0.0 2014-2015
## 565 478.3 52.9 32.3 76.9 0.0 2014-2015
## 566 497.5 54.2 29.2 56.0 0.0 2014-2015
## 567 498.1 47.5 23.9 54.3 0.0 2014-2015
## 568 518.0 64.8 41.7 32.1 0.0 2014-2015
## 569 510.5 50.4 28.1 56.8 0.0 2014-2015
## 570 479.3 75.1 50.8 78.3 0.0 2014-2015
## 571 496.4 65.4 39.4 53.5 0.0 2014-2015
## 572 486.0 52.8 29.6 102.4 0.0 2014-2015
## 573 518.7 47.8 20.6 59.7 0.0 2014-2015
## 574 511.9 62.1 39.4 83.2 0.0 2014-2015
## 575 499.8 84.4 62.2 101.8 0.0 2014-2015
## 576 486.0 55.9 32.8 55.2 0.0 2014-2015
## 577 490.0 58.0 32.9 113.1 0.0 2014-2015
## 578 517.4 54.0 31.3 58.4 0.0 2014-2015
## 579 513.9 58.4 37.3 57.0 0.0 2014-2015
## 580 505.8 65.7 39.7 84.6 0.0 2014-2015
## 581 507.1 56.3 33.5 85.3 0.0 2014-2015
## 582 511.3 73.9 47.3 83.3 0.0 2014-2015
## 583 478.6 89.6 64.4 102.0 0.0 2014-2015
## 584 520.5 52.0 28.5 58.3 0.0 2014-2015
## 585 519.3 63.2 35.1 55.9 0.0 2014-2015
## 586 539.7 67.7 39.7 8.6 0.0 2014-2015
## 587 530.0 72.8 47.5 35.4 0.0 2014-2015
## 588 500.8 63.4 40.7 106.6 0.0 2014-2015
## 589 536.1 71.2 46.3 59.1 0.0 2014-2015
## 590 499.3 64.0 41.8 140.5 0.0 2014-2015
## 591 556.9 58.0 31.8 33.7 0.0 2014-2015
## 592 518.1 70.9 47.1 115.1 0.0 2014-2015
## 593 538.9 115.9 91.5 35.9 0.0 2014-2015
## 594 540.8 72.6 50.9 87.0 0.0 2014-2015
## 595 516.1 73.1 47.6 88.7 0.0 2014-2015
## 596 539.8 73.7 49.0 34.6 0.0 2014-2015
## 597 520.2 83.9 59.0 35.1 0.0 2014-2015
## 598 565.3 61.5 36.2 64.9 0.0 2014-2015
## 599 547.5 64.9 38.8 94.8 0.0 2014-2015
## 600 501.6 59.6 37.5 230.4 0.0 2014-2015
## 601 566.5 65.5 43.3 88.5 0.0 2014-2015
## 602 543.2 89.8 64.6 60.5 0.0 2014-2015
## 603 571.9 76.0 52.7 65.7 0.0 2014-2015
## 604 555.1 65.2 36.9 36.9 0.0 2014-2015
## 605 538.8 76.7 53.5 142.1 0.0 2014-2015
## 606 541.1 70.8 44.5 90.6 0.0 2014-2015
## 607 543.1 85.6 57.8 94.4 0.0 2014-2015
## 608 529.6 46.7 NA 0.0 2281.8 2014-2015
## 609 547.7 54.9 NA 0.0 2345.3 2014-2015
## 610 534.1 50.6 NA 0.0 2313.5 2014-2015
## 611 545.3 52.8 NA 0.0 2359.6 2014-2015
## 612 540.7 48.1 NA 0.0 2326.2 2014-2015
## 613 553.2 44.8 NA 0.0 2326.8 2014-2015
## 614 542.0 47.8 NA 0.0 2342.3 2014-2015
## 615 532.7 49.5 NA 0.0 2302.3 2014-2015
## 616 572.0 49.6 NA 0.0 2404.3 2014-2015
## 617 541.7 63.2 NA 60.0 2324.9 2014-2015
## 618 541.3 49.1 NA 60.0 2315.1 2014-2015
## 619 551.4 50.8 NA 0.0 2361.5 2014-2015
## 620 560.7 42.2 NA 60.0 2389.6 2014-2015
## 621 524.9 52.7 NA 60.0 2280.2 2014-2015
## 622 545.1 49.4 NA 0.0 2385.7 2014-2015
## 623 534.8 53.2 NA 60.0 2335.8 2014-2015
## 624 565.2 62.8 NA 0.0 2430.9 2014-2015
## 625 563.3 53.3 NA 60.0 2376.5 2014-2015
## 626 537.0 53.6 NA 0.0 2351.3 2014-2015
## 627 534.5 49.2 NA 60.0 2312.0 2014-2015
## 628 558.8 50.5 NA 0.0 2432.8 2014-2015
## 629 541.5 56.5 NA 120.0 2325.5 2014-2015
## 630 537.0 52.3 NA 0.0 2332.5 2014-2015
## 631 546.9 51.8 NA 0.0 2385.4 2014-2015
## 632 558.7 50.2 NA 60.0 2388.1 2014-2015
## 633 563.1 56.1 NA 0.0 2437.0 2014-2015
## 634 542.8 51.2 NA 120.0 2341.1 2014-2015
## 635 555.2 57.9 NA 60.0 2396.8 2014-2015
## 636 557.5 54.1 NA 120.0 2413.7 2014-2015
## 637 550.1 56.4 NA 60.0 2367.5 2014-2015
## 638 547.2 50.2 NA 120.0 2329.6 2014-2015
## 639 564.0 63.5 NA 120.0 2425.1 2014-2015
## 640 553.8 48.4 NA 60.0 2360.5 2014-2015
## 641 545.2 51.6 NA 60.0 2368.0 2014-2015
## 642 545.4 48.2 NA 120.0 2328.7 2014-2015
## 643 554.3 58.4 NA 120.0 2388.3 2014-2015
## 644 561.2 53.9 NA 0.0 2385.7 2014-2015
## 645 556.2 61.6 NA 120.0 2398.7 2014-2015
## 646 571.1 59.7 NA 60.0 2425.8 2014-2015
## 647 559.9 50.8 NA 0.0 2393.0 2014-2015
## 648 552.5 48.4 NA 60.0 2390.8 2014-2015
## 649 553.5 48.7 NA 60.0 2409.6 2014-2015
## 650 590.7 68.7 NA 0.0 2557.8 2014-2015
## 651 546.1 47.8 NA 120.0 2323.1 2014-2015
## 652 560.8 55.9 NA 0.0 2434.8 2014-2015
## 653 569.6 54.1 NA 0.0 2476.8 2014-2015
## 654 563.5 51.1 NA 0.0 2441.5 2014-2015
## 655 533.2 51.9 NA 60.0 2334.2 2014-2015
## 656 582.8 59.3 NA 120.0 2483.1 2014-2015
## 657 551.7 55.3 NA 120.0 2350.3 2014-2015
## 658 567.7 60.1 NA 60.0 2440.2 2014-2015
## 659 582.0 52.5 NA 0.0 2500.3 2014-2015
## 660 581.8 52.6 NA 60.0 2499.1 2014-2015
## 661 554.2 49.6 NA 120.0 2359.0 2014-2015
## 662 569.4 55.7 NA 60.0 2463.8 2014-2015
## 663 592.4 49.6 NA 0.0 2505.2 2014-2015
## 664 595.1 48.3 NA 0.0 2482.9 2014-2015
## 665 575.1 47.4 NA 0.0 2405.8 2014-2015
## 666 570.5 53.6 NA 0.0 2417.1 2014-2015
## 667 584.9 53.5 NA 120.0 2488.2 2014-2015
## 668 566.3 53.0 NA 120.0 2391.2 2014-2015
## 669 549.8 48.0 NA 60.0 2374.1 2014-2015
## 670 561.7 55.6 NA 60.0 2438.8 2014-2015
## 671 575.2 58.7 NA 120.0 2445.7 2014-2015
## 672 576.6 50.5 NA 0.0 2484.5 2014-2015
## 673 582.3 64.7 NA 0.0 2500.1 2014-2015
## 674 539.1 54.7 NA 120.0 2346.6 2014-2015
## 675 594.5 48.5 NA 60.0 2473.4 2014-2015
## 676 566.7 56.3 NA 0.0 2453.8 2014-2015
## 677 596.5 51.9 NA 60.0 2543.5 2014-2015
## 678 584.2 57.7 NA 60.0 2490.5 2014-2015
## 679 578.6 60.5 NA 60.0 2502.8 2014-2015
## 680 560.2 52.4 NA 0.0 2415.1 2014-2015
## 681 575.0 47.1 NA 60.0 2457.2 2014-2015
## 682 575.9 51.3 NA 60.0 2407.1 2014-2015
## 683 603.7 61.9 NA 120.0 2572.0 2014-2015
## 684 576.0 57.6 NA 120.0 2481.8 2014-2015
## 685 595.7 57.8 NA 0.0 2580.7 2014-2015
## 686 574.9 55.6 NA 60.0 2421.4 2014-2015
## 687 614.9 66.8 NA 60.0 2605.8 2014-2015
## 688 577.7 72.4 NA 120.0 2500.6 2014-2015
## 689 567.7 50.2 NA 0.0 2494.1 2014-2015
## 690 586.6 52.0 NA 60.0 2496.0 2014-2015
## 691 620.3 62.9 NA 0.0 2640.6 2014-2015
## 692 571.9 57.4 NA 60.0 2467.5 2014-2015
## 693 590.8 62.1 NA 120.0 2492.3 2014-2015
## 694 582.5 60.5 NA 60.0 2474.9 2014-2015
## 695 575.6 52.9 NA 120.0 2429.2 2014-2015
## 696 604.1 58.4 NA 0.0 2583.4 2014-2015
## 697 595.3 64.8 NA 180.0 2555.4 2014-2015
## 698 559.5 48.5 NA 120.0 2401.0 2014-2015
## 699 575.4 54.7 NA 120.0 2458.0 2014-2015
## 700 581.5 56.7 NA 180.0 2464.6 2014-2015
## 701 633.7 79.0 NA 60.0 2731.2 2014-2015
## 702 603.1 54.9 NA 0.0 2587.5 2014-2015
## 703 610.8 63.1 NA 60.0 2595.1 2014-2015
## 704 569.9 55.8 NA 60.0 2458.7 2014-2015
## 705 599.6 57.2 NA 60.0 2570.8 2014-2015
## 706 590.2 57.8 NA 180.0 2520.2 2014-2015
## 707 626.2 76.0 NA 60.0 2744.5 2014-2015
## 708 588.2 58.3 NA 0.0 2552.0 2014-2015
## 709 600.5 57.8 NA 120.0 2552.2 2014-2015
## 710 596.0 63.2 NA 180.0 2536.7 2014-2015
## 711 602.6 59.9 NA 60.0 2592.5 2014-2015
## 712 618.0 72.4 NA 180.0 2655.2 2014-2015
## 713 575.4 55.3 NA 180.0 2469.1 2014-2015
## 714 631.9 53.6 NA 0.0 2724.3 2014-2015
## 715 585.6 66.6 NA 120.0 2551.6 2014-2015
## 716 595.0 50.4 NA 120.0 2522.1 2014-2015
## 717 617.5 60.2 NA 120.0 2660.8 2014-2015
## 718 665.4 61.0 NA 60.0 2847.3 2014-2015
## 719 587.0 61.5 NA 180.0 2519.9 2014-2015
## 720 639.6 53.5 NA 60.0 2713.6 2014-2015
## 721 619.1 52.7 NA 120.0 2620.8 2014-2015
## 722 614.2 60.0 NA 0.0 2690.4 2014-2015
## 723 594.1 59.7 NA 120.0 2581.1 2014-2015
## 724 628.6 56.8 NA 180.0 2668.0 2014-2015
## 725 654.0 57.8 NA 60.0 2818.6 2014-2015
## 726 607.0 64.2 NA 300.0 2576.9 2014-2015
## 727 625.0 57.6 NA 120.0 2655.9 2014-2015
## 728 393.5 43.8 23.3 6.8 0.0 2014-2015
## 729 405.5 46.0 23.8 7.3 0.0 2014-2015
## 730 393.3 40.0 22.2 6.7 0.0 2014-2015
## 731 413.4 41.5 20.6 7.3 0.0 2014-2015
## 732 385.6 45.4 25.0 6.4 0.0 2014-2015
## 733 389.8 42.0 19.9 6.9 0.0 2014-2015
## 734 392.7 39.8 18.5 6.9 0.0 2014-2015
## 735 398.4 42.3 22.1 6.7 0.0 2014-2015
## 736 413.1 40.4 18.2 27.4 0.0 2014-2015
## 737 388.6 39.5 16.8 26.1 0.0 2014-2015
## 738 397.3 42.5 22.0 28.5 0.0 2014-2015
## 739 402.1 49.9 28.6 6.9 0.0 2014-2015
## 740 404.6 50.9 28.9 6.4 0.0 2014-2015
## 741 399.0 45.4 24.9 26.2 0.0 2014-2015
## 742 387.2 43.8 23.0 29.4 0.0 2014-2015
## 743 399.4 49.8 28.3 27.4 0.0 2014-2015
## 744 397.4 46.8 26.3 6.8 0.0 2014-2015
## 745 402.7 42.9 20.3 26.6 0.0 2014-2015
## 746 410.3 45.5 23.1 49.4 0.0 2014-2015
## 747 407.1 58.2 37.5 28.1 0.0 2014-2015
## 748 415.8 50.1 27.0 26.6 0.0 2014-2015
## 749 405.6 44.1 24.9 6.6 0.0 2014-2015
## 750 415.8 42.6 21.1 6.7 0.0 2014-2015
## 751 405.2 48.2 25.5 27.8 0.0 2014-2015
## 752 404.5 46.9 25.4 27.5 0.0 2014-2015
## 753 420.3 43.9 22.3 30.5 0.0 2014-2015
## 754 407.1 44.2 25.0 29.0 0.0 2014-2015
## 755 421.4 45.3 26.5 7.0 0.0 2014-2015
## 756 419.1 43.4 23.1 28.9 0.0 2014-2015
## 757 422.5 47.0 27.2 51.6 0.0 2014-2015
## 758 327.9 47.5 27.3 7.3 0.0 2014-2015
## 759 322.6 45.6 24.5 6.6 0.0 2014-2015
## 760 331.0 44.2 22.6 7.5 0.0 2014-2015
## 761 325.9 50.9 28.6 6.7 0.0 2014-2015
## 762 324.2 43.9 22.8 27.2 0.0 2014-2015
## 763 327.5 47.2 26.7 28.4 0.0 2014-2015
## 764 324.7 39.6 20.2 28.9 0.0 2014-2015
## 765 323.9 47.2 26.4 6.9 0.0 2014-2015
## 766 328.9 47.8 27.6 6.9 0.0 2014-2015
## 767 328.4 44.1 24.2 50.8 0.0 2014-2015
## 768 328.7 43.5 23.7 6.5 0.0 2014-2015
## 769 322.9 42.2 22.0 6.9 0.0 2014-2015
## 770 325.2 45.1 23.9 27.8 0.0 2014-2015
## 771 322.5 46.8 24.7 28.7 0.0 2014-2015
## 772 320.2 46.5 25.2 28.0 0.0 2014-2015
## 773 337.5 46.9 27.1 27.5 0.0 2014-2015
## 774 327.8 51.9 31.4 28.6 0.0 2014-2015
## 775 329.7 43.4 23.9 6.9 0.0 2014-2015
## 776 320.9 46.9 24.5 28.7 0.0 2014-2015
## 777 334.8 46.2 26.5 48.5 0.0 2014-2015
## 778 322.3 47.0 25.7 28.9 0.0 2014-2015
## 779 326.2 45.1 24.8 28.8 0.0 2014-2015
## 780 341.8 43.8 24.5 49.2 0.0 2014-2015
## 781 328.6 46.9 27.5 27.5 0.0 2014-2015
## 782 327.1 44.1 23.1 7.6 0.0 2014-2015
## 783 332.4 45.5 25.2 8.0 0.0 2014-2015
## 784 332.9 46.6 27.2 7.2 0.0 2014-2015
## 785 322.0 50.5 30.4 70.0 0.0 2014-2015
## 786 329.1 52.9 30.7 52.4 0.0 2014-2015
## 787 326.4 53.9 36.2 29.0 0.0 2014-2015
## 788 334.3 43.4 21.6 52.5 0.0 2014-2015
## 789 340.0 46.8 26.8 30.8 0.0 2014-2015
## 790 330.6 43.6 21.4 29.3 0.0 2014-2015
## 791 331.0 46.5 24.9 29.6 0.0 2014-2015
## 792 333.4 44.8 26.7 48.9 0.0 2014-2015
## 793 343.0 47.0 24.0 29.7 0.0 2014-2015
## 794 319.5 46.2 27.0 50.4 0.0 2014-2015
## 795 330.8 46.2 26.8 29.3 0.0 2014-2015
## 796 324.3 51.0 30.1 77.8 0.0 2014-2015
## 797 334.9 45.6 24.6 51.5 0.0 2014-2015
## 798 337.9 55.7 34.4 74.8 0.0 2014-2015
## 799 338.6 43.4 24.6 30.0 0.0 2014-2015
## 800 343.1 44.1 22.9 29.7 0.0 2014-2015
## 801 336.6 48.1 27.4 30.1 0.0 2014-2015
## 802 335.7 44.0 24.0 29.8 0.0 2014-2015
## 803 326.9 53.7 28.5 29.9 0.0 2014-2015
## 804 337.4 47.5 27.4 52.0 0.0 2014-2015
## 805 329.8 45.2 22.4 52.5 0.0 2014-2015
## 806 343.6 48.3 25.3 7.3 0.0 2014-2015
## 807 337.0 56.5 35.0 55.0 0.0 2014-2015
## 808 328.7 49.1 27.7 56.9 0.0 2014-2015
## 809 344.8 47.7 25.9 6.8 0.0 2014-2015
## 810 339.3 50.8 30.6 77.9 0.0 2014-2015
## 811 347.8 53.7 31.5 30.9 0.0 2014-2015
## 812 358.6 46.8 25.2 7.5 0.0 2014-2015
## 813 351.9 45.2 23.9 51.0 0.0 2014-2015
## 814 351.8 48.6 28.0 52.2 0.0 2014-2015
## 815 355.9 41.1 20.1 76.9 0.0 2014-2015
## 816 360.0 43.8 22.8 31.1 0.0 2014-2015
## 817 353.2 50.1 30.7 30.8 0.0 2014-2015
## 818 461.2 50.1 33.0 4.4 0.0 2014-2015
## 819 469.7 43.3 28.0 4.2 0.0 2014-2015
## 820 473.2 39.7 23.0 4.3 0.0 2014-2015
## 821 464.4 51.2 36.0 24.3 0.0 2014-2015
## 822 474.2 48.4 30.0 4.7 0.0 2014-2015
## 823 475.9 45.0 29.0 4.3 0.0 2014-2015
## 824 479.4 41.0 23.0 4.4 0.0 2014-2015
## 825 478.5 48.6 32.0 4.4 0.0 2014-2015
## 826 473.6 42.8 26.0 24.4 0.0 2014-2015
## 827 462.6 43.4 25.0 45.4 0.0 2014-2015
## 828 479.5 43.7 27.0 4.7 0.0 2014-2015
## 829 475.8 51.7 34.0 24.4 0.0 2014-2015
## 830 477.9 45.8 28.0 26.3 0.0 2014-2015
## 831 485.3 45.4 28.0 4.5 0.0 2014-2015
## 832 473.8 44.5 27.0 4.4 0.0 2014-2015
## 833 479.2 44.5 28.0 24.9 0.0 2014-2015
## 834 483.4 36.6 20.0 4.5 0.0 2014-2015
## 835 483.9 42.1 26.0 4.2 0.0 2014-2015
## 836 478.7 38.5 20.0 25.0 0.0 2014-2015
## 837 474.1 44.9 27.0 25.6 0.0 2014-2015
## 838 477.1 46.7 29.0 26.0 0.0 2014-2015
## 839 479.1 44.5 27.0 25.2 0.0 2014-2015
## 840 481.1 42.7 25.0 26.2 0.0 2014-2015
## 841 484.2 44.7 27.0 25.8 0.0 2014-2015
## 842 484.9 46.7 29.0 26.5 0.0 2014-2015
## 843 484.0 36.2 20.0 26.1 0.0 2014-2015
## 844 477.1 44.9 26.0 25.4 0.0 2014-2015
## 845 482.1 46.4 28.0 4.8 0.0 2014-2015
## 846 479.3 43.8 27.0 27.1 0.0 2014-2015
## 847 491.1 42.6 23.0 4.4 0.0 2014-2015
## 848 494.5 41.6 24.0 4.5 0.0 2014-2015
## 849 489.4 50.5 33.0 4.0 0.0 2014-2015
## 850 493.1 51.4 33.0 4.7 0.0 2014-2015
## 851 496.2 43.1 28.0 24.5 0.0 2014-2015
## 852 480.3 37.4 21.0 45.3 0.0 2014-2015
## 853 474.8 47.6 31.0 25.0 0.0 2014-2015
## 854 487.2 45.0 27.0 25.5 0.0 2014-2015
## 855 473.5 42.6 25.0 4.3 0.0 2014-2015
## 856 490.7 42.9 25.0 27.3 0.0 2014-2015
## 857 481.0 49.8 31.0 45.4 0.0 2014-2015
## 858 491.2 45.7 30.0 25.5 0.0 2014-2015
## 859 472.1 48.3 30.0 24.3 0.0 2014-2015
## 860 471.9 38.6 21.0 47.6 0.0 2014-2015
## 861 484.1 49.3 32.0 46.9 0.0 2014-2015
## 862 489.3 42.8 23.0 25.8 0.0 2014-2015
## 863 493.2 51.2 32.0 25.9 0.0 2014-2015
## 864 490.4 45.7 28.0 49.2 0.0 2014-2015
## 865 485.9 45.2 28.0 47.0 0.0 2014-2015
## 866 480.1 50.5 33.0 70.0 0.0 2014-2015
## 867 483.0 51.6 32.0 49.5 0.0 2014-2015
## 868 481.8 51.3 33.0 44.8 0.0 2014-2015
## 869 503.3 45.2 25.0 4.8 0.0 2014-2015
## 870 479.7 47.1 29.0 47.9 0.0 2014-2015
## 871 502.4 51.3 30.0 4.7 0.0 2014-2015
## 872 506.7 45.1 27.0 26.2 0.0 2014-2015
## 873 475.0 42.6 26.0 24.9 0.0 2014-2015
## 874 489.0 43.0 25.0 4.4 0.0 2014-2015
## 875 485.3 44.9 27.0 72.3 0.0 2014-2015
## 876 487.2 45.0 28.0 47.6 0.0 2014-2015
## 877 494.4 42.9 25.0 48.1 0.0 2014-2015
## 878 497.0 48.3 25.0 48.4 0.0 2014-2015
## 879 505.0 53.0 34.0 25.9 0.0 2014-2015
## 880 498.4 50.1 31.0 4.2 0.0 2014-2015
## 881 505.1 46.4 28.0 4.7 0.0 2014-2015
## 882 494.9 54.3 36.0 25.9 0.0 2014-2015
## 883 495.2 59.9 43.0 27.5 0.0 2014-2015
## 884 492.6 43.9 27.0 28.9 0.0 2014-2015
## 885 499.4 50.6 33.0 26.5 0.0 2014-2015
## 886 499.9 49.3 31.0 26.3 0.0 2014-2015
## 887 487.8 51.5 32.0 49.4 0.0 2014-2015
## 888 499.9 51.8 33.0 72.6 0.0 2014-2015
## 889 504.9 46.9 29.0 26.2 0.0 2014-2015
## 890 510.9 53.9 35.0 48.9 0.0 2014-2015
## 891 532.6 44.5 26.0 4.6 0.0 2014-2015
## 892 503.9 47.9 29.0 28.4 0.0 2014-2015
## 893 496.0 47.9 28.0 49.3 0.0 2014-2015
## 894 516.3 47.9 28.0 51.4 0.0 2014-2015
## 895 519.4 52.8 34.0 26.8 0.0 2014-2015
## 896 497.6 46.8 28.0 4.6 0.0 2014-2015
## 897 521.5 41.4 23.0 26.7 0.0 2014-2015
## 898 499.6 46.9 27.0 73.8 0.0 2014-2015
## 899 512.6 48.1 27.0 48.1 0.0 2014-2015
## 900 524.8 48.5 29.0 52.6 0.0 2014-2015
## 901 512.2 63.8 44.0 74.0 0.0 2014-2015
## 902 492.8 48.0 28.0 75.8 0.0 2014-2015
## 903 487.3 61.4 43.0 75.5 0.0 2014-2015
## 904 529.6 41.4 23.0 56.8 0.0 2014-2015
## 905 518.8 42.6 24.0 29.5 0.0 2014-2015
## 906 533.6 56.1 36.0 52.9 0.0 2014-2015
## 907 522.3 55.3 34.0 102.7 0.0 2014-2015
## 908 543.4 50.8 30.0 53.2 0.0 2014-2015
## 909 556.1 49.6 29.0 28.2 0.0 2014-2015
## 910 571.9 58.4 38.0 30.4 0.0 2014-2015
## 911 531.6 50.2 29.0 78.4 0.0 2014-2015
## 912 410.8 41.6 25.0 28.4 0.0 2014-2015
## 913 406.6 44.1 27.0 5.1 0.0 2014-2015
## 914 419.8 48.9 31.0 6.6 0.0 2014-2015
## 915 405.3 44.7 26.0 5.8 0.0 2014-2015
## 916 410.0 43.7 25.0 5.5 0.0 2014-2015
## 917 407.5 44.0 27.0 28.7 0.0 2014-2015
## 918 416.3 45.1 26.0 5.2 0.0 2014-2015
## 919 407.2 48.5 29.0 28.5 0.0 2014-2015
## 920 419.4 45.4 27.0 4.8 0.0 2014-2015
## 921 419.6 45.6 25.0 4.9 0.0 2014-2015
## 922 412.4 51.3 32.0 27.8 0.0 2014-2015
## 923 416.5 45.8 27.0 29.0 0.0 2014-2015
## 924 419.8 47.2 28.0 28.5 0.0 2014-2015
## 925 415.6 46.8 29.0 5.0 0.0 2014-2015
## 926 418.7 46.3 27.0 51.7 0.0 2014-2015
## 927 428.8 47.8 28.0 29.1 0.0 2014-2015
## 928 426.6 49.1 30.0 31.1 0.0 2014-2015
## 929 418.6 50.5 30.0 29.4 0.0 2014-2015
## 930 422.3 43.8 28.0 30.0 0.0 2014-2015
## 931 424.5 46.3 31.0 29.9 0.0 2014-2015
## 932 417.3 47.3 28.0 28.3 0.0 2014-2015
## 933 420.4 51.2 33.0 28.1 0.0 2014-2015
## 934 416.5 46.1 25.0 30.4 0.0 2014-2015
## 935 417.5 54.1 36.0 27.5 0.0 2014-2015
## 936 435.2 39.1 21.0 27.0 0.0 2014-2015
## 937 429.8 44.1 26.0 27.9 0.0 2014-2015
## 938 422.5 45.4 26.0 83.4 0.0 2014-2015
## 939 434.2 49.8 31.0 5.8 0.0 2014-2015
## 940 420.8 58.9 40.0 5.6 0.0 2014-2015
## 941 426.3 46.3 28.0 53.7 0.0 2014-2015
## 942 422.9 53.1 33.0 5.6 0.0 2014-2015
## 943 441.1 41.7 23.0 29.9 0.0 2014-2015
## 944 431.2 49.1 31.0 30.7 0.0 2014-2015
## 945 431.1 50.2 31.0 78.9 0.0 2014-2015
## 946 425.9 37.5 19.0 5.0 0.0 2014-2015
## 947 407.3 48.2 30.0 30.5 0.0 2014-2015
## 948 416.8 52.1 32.0 4.8 0.0 2014-2015
## 949 421.4 48.1 28.0 30.7 0.0 2014-2015
## 950 424.0 46.3 26.0 30.0 0.0 2014-2015
## 951 419.6 44.7 25.0 29.5 0.0 2014-2015
## 952 412.1 51.5 33.0 77.1 0.0 2014-2015
## 953 421.2 55.2 33.0 79.4 0.0 2014-2015
## 954 420.6 48.2 28.0 28.3 0.0 2014-2015
## 955 426.6 47.4 28.0 4.7 0.0 2014-2015
## 956 429.2 42.5 25.0 29.1 0.0 2014-2015
## 957 450.7 44.8 25.0 31.0 0.0 2014-2015
## 958 439.7 55.5 34.0 60.1 0.0 2014-2015
## 959 436.4 51.5 32.0 56.7 0.0 2014-2015
## 960 443.4 46.1 27.0 5.0 0.0 2014-2015
## 961 433.0 43.4 24.0 55.8 0.0 2014-2015
## 962 427.7 55.3 34.0 55.8 0.0 2014-2015
## 963 447.6 43.7 25.0 31.2 0.0 2014-2015
## 964 446.6 43.1 23.0 32.4 0.0 2014-2015
## 965 438.1 53.1 32.0 62.0 0.0 2014-2015
## 966 757.3 45.9 24.0 3.7 0.0 2014-2015
## 967 755.2 49.7 29.0 25.9 0.0 2014-2015
## 968 756.4 62.8 41.0 24.9 0.0 2014-2015
## 969 753.1 56.5 34.0 50.6 0.0 2014-2015
## 970 751.0 55.3 33.0 3.9 0.0 2014-2015
## 971 743.0 58.6 37.0 25.7 0.0 2014-2015
## 972 754.3 48.9 27.0 27.1 0.0 2014-2015
## 973 762.9 47.2 26.0 27.0 0.0 2014-2015
## 974 762.1 49.1 28.0 4.0 0.0 2014-2015
## 975 796.6 67.4 46.0 3.2 0.0 2014-2015
## 976 767.8 52.2 30.0 3.5 0.0 2014-2015
## 977 786.7 40.4 19.0 3.4 0.0 2014-2015
## 978 759.8 48.0 27.0 49.6 0.0 2014-2015
## 979 751.5 49.4 28.0 51.8 0.0 2014-2015
## 980 758.1 55.1 32.0 54.4 0.0 2014-2015
## 981 766.8 48.0 26.0 3.5 0.0 2014-2015
## 982 747.2 51.2 30.0 50.6 0.0 2014-2015
## 983 785.9 63.8 42.0 27.1 0.0 2014-2015
## 984 761.8 57.3 35.0 51.1 0.0 2014-2015
## 985 761.9 46.4 25.0 26.5 0.0 2014-2015
## 986 788.0 49.6 27.0 3.6 0.0 2014-2015
## 987 775.9 55.5 34.0 50.9 0.0 2014-2015
## 988 761.8 47.5 25.0 3.5 0.0 2014-2015
## 989 798.4 55.5 32.0 28.7 0.0 2014-2015
## 990 774.3 48.0 27.0 27.9 0.0 2014-2015
## 991 787.0 64.9 43.0 28.2 0.0 2014-2015
## 992 771.6 54.0 31.0 54.0 0.0 2014-2015
## 993 781.7 46.1 26.0 26.2 0.0 2014-2015
## 994 787.3 53.4 33.0 27.6 0.0 2014-2015
## 995 750.8 65.7 45.0 47.2 0.0 2014-2015
## 996 772.4 52.6 27.0 52.4 0.0 2014-2015
## 997 783.4 69.8 50.0 50.6 0.0 2014-2015
## 998 766.5 61.0 42.0 49.2 0.0 2014-2015
## 999 776.6 50.3 28.0 79.1 0.0 2014-2015
## 1000 776.1 49.7 28.0 76.3 0.0 2014-2015
## 1001 780.2 49.9 28.0 3.7 0.0 2014-2015
## 1002 793.9 53.4 31.0 3.5 0.0 2014-2015
## 1003 787.0 48.3 30.0 51.1 0.0 2014-2015
## 1004 799.2 54.6 34.0 53.8 0.0 2014-2015
## 1005 807.9 52.8 29.0 29.3 0.0 2014-2015
## 1006 794.9 56.3 34.0 49.3 0.0 2014-2015
## 1007 763.5 62.8 42.0 72.2 0.0 2014-2015
## 1008 772.1 58.7 37.0 53.1 0.0 2014-2015
## 1009 792.8 59.7 38.0 52.0 0.0 2014-2015
## 1010 762.1 51.1 27.0 80.8 0.0 2014-2015
## 1011 784.4 54.7 31.0 28.8 0.0 2014-2015
## 1012 785.2 54.0 31.0 53.2 0.0 2014-2015
## 1013 801.0 73.6 51.0 29.3 0.0 2014-2015
## 1014 822.1 43.6 22.0 29.7 0.0 2014-2015
## 1015 785.9 49.9 28.0 27.2 0.0 2014-2015
## 1016 822.0 50.8 28.0 53.1 0.0 2014-2015
## 1017 835.5 51.7 30.0 3.9 0.0 2014-2015
## 1018 812.7 76.9 55.0 77.9 0.0 2014-2015
## 1019 793.3 54.2 32.0 52.4 0.0 2014-2015
## 1020 791.8 52.1 30.0 50.9 0.0 2014-2015
## 1021 764.0 50.1 26.0 81.0 0.0 2014-2015
## 1022 792.0 56.2 32.0 29.6 0.0 2014-2015
## 1023 768.5 60.1 37.0 81.1 0.0 2014-2015
## 1024 784.5 52.7 32.0 52.2 0.0 2014-2015
## 1025 807.0 53.9 32.0 3.6 0.0 2014-2015
## 1026 762.0 54.9 32.0 105.3 0.0 2014-2015
## 1027 822.6 48.4 25.0 3.7 0.0 2014-2015
## 1028 817.6 64.0 42.0 26.3 0.0 2014-2015
## 1029 777.9 55.8 34.0 104.6 0.0 2014-2015
## 1030 783.8 51.5 30.0 27.4 0.0 2014-2015
## 1031 780.9 65.0 42.0 54.3 0.0 2014-2015
## 1032 812.8 51.2 31.0 3.6 0.0 2014-2015
## 1033 818.8 59.2 37.0 28.5 0.0 2014-2015
## 1034 790.4 60.4 36.0 83.3 0.0 2014-2015
## 1035 780.0 69.8 50.0 97.8 0.0 2014-2015
## 1036 783.9 61.9 39.0 108.0 0.0 2014-2015
## 1037 789.7 67.6 44.0 77.6 0.0 2014-2015
## 1038 826.2 61.2 36.0 55.9 0.0 2014-2015
## 1039 791.7 62.6 40.0 80.7 0.0 2014-2015
## 1040 818.6 59.6 37.0 26.8 0.0 2014-2015
## 1041 795.5 64.1 39.0 85.4 0.0 2014-2015
## 1042 820.1 47.9 24.0 31.4 0.0 2014-2015
## 1043 857.7 64.8 41.0 4.0 0.0 2014-2015
## 1044 804.3 60.5 38.0 54.5 0.0 2014-2015
## 1045 791.0 59.6 40.0 26.2 0.0 2014-2015
## 1046 796.3 81.6 59.0 3.6 0.0 2014-2015
## 1047 827.8 57.0 35.0 58.8 0.0 2014-2015
## 1048 855.0 53.0 29.0 52.6 0.0 2014-2015
## 1049 848.2 75.7 53.0 80.4 0.0 2014-2015
## 1050 844.6 56.7 34.0 51.0 0.0 2014-2015
## 1051 847.4 59.5 35.0 87.2 0.0 2014-2015
## 1052 815.3 72.7 49.0 79.0 0.0 2014-2015
## 1053 823.8 74.1 50.0 109.2 0.0 2014-2015
## 1054 827.7 61.9 40.0 84.9 0.0 2014-2015
## 1055 865.7 78.3 54.0 29.0 0.0 2014-2015
## 1056 864.0 48.3 22.0 32.2 0.0 2014-2015
## 1057 847.7 58.2 35.0 58.8 0.0 2014-2015
## 1058 821.6 56.4 35.0 27.6 0.0 2014-2015
## 1059 846.5 73.2 48.0 86.1 0.0 2014-2015
## 1060 849.2 60.2 36.0 114.7 0.0 2014-2015
## 1061 958.2 104.4 81.0 3.7 0.0 2014-2015
## 1062 835.6 55.4 32.0 30.7 0.0 2014-2015
## 1063 833.6 68.5 43.0 87.4 0.0 2014-2015
## 1064 887.0 79.2 54.0 91.5 0.0 2014-2015
## 1065 397.6 93.6 68.0 4.4 0.0 2014-2015
## 1066 390.2 49.3 27.0 27.4 0.0 2014-2015
## 1067 410.0 46.3 22.0 50.8 0.0 2014-2015
## 1068 400.1 54.9 33.0 28.1 0.0 2014-2015
## 1069 400.3 52.4 29.0 52.3 0.0 2014-2015
## 1070 378.0 58.3 29.0 48.3 0.0 2014-2015
## 1071 393.4 52.2 25.0 51.2 0.0 2014-2015
## 1072 404.5 55.7 33.0 52.2 0.0 2014-2015
## 1073 397.1 55.5 33.0 51.0 0.0 2014-2015
## 1074 389.9 63.8 38.0 51.1 0.0 2014-2015
## 1075 406.5 48.0 24.0 28.9 0.0 2014-2015
## 1076 407.2 52.5 28.0 77.3 0.0 2014-2015
## 1077 405.8 72.7 51.0 55.6 0.0 2014-2015
## 1078 401.6 70.0 48.0 28.0 0.0 2014-2015
## 1079 421.6 53.5 32.0 3.9 0.0 2014-2015
## 1080 415.0 96.8 71.0 27.7 0.0 2014-2015
## 1081 412.0 52.6 31.0 77.7 0.0 2014-2015
## 1082 402.7 70.0 48.0 29.5 0.0 2014-2015
## 1083 406.3 49.1 27.0 27.5 0.0 2014-2015
## 1084 424.1 50.9 29.0 28.5 0.0 2014-2015
## 1085 404.6 54.1 32.0 78.3 0.0 2014-2015
## 1086 402.8 66.6 44.0 30.4 0.0 2014-2015
## 1087 391.6 83.8 60.0 80.5 0.0 2014-2015
## 1088 435.5 58.1 35.0 3.6 0.0 2014-2015
## 1089 401.8 77.1 54.0 76.4 0.0 2014-2015
## 1090 415.6 46.1 23.0 28.9 0.0 2014-2015
## 1091 402.6 69.8 47.0 57.5 0.0 2014-2015
## 1092 428.7 55.9 31.0 29.8 0.0 2014-2015
## 1093 422.3 52.3 30.0 81.4 0.0 2014-2015
## 1094 469.0 41.0 23.7 5.6 0.0 2014-2015
## 1095 477.7 45.2 26.1 5.9 0.0 2014-2015
## 1096 480.8 43.8 24.0 5.8 0.0 2014-2015
## 1097 479.3 47.7 30.0 5.9 0.0 2014-2015
## 1098 477.9 43.7 24.9 6.2 0.0 2014-2015
## 1099 475.1 48.6 28.1 6.1 0.0 2014-2015
## 1100 473.9 42.3 23.0 29.1 0.0 2014-2015
## 1101 468.8 42.9 23.7 28.9 0.0 2014-2015
## 1102 485.6 45.3 25.7 6.3 0.0 2014-2015
## 1103 486.4 42.5 22.2 29.8 0.0 2014-2015
## 1104 476.8 45.1 25.2 28.9 0.0 2014-2015
## 1105 485.8 46.1 25.8 6.1 0.0 2014-2015
## 1106 474.8 52.1 32.3 5.8 0.0 2014-2015
## 1107 489.8 44.9 25.1 6.0 0.0 2014-2015
## 1108 480.3 41.1 20.2 52.2 0.0 2014-2015
## 1109 483.0 43.1 22.5 6.1 0.0 2014-2015
## 1110 475.9 44.7 27.0 28.1 0.0 2014-2015
## 1111 477.9 50.5 31.0 6.4 0.0 2014-2015
## 1112 476.9 50.0 30.7 50.2 0.0 2014-2015
## 1113 483.9 45.9 25.0 29.7 0.0 2014-2015
## 1114 490.5 44.6 24.7 5.8 0.0 2014-2015
## 1115 484.6 44.5 24.2 6.2 0.0 2014-2015
## 1116 479.9 44.9 25.5 50.6 0.0 2014-2015
## 1117 487.3 49.2 29.5 28.4 0.0 2014-2015
## 1118 482.5 47.2 27.6 29.9 0.0 2014-2015
## 1119 484.8 48.5 28.8 6.2 0.0 2014-2015
## 1120 481.7 42.8 22.6 28.9 0.0 2014-2015
## 1121 487.5 45.6 25.7 29.2 0.0 2014-2015
## 1122 476.7 50.5 29.6 30.4 0.0 2014-2015
## 1123 485.8 48.9 27.7 29.5 0.0 2014-2015
## 1124 491.6 45.5 24.7 6.0 0.0 2014-2015
## 1125 498.4 52.1 32.9 6.0 0.0 2014-2015
## 1126 488.1 44.7 26.0 29.2 0.0 2014-2015
## 1127 482.7 57.3 36.5 30.0 0.0 2014-2015
## 1128 492.7 46.4 25.4 6.0 0.0 2014-2015
## 1129 487.8 51.2 29.3 31.8 0.0 2014-2015
## 1130 489.1 48.5 27.2 6.6 0.0 2014-2015
## 1131 496.5 47.8 25.9 30.8 0.0 2014-2015
## 1132 476.2 45.9 24.7 54.8 0.0 2014-2015
## 1133 494.3 45.4 23.9 54.9 0.0 2014-2015
## 1134 484.4 45.6 26.2 53.4 0.0 2014-2015
## 1135 482.9 46.7 26.4 54.3 0.0 2014-2015
## 1136 496.7 48.2 30.5 6.2 0.0 2014-2015
## 1137 503.9 47.3 24.6 6.6 0.0 2014-2015
## 1138 488.6 50.3 29.9 31.0 0.0 2014-2015
## 1139 486.8 43.6 25.7 52.3 0.0 2014-2015
## 1140 499.8 46.3 25.8 30.9 0.0 2014-2015
## 1141 493.7 52.6 30.5 30.1 0.0 2014-2015
## 1142 487.1 44.3 25.8 53.8 0.0 2014-2015
## 1143 503.5 44.4 23.9 30.7 0.0 2014-2015
## 1144 506.5 42.4 23.5 6.1 0.0 2014-2015
## 1145 478.9 49.4 28.8 105.3 0.0 2014-2015
## 1146 479.5 42.1 23.4 77.5 0.0 2014-2015
## 1147 503.8 55.7 36.2 6.7 0.0 2014-2015
## 1148 484.0 53.2 31.6 56.4 0.0 2014-2015
## 1149 487.8 54.1 33.5 76.8 0.0 2014-2015
## 1150 500.5 44.9 26.0 29.6 0.0 2014-2015
## 1151 508.1 47.5 26.2 29.3 0.0 2014-2015
## 1152 490.6 55.5 32.9 54.2 0.0 2014-2015
## 1153 512.9 47.5 26.1 31.0 0.0 2014-2015
## 1154 516.5 53.1 30.7 6.6 0.0 2014-2015
## 1155 487.5 52.1 32.7 54.1 0.0 2014-2015
## 1156 491.5 66.5 47.0 29.3 0.0 2014-2015
## 1157 492.2 54.4 33.4 54.1 0.0 2014-2015
## 1158 501.7 48.7 27.2 30.0 0.0 2014-2015
## 1159 494.8 45.8 23.6 79.8 0.0 2014-2015
## 1160 513.5 53.0 29.2 29.6 0.0 2014-2015
## 1161 513.7 59.2 38.5 31.7 0.0 2014-2015
## 1162 518.3 43.1 22.5 31.1 0.0 2014-2015
## 1163 498.5 57.3 35.0 30.6 0.0 2014-2015
## 1164 491.3 46.8 24.1 54.2 0.0 2014-2015
## 1165 511.2 51.2 29.7 54.6 0.0 2014-2015
## 1166 530.6 51.7 29.0 31.4 0.0 2014-2015
## 1167 524.0 49.7 29.6 6.2 0.0 2014-2015
## 1168 508.4 42.6 21.7 31.0 0.0 2014-2015
## 1169 507.3 45.3 24.5 6.2 0.0 2014-2015
## 1170 518.3 50.2 28.3 6.5 0.0 2014-2015
## 1171 524.1 50.5 27.8 32.7 0.0 2014-2015
## 1172 500.0 53.6 32.9 80.7 0.0 2014-2015
## 1173 480.0 47.7 26.9 80.7 0.0 2014-2015
## 1174 492.9 42.3 21.6 81.2 0.0 2014-2015
## 1175 520.5 53.5 34.1 30.7 0.0 2014-2015
## 1176 523.7 47.7 26.1 59.4 0.0 2014-2015
## 1177 501.5 59.2 35.4 56.1 0.0 2014-2015
## 1178 518.9 54.2 31.9 57.2 0.0 2014-2015
## 1179 508.0 45.1 25.1 82.6 0.0 2014-2015
## 1180 510.9 48.8 28.2 56.8 0.0 2014-2015
## 1181 504.2 45.8 24.5 30.7 0.0 2014-2015
## 1182 504.6 46.4 26.3 30.7 0.0 2014-2015
## 1183 506.8 50.8 29.6 81.0 0.0 2014-2015
## 1184 524.5 69.8 47.3 57.6 0.0 2014-2015
## 1185 520.9 46.6 26.5 30.4 0.0 2014-2015
## 1186 511.5 56.3 34.4 56.6 0.0 2014-2015
## 1187 542.7 49.5 24.7 34.2 0.0 2014-2015
## 1188 551.6 55.0 26.4 6.7 0.0 2014-2015
## 1189 538.6 52.4 30.6 32.5 0.0 2014-2015
## 1190 548.1 44.2 21.3 60.2 0.0 2014-2015
## 1191 543.1 47.4 23.6 83.1 0.0 2014-2015
## 1192 524.8 47.0 26.1 83.1 0.0 2014-2015
## 1193 630.9 44.7 22.9 0.0 2607.4 2014-2015
## 1194 622.6 45.3 25.9 0.0 2619.9 2014-2015
## 1195 628.5 58.1 39.0 0.0 2679.5 2014-2015
## 1196 636.7 56.0 35.7 0.0 2678.5 2014-2015
## 1197 633.4 55.2 34.5 60.0 2631.9 2014-2015
## 1198 607.8 40.4 21.4 0.0 2576.4 2014-2015
## 1199 627.1 47.4 26.6 0.0 2667.2 2014-2015
## 1200 619.1 37.7 18.2 60.0 2551.8 2014-2015
## 1201 650.2 43.5 22.4 0.0 2693.8 2014-2015
## 1202 651.7 54.4 32.8 60.0 2723.9 2014-2015
## 1203 626.0 48.2 28.4 0.0 2639.2 2014-2015
## 1204 633.7 53.1 30.6 60.0 2646.8 2014-2015
## 1205 650.9 43.6 26.2 60.0 2677.1 2014-2015
## 1206 645.0 52.4 31.6 120.0 2694.8 2014-2015
## 1207 619.0 43.0 21.5 120.0 2610.5 2014-2015
## 1208 643.6 55.3 34.3 120.0 2661.0 2014-2015
## 1209 626.9 48.3 25.4 60.0 2625.6 2014-2015
## 1210 654.9 55.7 33.0 60.0 2738.0 2014-2015
## 1211 662.1 48.9 28.6 60.0 2802.9 2014-2015
## 1212 644.0 58.5 36.7 120.0 2700.7 2014-2015
## 1213 657.0 47.2 27.0 0.0 2714.5 2014-2015
## 1214 634.1 55.9 35.6 120.0 2648.7 2014-2015
## 1215 629.9 45.9 24.6 120.0 2640.9 2014-2015
## 1216 613.6 67.6 47.3 120.0 2608.3 2014-2015
## 1217 655.0 48.2 26.7 0.0 2701.4 2014-2015
## 1218 644.9 52.1 31.0 60.0 2774.8 2014-2015
## 1219 622.8 48.0 27.5 60.0 2606.9 2014-2015
## 1220 646.1 51.2 28.9 120.0 2713.9 2014-2015
## 1221 635.4 48.9 27.0 120.0 2612.0 2014-2015
## 1222 626.8 49.8 27.6 120.0 2626.2 2014-2015
## 1223 623.1 57.1 36.6 120.0 2643.4 2014-2015
## 1224 682.6 48.4 26.7 60.0 2831.9 2014-2015
## 1225 642.2 72.7 49.5 180.0 2695.3 2014-2015
## 1226 660.0 50.6 27.5 0.0 2753.5 2014-2015
## 1227 639.9 50.6 30.1 120.0 2668.8 2014-2015
## 1228 655.0 45.2 24.7 60.0 2738.5 2014-2015
## 1229 683.2 48.3 28.4 60.0 2841.5 2014-2015
## 1230 653.5 52.7 31.6 120.0 2734.6 2014-2015
## 1231 642.2 49.5 25.3 180.0 2678.8 2014-2015
## 1232 687.8 50.3 27.6 0.0 2841.5 2014-2015
## 1233 656.9 56.1 33.0 60.0 2743.2 2014-2015
## 1234 643.9 47.5 27.2 120.0 2658.5 2014-2015
## 1235 626.1 46.4 24.7 120.0 2650.2 2014-2015
## 1236 668.1 44.5 24.9 60.0 2753.9 2014-2015
## 1237 644.8 46.9 25.0 60.0 2707.3 2014-2015
## 1238 669.5 48.4 27.0 120.0 2799.9 2014-2015
## 1239 682.9 46.2 23.5 60.0 2758.4 2014-2015
## 1240 662.1 50.2 28.9 180.0 2725.8 2014-2015
## 1241 666.7 58.9 38.0 0.0 2777.4 2014-2015
## 1242 665.1 47.4 24.3 120.0 2753.5 2014-2015
## 1243 663.8 42.6 21.2 60.0 2780.0 2014-2015
## 1244 683.2 47.5 23.5 60.0 2829.9 2014-2015
## 1245 666.9 49.8 28.3 180.0 2727.3 2014-2015
## 1246 629.6 42.7 21.7 120.0 2655.7 2014-2015
## 1247 706.2 45.5 23.4 0.0 2837.4 2014-2015
## 1248 644.0 50.5 28.7 60.0 2759.5 2014-2015
## 1249 705.4 70.3 29.5 0.0 2925.0 2014-2015
## 1250 672.1 45.0 23.4 60.0 2755.9 2014-2015
## 1251 617.1 47.0 27.3 60.0 2634.5 2014-2015
## 1252 666.7 47.2 22.3 0.0 2776.6 2014-2015
## 1253 682.6 46.0 23.7 120.0 2843.4 2014-2015
## 1254 688.1 52.5 29.6 120.0 2791.5 2014-2015
## 1255 671.1 51.8 29.6 60.0 2841.8 2014-2015
## 1256 644.4 53.4 30.5 120.0 2699.5 2014-2015
## 1257 696.6 53.0 31.8 60.0 2904.1 2014-2015
## 1258 689.1 42.5 19.4 0.0 2830.1 2014-2015
## 1259 660.2 50.3 29.6 60.0 2814.4 2014-2015
## 1260 675.9 50.9 27.7 60.0 2801.2 2014-2015
## 1261 644.8 56.4 33.4 60.0 2662.6 2014-2015
## 1262 674.2 50.9 28.2 0.0 2823.5 2014-2015
## 1263 689.9 45.3 22.4 60.0 2851.9 2014-2015
## 1264 667.4 58.3 36.9 180.0 2786.6 2014-2015
## 1265 670.9 49.9 27.4 60.0 2763.9 2014-2015
## 1266 657.8 52.9 32.2 0.0 2751.5 2014-2015
## 1267 637.0 42.1 19.5 180.0 2634.4 2014-2015
## 1268 678.1 46.6 23.9 0.0 2782.7 2014-2015
## 1269 666.7 45.3 23.4 60.0 2803.4 2014-2015
## 1270 692.1 49.0 23.9 60.0 2854.2 2014-2015
## 1271 655.6 52.8 29.2 180.0 2762.6 2014-2015
## 1272 659.0 51.5 31.0 180.0 2754.9 2014-2015
## 1273 700.4 82.2 57.6 60.0 2739.2 2014-2015
## 1274 648.6 48.4 27.7 60.0 2712.2 2014-2015
## 1275 660.8 48.5 26.9 60.0 2746.5 2014-2015
## 1276 628.2 43.7 21.5 180.0 2657.0 2014-2015
## 1277 678.2 51.9 30.0 120.0 2815.3 2014-2015
## 1278 685.5 47.7 26.0 120.0 2848.6 2014-2015
## 1279 714.2 54.2 32.7 120.0 2915.3 2014-2015
## 1280 721.7 54.1 30.0 60.0 3033.8 2014-2015
## 1281 684.0 60.2 36.7 180.0 2860.0 2014-2015
## 1282 666.0 55.0 32.4 180.0 2759.3 2014-2015
## 1283 689.7 43.5 21.3 60.0 2845.4 2014-2015
## 1284 712.9 49.2 27.5 120.0 2949.2 2014-2015
## 1285 659.9 48.0 25.4 180.0 2823.7 2014-2015
## 1286 699.7 52.3 32.4 60.0 2908.8 2014-2015
## 1287 675.2 49.6 28.1 60.0 2838.6 2014-2015
## 1288 700.1 54.6 29.5 120.0 2920.5 2014-2015
## 1289 714.9 49.6 25.0 180.0 2901.2 2014-2015
## 1290 719.1 50.8 28.6 60.0 2974.9 2014-2015
## 1291 711.1 60.0 37.8 60.0 2959.4 2014-2015
## 1292 346.8 41.3 21.8 31.1 0.0 2014-2015
## 1293 349.8 47.5 28.0 6.3 0.0 2014-2015
## 1294 348.9 44.1 22.1 31.4 0.0 2014-2015
## 1295 356.2 48.6 28.0 53.6 0.0 2014-2015
## 1296 345.1 48.9 36.6 29.7 0.0 2014-2015
## 1297 348.9 50.4 30.7 29.6 0.0 2014-2015
## 1298 346.8 49.7 31.8 29.4 0.0 2014-2015
## 1299 349.4 46.5 26.9 31.6 0.0 2014-2015
## 1300 358.6 46.4 27.1 30.2 0.0 2014-2015
## 1301 356.5 45.5 25.1 30.2 0.0 2014-2015
## 1302 358.7 51.3 35.1 6.9 0.0 2014-2015
## 1303 353.3 52.5 32.1 30.5 0.0 2014-2015
## 1304 362.0 60.6 38.6 30.3 0.0 2014-2015
## 1305 354.0 45.1 31.2 54.3 0.0 2014-2015
## 1306 366.7 54.9 35.6 6.2 0.0 2014-2015
## 1307 361.6 49.7 28.3 81.2 0.0 2014-2015
## 1308 363.7 44.3 24.9 31.7 0.0 2014-2015
## 1309 352.1 59.3 38.6 54.7 0.0 2014-2015
## 1310 361.9 58.1 39.4 57.0 0.0 2014-2015
## 1311 360.8 50.2 39.4 57.3 0.0 2014-2015
## 1312 364.9 48.4 27.3 7.0 0.0 2014-2015
## 1313 368.5 50.7 29.5 7.8 0.0 2014-2015
## 1314 365.9 51.3 30.6 57.0 0.0 2014-2015
## 1315 369.1 41.9 20.1 31.7 0.0 2014-2015
## 1316 363.9 56.5 37.5 30.3 0.0 2014-2015
## 1317 352.5 53.0 32.7 31.3 0.0 2014-2015
## 1318 366.6 43.5 23.7 7.0 0.0 2014-2015
## 1319 357.0 48.2 26.9 54.8 0.0 2014-2015
## 1320 369.7 52.7 30.7 31.4 0.0 2014-2015
## 1321 354.6 49.3 31.3 82.3 0.0 2014-2015
## 1322 360.9 52.0 34.5 30.6 0.0 2014-2015
## 1323 362.8 63.5 47.2 53.7 0.0 2014-2015
## 1324 370.3 58.4 37.3 58.8 0.0 2014-2015
## 1325 352.8 67.4 46.8 57.6 0.0 2014-2015
## 1326 359.2 58.7 40.1 82.0 0.0 2014-2015
## 1327 359.0 59.4 37.7 81.8 0.0 2014-2015
## 1328 367.0 48.5 29.5 30.2 0.0 2014-2015
## 1329 365.9 45.9 26.5 6.5 0.0 2014-2015
## 1330 378.4 52.0 30.1 7.5 0.0 2014-2015
## 1331 375.7 45.9 24.5 6.6 0.0 2014-2015
## 1332 363.0 57.0 37.2 55.6 0.0 2014-2015
## 1333 369.8 56.9 35.4 30.3 0.0 2014-2015
## 1334 367.6 53.5 36.4 57.2 0.0 2014-2015
## 1335 363.1 48.9 27.0 56.8 0.0 2014-2015
## 1336 375.8 45.0 24.5 59.8 0.0 2014-2015
## 1337 362.4 54.1 35.3 57.7 0.0 2014-2015
## 1338 379.8 47.1 30.2 56.8 0.0 2014-2015
## 1339 371.5 58.2 40.4 32.1 0.0 2014-2015
## 1340 381.0 51.0 32.7 31.8 0.0 2014-2015
## 1341 367.3 53.0 32.2 58.0 0.0 2014-2015
## 1342 371.1 56.4 35.4 59.2 0.0 2014-2015
## 1343 382.8 54.1 37.0 31.6 0.0 2014-2015
## 1344 369.1 49.9 32.2 80.6 0.0 2014-2015
## 1345 373.7 50.9 31.2 55.4 0.0 2014-2015
## 1346 373.5 62.4 43.5 62.2 0.0 2014-2015
## 1347 375.6 72.1 52.3 113.4 0.0 2014-2015
## 1348 380.4 83.8 61.0 33.2 0.0 2014-2015
## 1349 371.9 49.8 28.1 117.6 0.0 2014-2015
## 1350 382.2 49.8 28.7 59.3 0.0 2014-2015
## 1351 454.1 43.4 34.9 8.3 0.0 2014-2015
## 1352 459.1 40.1 24.9 8.7 0.0 2014-2015
## 1353 457.7 44.1 28.7 8.3 0.0 2014-2015
## 1354 451.6 41.9 25.3 8.4 0.0 2014-2015
## 1355 458.0 37.6 22.3 8.7 0.0 2014-2015
## 1356 459.9 46.7 29.2 8.8 0.0 2014-2015
## 1357 462.2 42.8 27.3 8.8 0.0 2014-2015
## 1358 464.1 37.2 21.2 30.7 0.0 2014-2015
## 1359 475.4 41.5 25.9 7.9 0.0 2014-2015
## 1360 468.2 38.3 21.6 8.7 0.0 2014-2015
## 1361 456.5 40.9 22.9 30.6 0.0 2014-2015
## 1362 470.5 43.5 26.3 9.0 0.0 2014-2015
## 1363 455.8 42.3 26.2 29.0 0.0 2014-2015
## 1364 463.9 44.5 28.4 29.8 0.0 2014-2015
## 1365 462.2 41.7 24.7 30.3 0.0 2014-2015
## 1366 470.5 44.9 29.2 8.5 0.0 2014-2015
## 1367 469.6 42.6 26.1 8.8 0.0 2014-2015
## 1368 476.4 45.3 28.5 8.4 0.0 2014-2015
## 1369 454.7 41.5 25.8 28.7 0.0 2014-2015
## 1370 468.9 37.6 21.5 8.5 0.0 2014-2015
## 1371 464.4 44.8 28.2 8.9 0.0 2014-2015
## 1372 469.6 38.2 20.8 30.4 0.0 2014-2015
## 1373 460.7 40.7 24.5 51.1 0.0 2014-2015
## 1374 474.2 42.0 25.9 29.9 0.0 2014-2015
## 1375 468.2 39.9 22.9 30.6 0.0 2014-2015
## 1376 463.6 39.8 23.4 52.6 0.0 2014-2015
## 1377 462.1 44.3 29.6 29.9 0.0 2014-2015
## 1378 472.3 43.5 26.4 8.7 0.0 2014-2015
## 1379 468.3 40.8 25.0 8.5 0.0 2014-2015
## 1380 465.7 40.3 24.6 31.2 0.0 2014-2015
## 1381 476.8 38.7 22.5 52.2 0.0 2014-2015
## 1382 462.7 38.4 21.7 9.2 0.0 2014-2015
## 1383 478.9 46.4 29.8 30.8 0.0 2014-2015
## 1384 461.4 44.9 28.3 52.0 0.0 2014-2015
## 1385 469.4 40.3 22.8 30.7 0.0 2014-2015
## 1386 479.1 46.1 28.5 8.4 0.0 2014-2015
## 1387 458.4 42.2 25.1 79.8 0.0 2014-2015
## 1388 484.0 43.2 26.7 9.0 0.0 2014-2015
## 1389 476.2 42.6 24.8 8.7 0.0 2014-2015
## 1390 475.2 42.2 25.7 8.6 0.0 2014-2015
## 1391 473.5 42.5 25.1 9.0 0.0 2014-2015
## 1392 485.6 43.5 26.4 8.4 0.0 2014-2015
## 1393 485.1 38.2 21.5 8.8 0.0 2014-2015
## 1394 461.7 47.8 31.1 29.9 0.0 2014-2015
## 1395 487.6 40.2 25.2 8.3 0.0 2014-2015
## 1396 484.4 45.0 27.3 31.3 0.0 2014-2015
## 1397 471.8 48.4 32.0 54.1 0.0 2014-2015
## 1398 470.8 43.9 26.2 55.6 0.0 2014-2015
## 1399 468.1 41.9 24.6 31.0 0.0 2014-2015
## 1400 482.0 46.3 25.9 30.5 0.0 2014-2015
## 1401 467.1 43.8 27.2 8.6 0.0 2014-2015
## 1402 480.8 37.5 19.9 32.0 0.0 2014-2015
## 1403 493.7 37.4 21.9 8.7 0.0 2014-2015
## 1404 480.1 48.4 30.5 31.6 0.0 2014-2015
## 1405 487.4 45.5 27.7 9.2 0.0 2014-2015
## 1406 476.5 46.7 30.9 53.7 0.0 2014-2015
## 1407 485.6 41.8 26.0 8.8 0.0 2014-2015
## 1408 499.5 43.5 26.1 9.4 0.0 2014-2015
## 1409 481.5 44.3 27.2 31.9 0.0 2014-2015
## 1410 461.5 45.2 29.6 31.6 0.0 2014-2015
## 1411 479.1 44.3 27.0 31.9 0.0 2014-2015
## 1412 480.2 46.4 28.8 33.9 0.0 2014-2015
## 1413 481.1 44.5 25.4 55.0 0.0 2014-2015
## 1414 480.6 44.9 28.3 31.1 0.0 2014-2015
## 1415 486.7 45.9 28.2 32.3 0.0 2014-2015
## 1416 497.4 43.7 24.3 8.9 0.0 2014-2015
## 1417 491.3 43.1 25.4 9.2 0.0 2014-2015
## 1418 479.6 45.7 28.7 75.5 0.0 2014-2015
## 1419 479.6 46.0 28.1 31.5 0.0 2014-2015
## 1420 481.0 47.8 30.7 52.3 0.0 2014-2015
## 1421 470.7 46.2 28.8 77.7 0.0 2014-2015
## 1422 495.5 43.2 23.4 33.3 0.0 2014-2015
## 1423 497.1 46.2 28.2 33.7 0.0 2014-2015
## 1424 481.9 42.7 25.2 54.5 0.0 2014-2015
## 1425 486.1 53.5 35.3 55.0 0.0 2014-2015
## 1426 488.2 54.9 36.9 32.7 0.0 2014-2015
## 1427 493.0 44.6 28.0 32.3 0.0 2014-2015
## 1428 487.1 42.3 24.8 31.3 0.0 2014-2015
## 1429 479.8 43.0 26.9 33.3 0.0 2014-2015
## 1430 488.2 47.8 30.7 60.7 0.0 2014-2015
## 1431 497.8 51.7 33.7 32.6 0.0 2014-2015
## 1432 494.5 47.9 29.6 55.4 0.0 2014-2015
## 1433 496.0 40.8 23.8 54.9 0.0 2014-2015
## 1434 508.6 41.6 24.6 32.9 0.0 2014-2015
## 1435 478.3 45.6 24.3 80.8 0.0 2014-2015
## 1436 505.5 53.7 34.9 32.5 0.0 2014-2015
## 1437 477.8 42.8 27.0 50.7 0.0 2014-2015
## 1438 490.2 48.2 30.7 33.0 0.0 2014-2015
## 1439 500.6 50.1 31.4 9.3 0.0 2014-2015
## 1440 498.9 40.9 22.4 36.2 0.0 2014-2015
## 1441 500.7 42.5 21.9 55.6 0.0 2014-2015
## 1442 486.4 50.6 33.1 78.2 0.0 2014-2015
## 1443 536.0 36.3 18.2 10.0 0.0 2014-2015
## 1444 514.5 45.0 27.6 33.3 0.0 2014-2015
## 1445 524.6 49.3 29.2 35.5 0.0 2014-2015
## 1446 495.0 49.8 30.9 81.4 0.0 2014-2015
## 1447 514.7 48.0 30.4 55.9 0.0 2014-2015
## 1448 572.3 54.3 33.2 0.0 2473.7 2014-2015
## 1449 580.6 44.9 22.7 0.0 2477.7 2014-2015
## 1450 590.2 45.2 22.8 0.0 2501.7 2014-2015
## 1451 578.9 49.7 24.9 60.0 2450.6 2014-2015
## 1452 600.5 51.1 28.0 0.0 2552.6 2014-2015
## 1453 597.4 47.2 25.8 0.0 2505.1 2014-2015
## 1454 583.5 47.6 28.6 0.0 2453.8 2014-2015
## 1455 589.1 50.7 30.1 0.0 2529.5 2014-2015
## 1456 596.2 49.5 28.0 0.0 2520.5 2014-2015
## 1457 605.4 48.5 26.7 0.0 2584.8 2014-2015
## 1458 582.2 44.9 23.1 0.0 2481.3 2014-2015
## 1459 601.0 46.1 23.8 60.0 2548.3 2014-2015
## 1460 614.8 43.1 21.3 0.0 2543.2 2014-2015
## 1461 581.8 55.4 32.0 60.0 2499.8 2014-2015
## 1462 585.6 47.4 25.0 60.0 2495.0 2014-2015
## 1463 592.3 45.7 24.1 0.0 2502.4 2014-2015
## 1464 603.6 50.4 27.3 0.0 2563.0 2014-2015
## 1465 599.7 58.9 33.0 0.0 2560.1 2014-2015
## 1466 596.3 48.5 21.1 120.0 2499.2 2014-2015
## 1467 605.6 47.7 26.1 0.0 2556.4 2014-2015
## 1468 609.0 52.6 31.0 0.0 2625.5 2014-2015
## 1469 605.7 62.4 37.9 60.0 2567.9 2014-2015
## 1470 600.8 50.0 27.4 60.0 2529.3 2014-2015
## 1471 609.7 45.1 22.9 0.0 2582.7 2014-2015
## 1472 606.9 48.3 27.2 0.0 2540.7 2014-2015
## 1473 603.1 61.0 38.9 0.0 2594.4 2014-2015
## 1474 591.3 48.6 26.0 60.0 2488.0 2014-2015
## 1475 610.0 48.0 25.2 0.0 2567.4 2014-2015
## 1476 603.7 44.2 20.5 60.0 2550.8 2014-2015
## 1477 622.1 54.9 32.1 60.0 2608.5 2014-2015
## 1478 610.6 44.6 21.1 0.0 2553.1 2014-2015
## 1479 623.7 44.4 21.8 0.0 2606.5 2014-2015
## 1480 622.2 53.7 31.7 0.0 2630.6 2014-2015
## 1481 604.8 50.0 24.3 120.0 2561.7 2014-2015
## 1482 599.6 49.8 26.1 120.0 2533.9 2014-2015
## 1483 595.9 50.4 30.2 0.0 2533.2 2014-2015
## 1484 590.4 50.0 26.0 0.0 2533.0 2014-2015
## 1485 617.8 46.4 23.4 0.0 2581.5 2014-2015
## 1486 636.5 49.3 25.5 0.0 2640.2 2014-2015
## 1487 619.7 48.5 26.4 0.0 2595.8 2014-2015
## 1488 605.8 55.0 29.9 0.0 2544.7 2014-2015
## 1489 629.7 51.1 25.8 0.0 2595.5 2014-2015
## 1490 600.5 54.7 31.2 120.0 2558.2 2014-2015
## 1491 611.6 53.4 30.4 120.0 2567.8 2014-2015
## 1492 616.2 47.5 25.0 0.0 2608.2 2014-2015
## 1493 584.4 49.8 27.8 0.0 2518.8 2014-2015
## 1494 588.9 49.2 28.0 180.0 2525.5 2014-2015
## 1495 613.6 50.8 26.4 60.0 2562.9 2014-2015
## 1496 601.4 58.2 34.3 180.0 2567.7 2014-2015
## 1497 594.2 49.1 27.4 0.0 2534.2 2014-2015
## 1498 651.4 50.7 26.5 0.0 2710.8 2014-2015
## 1499 583.5 49.4 27.8 60.0 2546.2 2014-2015
## 1500 627.9 49.9 26.4 0.0 2642.8 2014-2015
## 1501 627.1 48.9 25.7 60.0 2589.7 2014-2015
## 1502 632.9 46.9 25.0 0.0 2641.9 2014-2015
## 1503 639.7 47.7 24.1 60.0 2656.8 2014-2015
## 1504 642.7 48.8 23.4 0.0 2704.7 2014-2015
## 1505 626.9 49.7 27.3 0.0 2649.3 2014-2015
## 1506 635.9 53.3 28.7 0.0 2716.2 2014-2015
## 1507 625.5 52.1 28.2 0.0 2630.0 2014-2015
## 1508 610.4 54.5 32.2 60.0 2585.4 2014-2015
## 1509 621.9 53.4 30.6 120.0 2639.1 2014-2015
## 1510 630.1 49.0 23.9 0.0 2662.2 2014-2015
## 1511 614.3 47.6 22.8 60.0 2605.7 2014-2015
## 1512 640.2 51.8 28.2 0.0 2650.0 2014-2015
## 1513 647.4 50.9 26.6 0.0 2668.6 2014-2015
## 1514 622.2 48.7 25.8 60.0 2629.4 2014-2015
## 1515 662.5 44.6 21.7 0.0 2714.2 2014-2015
## 1516 625.3 49.3 25.0 60.0 2591.1 2014-2015
## 1517 609.0 50.1 26.2 180.0 2545.9 2014-2015
## 1518 658.5 49.4 24.0 0.0 2724.1 2014-2015
## 1519 641.5 52.7 28.4 0.0 2701.1 2014-2015
## 1520 640.2 61.8 38.0 0.0 2717.4 2014-2015
## 1521 651.9 52.0 27.0 60.0 2710.9 2014-2015
## 1522 666.9 46.6 22.1 60.0 2808.2 2014-2015
## 1523 636.4 54.8 29.7 60.0 2677.9 2014-2015
## 1524 641.6 52.0 27.7 60.0 2702.9 2014-2015
## 1525 618.0 51.4 26.1 0.0 2598.6 2014-2015
## 1526 627.1 55.5 32.0 120.0 2652.9 2014-2015
## 1527 633.4 47.1 23.7 60.0 2655.5 2014-2015
## 1528 656.4 53.2 30.9 0.0 2713.7 2014-2015
## 1529 631.6 49.5 25.9 120.0 2627.6 2014-2015
## 1530 670.1 70.2 44.5 120.0 2782.9 2014-2015
## 1531 666.0 50.8 27.0 0.0 2793.8 2014-2015
## 1532 596.3 51.2 32.9 120.0 2565.9 2014-2015
## 1533 653.0 58.0 32.5 120.0 2742.0 2014-2015
## 1534 690.9 51.8 28.6 60.0 2883.6 2014-2015
## 1535 669.8 46.8 22.2 60.0 2800.8 2014-2015
## 1536 638.0 55.4 30.5 120.0 2703.8 2014-2015
## 1537 642.3 56.0 31.0 60.0 2695.4 2014-2015
## 1538 656.7 53.3 27.8 60.0 2758.6 2014-2015
## 1539 671.0 54.9 22.6 0.0 2829.8 2014-2015
## 1540 688.6 62.2 37.2 60.0 2871.4 2014-2015
## 1541 734.0 59.8 32.3 0.0 3004.4 2014-2015
## 1542 433.6 42.7 23.0 5.0 0.0 2014-2015
## 1543 432.1 45.8 27.0 5.2 0.0 2014-2015
## 1544 444.7 42.8 24.0 5.6 0.0 2014-2015
## 1545 435.5 46.2 28.0 27.2 0.0 2014-2015
## 1546 442.6 44.1 24.0 7.3 0.0 2014-2015
## 1547 448.7 43.0 25.0 5.7 0.0 2014-2015
## 1548 448.4 42.1 23.0 5.6 0.0 2014-2015
## 1549 446.7 45.3 26.0 5.5 0.0 2014-2015
## 1550 448.6 46.2 26.0 5.4 0.0 2014-2015
## 1551 439.9 37.4 19.0 51.1 0.0 2014-2015
## 1552 451.2 42.6 23.0 5.7 0.0 2014-2015
## 1553 449.3 39.0 23.0 25.9 0.0 2014-2015
## 1554 447.6 43.3 25.0 6.0 0.0 2014-2015
## 1555 439.7 41.6 23.0 47.8 0.0 2014-2015
## 1556 451.8 49.2 31.0 5.3 0.0 2014-2015
## 1557 450.1 43.5 26.0 5.3 0.0 2014-2015
## 1558 449.8 45.6 26.0 5.2 0.0 2014-2015
## 1559 442.3 46.1 26.0 5.3 0.0 2014-2015
## 1560 449.7 52.5 33.0 6.0 0.0 2014-2015
## 1561 449.0 49.3 31.0 27.5 0.0 2014-2015
## 1562 461.9 46.5 25.0 5.6 0.0 2014-2015
## 1563 445.2 48.4 29.0 28.1 0.0 2014-2015
## 1564 449.0 50.9 32.0 28.5 0.0 2014-2015
## 1565 439.1 40.0 22.0 49.9 0.0 2014-2015
## 1566 456.0 41.3 21.0 5.6 0.0 2014-2015
## 1567 444.4 43.4 24.0 49.3 0.0 2014-2015
## 1568 446.2 46.7 28.0 5.9 0.0 2014-2015
## 1569 454.5 51.6 32.0 26.4 0.0 2014-2015
## 1570 454.6 46.6 27.0 28.4 0.0 2014-2015
## 1571 448.8 50.1 32.0 5.6 0.0 2014-2015
## 1572 460.4 43.4 23.0 5.5 0.0 2014-2015
## 1573 456.5 50.7 32.0 5.8 0.0 2014-2015
## 1574 454.0 44.5 26.0 29.0 0.0 2014-2015
## 1575 452.2 47.3 28.0 27.9 0.0 2014-2015
## 1576 466.1 50.3 31.0 5.6 0.0 2014-2015
## 1577 446.4 46.0 27.0 53.0 0.0 2014-2015
## 1578 452.9 51.6 33.0 27.2 0.0 2014-2015
## 1579 446.9 43.8 26.0 50.2 0.0 2014-2015
## 1580 451.6 49.6 29.0 27.7 0.0 2014-2015
## 1581 456.6 45.6 25.0 28.5 0.0 2014-2015
## 1582 448.7 43.8 26.0 27.8 0.0 2014-2015
## 1583 461.9 42.4 24.0 5.3 0.0 2014-2015
## 1584 450.0 45.6 26.0 28.0 0.0 2014-2015
## 1585 448.4 44.3 25.0 28.9 0.0 2014-2015
## 1586 459.6 43.2 23.0 5.5 0.0 2014-2015
## 1587 470.3 40.4 21.0 5.7 0.0 2014-2015
## 1588 445.3 42.4 23.0 51.8 0.0 2014-2015
## 1589 445.1 52.8 33.0 29.1 0.0 2014-2015
## 1590 459.1 49.8 31.0 28.7 0.0 2014-2015
## 1591 459.8 44.3 25.0 6.0 0.0 2014-2015
## 1592 446.1 46.7 27.0 27.8 0.0 2014-2015
## 1593 465.8 44.9 27.0 28.3 0.0 2014-2015
## 1594 463.5 44.5 23.0 28.9 0.0 2014-2015
## 1595 448.9 42.3 26.0 29.5 0.0 2014-2015
## 1596 465.0 45.9 26.0 27.6 0.0 2014-2015
## 1597 455.0 50.3 30.0 51.9 0.0 2014-2015
## 1598 463.1 49.0 31.0 29.5 0.0 2014-2015
## 1599 460.8 49.5 31.0 28.6 0.0 2014-2015
## 1600 461.3 49.0 30.0 28.2 0.0 2014-2015
## 1601 462.7 46.6 28.0 28.6 0.0 2014-2015
## 1602 452.6 45.9 27.0 28.6 0.0 2014-2015
## 1603 447.3 44.4 25.0 5.8 0.0 2014-2015
## 1604 450.9 52.2 32.0 50.3 0.0 2014-2015
## 1605 460.6 50.7 31.0 5.9 0.0 2014-2015
## 1606 458.0 54.1 35.0 51.6 0.0 2014-2015
## 1607 475.2 42.6 24.0 29.9 0.0 2014-2015
## 1608 468.8 41.9 22.0 5.5 0.0 2014-2015
## 1609 465.3 45.1 26.0 28.6 0.0 2014-2015
## 1610 466.0 53.7 36.0 30.2 0.0 2014-2015
## 1611 465.7 42.5 24.0 52.0 0.0 2014-2015
## 1612 481.8 50.9 31.0 6.0 0.0 2014-2015
## 1613 455.5 51.9 33.0 73.4 0.0 2014-2015
## 1614 469.1 48.9 30.0 29.5 0.0 2014-2015
## 1615 467.7 49.2 30.0 55.5 0.0 2014-2015
## 1616 470.2 48.8 30.0 28.9 0.0 2014-2015
## 1617 454.7 49.8 32.0 28.7 0.0 2014-2015
## 1618 462.7 40.9 24.0 28.6 0.0 2014-2015
## 1619 485.5 43.7 23.0 31.5 0.0 2014-2015
## 1620 468.0 40.4 21.0 54.7 0.0 2014-2015
## 1621 471.5 46.7 27.0 29.7 0.0 2014-2015
## 1622 476.7 50.3 30.0 53.4 0.0 2014-2015
## 1623 474.5 63.5 42.0 30.5 0.0 2014-2015
## 1624 471.2 50.8 30.0 6.6 0.0 2014-2015
## 1625 472.3 45.7 26.0 53.3 0.0 2014-2015
## 1626 460.8 51.1 31.0 31.3 0.0 2014-2015
## 1627 475.3 65.4 46.0 51.3 0.0 2014-2015
## 1628 469.3 48.1 28.0 78.6 0.0 2014-2015
## 1629 462.3 49.8 31.0 55.1 0.0 2014-2015
## 1630 478.5 48.4 28.0 55.4 0.0 2014-2015
## 1631 492.4 51.0 30.0 30.6 0.0 2014-2015
## 1632 506.3 51.7 29.0 55.9 0.0 2014-2015
## 1633 465.7 44.4 25.0 54.0 0.0 2014-2015
## 1634 489.9 49.5 28.0 55.7 0.0 2014-2015
## 1635 489.3 57.5 37.0 5.8 0.0 2014-2015
## 1636 461.6 42.6 23.0 53.9 0.0 2014-2015
## 1637 485.7 46.8 26.0 55.7 0.0 2014-2015
## 1638 509.9 45.4 26.0 5.8 0.0 2014-2015
## 1639 494.9 50.0 30.0 29.6 0.0 2014-2015
## 1640 483.7 68.7 46.0 81.1 0.0 2014-2015
## 1641 486.6 44.8 24.0 87.8 0.0 2014-2015
## 1642 519.7 53.0 30.0 31.5 0.0 2014-2015
## 1643 494.9 59.1 37.0 102.7 0.0 2014-2015
## 1644 386.4 41.0 26.0 27.3 0.0 2014-2015
## 1645 389.1 35.3 18.0 27.1 0.0 2014-2015
## 1646 387.3 36.2 20.0 6.0 0.0 2014-2015
## 1647 387.9 43.7 28.0 6.2 0.0 2014-2015
## 1648 388.3 40.4 25.0 27.5 0.0 2014-2015
## 1649 374.6 56.3 24.0 5.5 0.0 2014-2015
## 1650 374.9 54.2 23.0 6.3 0.0 2014-2015
## 1651 370.5 54.8 26.0 5.4 0.0 2014-2015
## 1652 372.3 54.8 25.0 27.3 0.0 2014-2015
## 1653 369.1 52.0 26.0 5.3 0.0 2014-2015
## 1654 373.9 57.0 27.0 5.4 0.0 2014-2015
## 1655 372.4 56.8 25.0 5.6 0.0 2014-2015
## 1656 378.8 58.3 25.0 28.4 0.0 2014-2015
## 1657 377.1 55.5 25.0 5.5 0.0 2014-2015
## 1658 378.8 59.9 26.0 5.3 0.0 2014-2015
## 1659 378.2 59.0 26.0 5.8 0.0 2014-2015
## 1660 365.5 52.5 21.0 28.9 0.0 2014-2015
## 1661 382.6 60.2 26.0 28.6 0.0 2014-2015
## 1662 377.4 55.0 21.0 5.3 0.0 2014-2015
## 1663 380.6 61.1 27.0 5.4 0.0 2014-2015
## 1664 374.3 61.0 30.0 49.9 0.0 2014-2015
## 1665 382.5 56.7 24.0 27.8 0.0 2014-2015
## 1666 366.2 56.2 25.0 73.6 0.0 2014-2015
## 1667 380.5 56.8 22.0 5.8 0.0 2014-2015
## 1668 378.4 59.4 24.0 51.3 0.0 2014-2015
## 1669 391.6 61.4 24.0 28.1 0.0 2014-2015
## 1670 373.9 61.4 29.0 72.2 0.0 2014-2015
## 1671 372.6 61.3 29.0 72.8 0.0 2014-2015
## 1672 389.3 64.2 27.0 5.2 0.0 2014-2015
## 1673 393.1 64.2 27.0 52.1 0.0 2014-2015
## 1674 323.2 39.3 21.0 6.7 0.0 2014-2015
## 1675 326.9 40.2 25.0 6.5 0.0 2014-2015
## 1676 335.6 39.7 24.0 7.1 0.0 2014-2015
## 1677 339.9 45.3 28.0 27.5 0.0 2014-2015
## 1678 330.5 40.3 23.0 5.8 0.0 2014-2015
## 1679 329.6 39.5 23.0 5.8 0.0 2014-2015
## 1680 332.5 40.4 24.0 27.3 0.0 2014-2015
## 1681 333.9 40.7 24.0 5.8 0.0 2014-2015
## 1682 325.5 42.3 25.0 5.6 0.0 2014-2015
## 1683 337.2 42.7 29.0 27.6 0.0 2014-2015
## 1684 331.4 38.6 22.0 26.1 0.0 2014-2015
## 1685 329.0 43.3 28.0 27.2 0.0 2014-2015
## 1686 330.0 46.4 29.0 4.7 0.0 2014-2015
## 1687 326.4 42.4 28.0 26.9 0.0 2014-2015
## 1688 332.9 45.4 29.0 27.7 0.0 2014-2015
## 1689 331.2 45.0 27.0 5.5 0.0 2014-2015
## 1690 330.1 42.6 24.0 5.2 0.0 2014-2015
## 1691 335.0 43.0 27.0 47.6 0.0 2014-2015
## 1692 335.7 44.9 26.0 27.9 0.0 2014-2015
## 1693 333.2 42.2 23.0 5.7 0.0 2014-2015
## 1694 330.7 45.1 27.0 27.3 0.0 2014-2015
## 1695 336.6 39.4 21.0 48.7 0.0 2014-2015
## 1696 334.2 38.6 22.0 7.0 0.0 2014-2015
## 1697 337.4 38.2 20.0 6.2 0.0 2014-2015
## 1698 335.6 45.0 27.0 26.9 0.0 2014-2015
## 1699 339.0 46.0 28.0 26.9 0.0 2014-2015
## 1700 333.7 41.5 25.0 6.2 0.0 2014-2015
## 1701 337.0 40.2 22.0 28.6 0.0 2014-2015
## 1702 332.1 45.7 28.0 49.5 0.0 2014-2015
## 1703 329.7 48.7 30.0 27.4 0.0 2014-2015
## 1704 334.4 46.9 28.0 6.4 0.0 2014-2015
## 1705 335.9 39.8 24.0 5.5 0.0 2014-2015
## 1706 328.2 42.9 24.0 49.5 0.0 2014-2015
## 1707 336.2 42.7 28.0 5.8 0.0 2014-2015
## 1708 344.4 48.5 30.0 27.6 0.0 2014-2015
## 1709 343.8 42.4 24.0 6.5 0.0 2014-2015
## 1710 340.1 43.6 28.0 29.9 0.0 2014-2015
## 1711 330.9 42.6 26.0 6.9 0.0 2014-2015
## 1712 349.5 38.3 20.0 29.2 0.0 2014-2015
## 1713 352.1 41.5 22.0 5.8 0.0 2014-2015
## 1714 342.3 35.7 19.0 57.2 0.0 2014-2015
## 1715 346.8 39.5 22.0 29.7 0.0 2014-2015
## 1716 339.8 46.0 28.0 28.2 0.0 2014-2015
## 1717 341.9 43.7 24.0 28.8 0.0 2014-2015
## 1718 338.7 46.7 29.0 5.3 0.0 2014-2015
## 1719 327.4 43.7 25.0 5.5 0.0 2014-2015
## 1720 349.5 42.7 25.0 5.7 0.0 2014-2015
## 1721 343.6 49.0 32.0 31.2 0.0 2014-2015
## 1722 349.2 43.8 26.0 29.1 0.0 2014-2015
## 1723 327.0 55.6 31.0 102.1 0.0 2014-2015
## 1724 354.2 38.2 21.0 5.7 0.0 2014-2015
## 1725 337.7 42.9 25.0 28.9 0.0 2014-2015
## 1726 349.8 46.1 26.0 29.5 0.0 2014-2015
## 1727 346.5 39.7 19.0 27.8 0.0 2014-2015
## 1728 355.2 46.4 27.0 53.7 0.0 2014-2015
## 1729 337.6 44.7 26.0 28.5 0.0 2014-2015
## 1730 360.9 51.9 31.0 52.1 0.0 2014-2015
## 1731 351.8 45.1 28.0 78.1 0.0 2014-2015
## 1732 358.3 39.3 22.0 6.0 0.0 2014-2015
## 1733 455.8 42.4 24.0 3.2 0.0 2014-2015
## 1734 454.1 47.3 27.0 3.2 0.0 2014-2015
## 1735 456.8 53.1 33.0 24.6 0.0 2014-2015
## 1736 465.1 47.2 26.0 24.3 0.0 2014-2015
## 1737 460.7 47.5 28.0 3.1 0.0 2014-2015
## 1738 468.4 48.1 28.0 25.6 0.0 2014-2015
## 1739 465.6 46.5 26.0 3.5 0.0 2014-2015
## 1740 470.0 49.9 29.0 3.4 0.0 2014-2015
## 1741 468.4 50.6 28.0 3.6 0.0 2014-2015
## 1742 468.1 46.5 26.0 3.3 0.0 2014-2015
## 1743 459.2 45.9 23.0 50.0 0.0 2014-2015
## 1744 467.9 48.0 25.0 3.6 0.0 2014-2015
## 1745 460.6 52.9 31.0 3.2 0.0 2014-2015
## 1746 472.5 42.3 23.0 24.0 0.0 2014-2015
## 1747 467.5 41.5 23.0 46.4 0.0 2014-2015
## 1748 472.0 48.3 28.0 3.2 0.0 2014-2015
## 1749 473.8 47.5 27.0 3.9 0.0 2014-2015
## 1750 467.5 50.9 29.0 25.0 0.0 2014-2015
## 1751 471.6 47.5 28.0 3.3 0.0 2014-2015
## 1752 477.0 53.2 32.0 3.6 0.0 2014-2015
## 1753 473.6 50.1 27.0 3.5 0.0 2014-2015
## 1754 470.8 44.9 23.0 25.7 0.0 2014-2015
## 1755 481.0 39.9 20.0 3.3 0.0 2014-2015
## 1756 470.2 45.0 25.0 25.3 0.0 2014-2015
## 1757 469.4 49.4 28.0 26.0 0.0 2014-2015
## 1758 462.6 48.2 26.0 25.4 0.0 2014-2015
## 1759 490.5 52.4 29.0 3.4 0.0 2014-2015
## 1760 467.0 49.2 26.0 46.1 0.0 2014-2015
## 1761 481.6 51.4 30.0 3.3 0.0 2014-2015
## 1762 479.4 39.8 18.0 3.7 0.0 2014-2015
## 1763 462.0 57.5 37.0 73.3 0.0 2014-2015
## 1764 477.5 55.4 35.0 27.2 0.0 2014-2015
## 1765 498.8 49.8 28.0 3.0 0.0 2014-2015
## 1766 489.5 47.0 27.0 24.4 0.0 2014-2015
## 1767 475.9 44.9 24.0 25.6 0.0 2014-2015
## 1768 492.7 46.8 25.0 3.5 0.0 2014-2015
## 1769 466.7 53.0 32.0 25.5 0.0 2014-2015
## 1770 487.7 60.9 40.0 3.4 0.0 2014-2015
## 1771 488.3 45.5 25.0 3.7 0.0 2014-2015
## 1772 481.0 48.6 27.0 25.9 0.0 2014-2015
## 1773 485.1 49.9 28.0 26.5 0.0 2014-2015
## 1774 474.9 45.3 24.0 51.4 0.0 2014-2015
## 1775 488.2 53.4 31.0 3.4 0.0 2014-2015
## 1776 477.4 51.4 30.0 48.7 0.0 2014-2015
## 1777 472.0 53.9 34.0 69.3 0.0 2014-2015
## 1778 487.3 45.9 25.0 28.6 0.0 2014-2015
## 1779 488.9 45.9 25.0 26.2 0.0 2014-2015
## 1780 488.5 53.2 31.0 26.8 0.0 2014-2015
## 1781 472.1 55.9 34.0 72.8 0.0 2014-2015
## 1782 480.4 46.3 27.0 71.0 0.0 2014-2015
## 1783 500.0 43.8 23.0 25.8 0.0 2014-2015
## 1784 498.8 43.3 20.0 3.7 0.0 2014-2015
## 1785 484.8 52.3 31.0 26.0 0.0 2014-2015
## 1786 473.7 48.6 26.0 25.6 0.0 2014-2015
## 1787 501.2 46.6 24.0 27.3 0.0 2014-2015
## 1788 491.6 51.8 33.0 25.9 0.0 2014-2015
## 1789 470.8 48.2 26.0 25.6 0.0 2014-2015
## 1790 470.9 53.2 29.0 79.5 0.0 2014-2015
## 1791 502.7 55.3 32.0 3.5 0.0 2014-2015
## 1792 498.4 56.4 32.0 3.5 0.0 2014-2015
## 1793 511.7 49.1 28.0 3.6 0.0 2014-2015
## 1794 495.4 49.2 25.0 27.4 0.0 2014-2015
## 1795 506.3 56.3 35.0 3.5 0.0 2014-2015
## 1796 488.1 50.8 28.0 25.5 0.0 2014-2015
## 1797 486.4 54.6 32.0 53.2 0.0 2014-2015
## 1798 504.5 47.3 24.0 27.4 0.0 2014-2015
## 1799 510.0 54.0 31.0 3.7 0.0 2014-2015
## 1800 472.6 48.0 26.0 72.8 0.0 2014-2015
## 1801 499.0 55.5 34.0 27.3 0.0 2014-2015
## 1802 493.3 50.2 28.0 52.2 0.0 2014-2015
## 1803 506.6 50.2 29.0 52.8 0.0 2014-2015
## 1804 483.3 59.1 35.0 77.9 0.0 2014-2015
## 1805 493.8 55.4 32.0 27.5 0.0 2014-2015
## 1806 508.7 51.4 29.0 51.2 0.0 2014-2015
## 1807 485.1 51.2 30.0 52.1 0.0 2014-2015
## 1808 507.5 59.1 37.0 26.2 0.0 2014-2015
## 1809 485.5 54.5 32.0 49.9 0.0 2014-2015
## 1810 496.0 51.9 29.0 25.7 0.0 2014-2015
## 1811 509.6 46.2 22.0 54.9 0.0 2014-2015
## 1812 510.4 47.5 24.0 27.0 0.0 2014-2015
## 1813 515.0 48.9 25.0 3.8 0.0 2014-2015
## 1814 503.1 52.3 29.0 51.2 0.0 2014-2015
## 1815 505.5 49.1 26.0 3.7 0.0 2014-2015
## 1816 514.6 60.6 40.0 25.5 0.0 2014-2015
## 1817 505.0 49.7 28.0 50.6 0.0 2014-2015
## 1818 493.5 56.3 38.0 50.5 0.0 2014-2015
## 1819 513.2 55.0 31.0 28.1 0.0 2014-2015
## 1820 538.2 49.0 26.0 3.5 0.0 2014-2015
## 1821 494.0 43.1 23.0 26.4 0.0 2014-2015
## 1822 525.8 55.9 32.0 29.6 0.0 2014-2015
## 1823 506.6 47.0 25.0 51.8 0.0 2014-2015
## 1824 529.7 49.8 26.0 55.4 0.0 2014-2015
## 1825 509.1 52.7 31.0 78.1 0.0 2014-2015
## 1826 507.5 53.7 31.0 77.2 0.0 2014-2015
## 1827 537.2 55.3 34.0 3.4 0.0 2014-2015
## 1828 537.9 49.1 26.0 27.8 0.0 2014-2015
## 1829 520.6 62.3 38.0 52.7 0.0 2014-2015
## 1830 534.7 61.6 39.0 3.6 0.0 2014-2015
## 1831 536.5 62.7 40.0 3.7 0.0 2014-2015
## 1832 393.8 43.5 25.0 3.5 0.0 2014-2015
## 1833 393.3 43.5 26.0 3.6 0.0 2014-2015
## 1834 390.3 47.4 29.0 3.2 0.0 2014-2015
## 1835 383.8 42.5 23.0 3.3 0.0 2014-2015
## 1836 386.7 40.3 21.0 3.3 0.0 2014-2015
## 1837 389.4 46.1 29.0 23.0 0.0 2014-2015
## 1838 393.8 44.4 24.0 22.4 0.0 2014-2015
## 1839 395.5 40.0 20.0 23.9 0.0 2014-2015
## 1840 387.5 45.6 26.0 2.8 0.0 2014-2015
## 1841 389.1 45.7 27.0 3.4 0.0 2014-2015
## 1842 388.3 43.1 25.0 23.4 0.0 2014-2015
## 1843 387.1 44.9 25.0 23.4 0.0 2014-2015
## 1844 393.7 52.5 31.0 3.2 0.0 2014-2015
## 1845 395.8 47.8 29.0 3.3 0.0 2014-2015
## 1846 392.9 46.5 27.0 24.2 0.0 2014-2015
## 1847 397.3 44.5 24.0 24.4 0.0 2014-2015
## 1848 407.5 43.0 23.0 3.3 0.0 2014-2015
## 1849 414.2 46.6 27.0 3.2 0.0 2014-2015
## 1850 392.1 46.2 27.0 44.0 0.0 2014-2015
## 1851 395.8 46.4 26.0 63.4 0.0 2014-2015
## 1852 397.7 40.2 22.0 3.3 0.0 2014-2015
## 1853 389.4 46.2 27.0 66.5 0.0 2014-2015
## 1854 397.4 50.9 32.0 45.5 0.0 2014-2015
## 1855 404.5 50.1 31.0 23.0 0.0 2014-2015
## 1856 404.3 44.8 25.0 23.8 0.0 2014-2015
## 1857 399.9 40.5 22.0 24.9 0.0 2014-2015
## 1858 409.9 47.1 27.0 3.2 0.0 2014-2015
## 1859 411.8 43.8 25.0 23.9 0.0 2014-2015
## 1860 403.9 44.8 25.0 67.5 0.0 2014-2015
## 1861 412.0 46.1 27.0 44.0 0.0 2014-2015
## 1862 420.4 44.9 24.0 8.3 0.0 2015-2016
## 1863 424.5 42.6 21.0 8.5 0.0 2015-2016
## 1864 425.2 51.8 32.0 8.4 0.0 2015-2016
## 1865 425.4 45.8 25.0 7.5 0.0 2015-2016
## 1866 420.1 44.9 25.0 27.7 0.0 2015-2016
## 1867 429.4 48.1 27.0 8.3 0.0 2015-2016
## 1868 423.9 49.5 28.0 8.8 0.0 2015-2016
## 1869 416.4 46.0 27.0 28.2 0.0 2015-2016
## 1870 429.1 46.0 26.0 8.3 0.0 2015-2016
## 1871 428.4 47.5 27.0 8.2 0.0 2015-2016
## 1872 423.4 54.7 33.0 8.1 0.0 2015-2016
## 1873 422.7 63.4 38.0 19.7 0.0 2015-2016
## 1874 438.6 52.3 30.0 5.9 0.0 2015-2016
## 1875 421.0 50.7 29.0 27.7 0.0 2015-2016
## 1876 430.2 49.2 28.0 28.4 0.0 2015-2016
## 1877 431.2 54.2 34.0 8.9 0.0 2015-2016
## 1878 434.1 47.1 27.0 27.8 0.0 2015-2016
## 1879 422.3 44.3 24.0 28.1 0.0 2015-2016
## 1880 433.7 41.1 22.0 25.3 0.0 2015-2016
## 1881 430.8 45.5 25.0 28.3 0.0 2015-2016
## 1882 433.0 50.6 30.0 27.3 0.0 2015-2016
## 1883 419.8 44.8 25.0 28.2 0.0 2015-2016
## 1884 431.1 41.2 22.0 8.1 0.0 2015-2016
## 1885 438.5 45.5 25.0 28.1 0.0 2015-2016
## 1886 430.9 52.0 31.0 29.9 0.0 2015-2016
## 1887 437.7 48.9 27.0 9.2 0.0 2015-2016
## 1888 422.8 49.8 29.0 69.4 0.0 2015-2016
## 1889 422.3 46.0 25.0 28.9 0.0 2015-2016
## 1890 426.1 50.2 31.0 47.9 0.0 2015-2016
## 1891 437.5 52.8 30.0 8.6 0.0 2015-2016
## 1892 438.5 41.6 21.0 30.4 0.0 2015-2016
## 1893 427.3 47.3 25.0 50.1 0.0 2015-2016
## 1894 432.9 46.1 23.0 28.7 0.0 2015-2016
## 1895 422.3 54.5 31.0 26.8 0.0 2015-2016
## 1896 430.3 46.4 27.0 28.4 0.0 2015-2016
## 1897 424.3 61.5 41.0 47.1 0.0 2015-2016
## 1898 424.0 56.4 36.0 48.2 0.0 2015-2016
## 1899 429.0 48.5 27.0 50.1 0.0 2015-2016
## 1900 436.0 47.7 26.0 29.4 0.0 2015-2016
## 1901 428.9 51.7 31.0 51.4 0.0 2015-2016
## 1902 431.9 46.2 25.0 8.3 0.0 2015-2016
## 1903 441.8 57.1 35.0 8.6 0.0 2015-2016
## 1904 442.3 48.0 27.0 29.4 0.0 2015-2016
## 1905 436.2 48.2 27.0 29.0 0.0 2015-2016
## 1906 420.9 44.0 23.0 51.0 0.0 2015-2016
## 1907 435.1 50.0 30.0 49.5 0.0 2015-2016
## 1908 429.0 53.6 31.0 52.7 0.0 2015-2016
## 1909 438.5 48.1 27.0 28.4 0.0 2015-2016
## 1910 448.6 48.6 27.0 8.1 0.0 2015-2016
## 1911 442.8 61.9 39.0 29.0 0.0 2015-2016
## 1912 441.5 53.1 31.0 29.3 0.0 2015-2016
## 1913 443.4 53.4 32.0 30.2 0.0 2015-2016
## 1914 445.0 49.7 28.0 31.1 0.0 2015-2016
## 1915 440.4 44.3 24.0 8.1 0.0 2015-2016
## 1916 443.3 48.4 26.0 8.4 0.0 2015-2016
## 1917 437.7 44.9 22.0 30.2 0.0 2015-2016
## 1918 448.3 47.1 24.0 28.8 0.0 2015-2016
## 1919 438.1 46.4 25.0 29.6 0.0 2015-2016
## 1920 444.2 48.2 26.0 8.6 0.0 2015-2016
## 1921 452.9 54.7 30.0 9.1 0.0 2015-2016
## 1922 453.4 46.5 23.0 32.8 0.0 2015-2016
## 1923 427.4 49.8 28.0 29.9 0.0 2015-2016
## 1924 462.8 46.7 24.0 30.1 0.0 2015-2016
## 1925 449.4 51.0 29.0 29.5 0.0 2015-2016
## 1926 446.6 43.2 21.0 28.8 0.0 2015-2016
## 1927 445.5 45.4 24.0 51.3 0.0 2015-2016
## 1928 436.3 54.9 34.0 50.3 0.0 2015-2016
## 1929 462.1 48.4 26.0 8.5 0.0 2015-2016
## 1930 441.8 57.2 34.0 32.0 0.0 2015-2016
## 1931 428.5 55.3 34.0 91.7 0.0 2015-2016
## 1932 454.1 48.7 27.0 29.3 0.0 2015-2016
## 1933 452.9 52.6 29.0 28.9 0.0 2015-2016
## 1934 455.0 55.8 36.0 29.5 0.0 2015-2016
## 1935 453.4 48.6 25.0 29.5 0.0 2015-2016
## 1936 449.7 55.1 33.0 50.3 0.0 2015-2016
## 1937 450.8 54.3 31.0 51.0 0.0 2015-2016
## 1938 432.0 50.4 29.0 74.8 0.0 2015-2016
## 1939 443.6 52.0 31.0 52.6 0.0 2015-2016
## 1940 447.8 46.7 23.0 30.1 0.0 2015-2016
## 1941 428.6 51.1 29.0 74.1 0.0 2015-2016
## 1942 435.3 66.0 45.0 50.9 0.0 2015-2016
## 1943 463.6 45.5 25.0 8.6 0.0 2015-2016
## 1944 455.0 57.6 35.0 9.3 0.0 2015-2016
## 1945 462.8 48.0 27.0 9.3 0.0 2015-2016
## 1946 437.8 47.1 26.0 30.0 0.0 2015-2016
## 1947 456.9 51.4 29.0 31.3 0.0 2015-2016
## 1948 433.8 53.3 30.0 30.8 0.0 2015-2016
## 1949 460.7 52.0 28.0 31.8 0.0 2015-2016
## 1950 437.8 48.1 27.0 75.8 0.0 2015-2016
## 1951 449.3 50.1 29.0 50.1 0.0 2015-2016
## 1952 456.1 50.3 29.0 8.2 0.0 2015-2016
## 1953 448.6 58.0 36.0 29.0 0.0 2015-2016
## 1954 450.2 54.1 31.0 53.5 0.0 2015-2016
## 1955 454.9 48.1 25.0 50.8 0.0 2015-2016
## 1956 456.5 58.5 35.0 30.3 0.0 2015-2016
## 1957 468.1 51.0 27.0 29.8 0.0 2015-2016
## 1958 471.1 50.6 27.0 32.7 0.0 2015-2016
## 1959 456.4 56.9 33.0 77.7 0.0 2015-2016
## 1960 455.1 59.5 38.0 56.9 0.0 2015-2016
## 1961 471.1 51.0 27.0 53.8 0.0 2015-2016
## 1962 479.3 50.2 27.0 32.0 0.0 2015-2016
## 1963 489.4 49.8 28.0 8.8 0.0 2015-2016
## 1964 481.8 51.5 31.0 9.4 0.0 2015-2016
## 1965 472.0 60.6 36.0 54.7 0.0 2015-2016
## 1966 470.8 63.6 39.0 55.3 0.0 2015-2016
## 1967 495.0 70.8 48.0 8.8 0.0 2015-2016
## 1968 333.9 42.6 23.0 27.1 0.0 2015-2016
## 1969 338.4 48.2 29.0 28.7 0.0 2015-2016
## 1970 337.8 41.4 24.0 9.1 0.0 2015-2016
## 1971 329.6 41.9 24.0 8.6 0.0 2015-2016
## 1972 337.6 46.3 27.0 8.6 0.0 2015-2016
## 1973 346.3 43.3 23.0 30.0 0.0 2015-2016
## 1974 331.2 42.2 23.0 8.3 0.0 2015-2016
## 1975 342.6 47.6 29.0 28.4 0.0 2015-2016
## 1976 333.3 45.5 25.0 8.6 0.0 2015-2016
## 1977 330.1 46.4 27.0 28.0 0.0 2015-2016
## 1978 330.1 44.3 25.0 8.1 0.0 2015-2016
## 1979 338.6 49.3 29.0 8.8 0.0 2015-2016
## 1980 336.3 48.0 29.0 8.0 0.0 2015-2016
## 1981 336.4 48.0 26.0 8.2 0.0 2015-2016
## 1982 342.3 46.2 26.0 27.8 0.0 2015-2016
## 1983 331.2 48.2 29.0 28.4 0.0 2015-2016
## 1984 339.3 47.0 27.0 50.1 0.0 2015-2016
## 1985 341.7 42.4 23.0 28.8 0.0 2015-2016
## 1986 343.6 44.5 25.0 27.7 0.0 2015-2016
## 1987 327.3 46.9 27.0 8.0 0.0 2015-2016
## 1988 336.0 47.3 27.0 47.3 0.0 2015-2016
## 1989 338.2 46.4 27.0 28.3 0.0 2015-2016
## 1990 339.9 54.3 34.0 29.5 0.0 2015-2016
## 1991 340.6 49.4 30.0 9.5 0.0 2015-2016
## 1992 336.3 47.6 27.0 47.2 0.0 2015-2016
## 1993 332.1 40.9 21.0 29.5 0.0 2015-2016
## 1994 338.4 50.3 31.0 66.1 0.0 2015-2016
## 1995 339.9 45.8 26.0 30.4 0.0 2015-2016
## 1996 341.4 44.7 25.0 29.6 0.0 2015-2016
## 1997 338.9 42.2 23.0 28.5 0.0 2015-2016
## 1998 342.5 44.7 25.0 30.1 0.0 2015-2016
## 1999 343.2 44.9 25.0 8.8 0.0 2015-2016
## 2000 338.9 46.7 27.0 50.0 0.0 2015-2016
## 2001 349.2 48.9 30.0 48.5 0.0 2015-2016
## 2002 346.9 47.8 27.0 8.7 0.0 2015-2016
## 2003 339.2 44.9 24.0 30.8 0.0 2015-2016
## 2004 337.4 57.5 37.0 51.3 0.0 2015-2016
## 2005 338.8 50.4 30.0 8.8 0.0 2015-2016
## 2006 348.5 46.6 25.0 9.5 0.0 2015-2016
## 2007 346.7 44.5 23.0 30.6 0.0 2015-2016
## 2008 343.2 46.6 25.0 31.4 0.0 2015-2016
## 2009 341.1 47.8 27.0 8.8 0.0 2015-2016
## 2010 340.5 43.4 25.0 30.0 0.0 2015-2016
## 2011 349.7 44.9 25.0 31.5 0.0 2015-2016
## 2012 340.6 41.1 20.0 53.1 0.0 2015-2016
## 2013 339.1 43.7 23.0 29.6 0.0 2015-2016
## 2014 360.7 47.3 25.0 8.7 0.0 2015-2016
## 2015 361.4 44.3 23.0 8.5 0.0 2015-2016
## 2016 350.3 44.1 23.0 29.2 0.0 2015-2016
## 2017 373.2 45.9 24.0 31.8 0.0 2015-2016
## 2018 368.1 53.0 31.0 32.9 0.0 2015-2016
## 2019 361.7 55.9 34.0 74.7 0.0 2015-2016
## 2020 437.5 41.4 NA 8.1 0.0 2015-2016
## 2021 448.2 41.4 NA 7.9 0.0 2015-2016
## 2022 447.3 41.5 NA 8.3 0.0 2015-2016
## 2023 447.4 44.1 NA 27.5 0.0 2015-2016
## 2024 456.8 45.4 NA 26.7 0.0 2015-2016
## 2025 466.3 38.3 NA 7.9 0.0 2015-2016
## 2026 460.5 41.0 NA 9.1 0.0 2015-2016
## 2027 454.0 43.1 NA 7.4 0.0 2015-2016
## 2028 464.7 40.2 NA 8.5 0.0 2015-2016
## 2029 454.4 39.9 NA 27.9 0.0 2015-2016
## 2030 466.1 43.9 NA 9.1 0.0 2015-2016
## 2031 457.3 43.1 NA 30.3 0.0 2015-2016
## 2032 458.5 45.6 NA 8.5 0.0 2015-2016
## 2033 455.2 45.3 NA 29.5 0.0 2015-2016
## 2034 464.0 40.4 NA 28.5 0.0 2015-2016
## 2035 456.9 49.8 NA 28.7 0.0 2015-2016
## 2036 463.1 48.5 NA 8.7 0.0 2015-2016
## 2037 488.7 47.9 NA 27.6 0.0 2015-2016
## 2038 474.2 45.7 NA 9.1 0.0 2015-2016
## 2039 471.9 40.9 NA 8.8 0.0 2015-2016
## 2040 459.1 39.4 NA 50.8 0.0 2015-2016
## 2041 472.2 40.6 NA 9.4 0.0 2015-2016
## 2042 457.3 50.1 NA 47.4 0.0 2015-2016
## 2043 460.2 45.6 NA 50.5 0.0 2015-2016
## 2044 478.4 48.9 NA 9.9 0.0 2015-2016
## 2045 471.1 42.7 NA 8.2 0.0 2015-2016
## 2046 465.0 46.0 NA 27.9 0.0 2015-2016
## 2047 447.8 45.7 NA 30.5 0.0 2015-2016
## 2048 470.9 46.8 NA 29.4 0.0 2015-2016
## 2049 469.2 45.3 NA 9.2 0.0 2015-2016
## 2050 468.7 44.2 NA 8.9 0.0 2015-2016
## 2051 469.3 46.8 NA 8.7 0.0 2015-2016
## 2052 462.6 46.7 NA 29.5 0.0 2015-2016
## 2053 476.1 42.7 NA 8.9 0.0 2015-2016
## 2054 468.5 42.3 NA 28.7 0.0 2015-2016
## 2055 467.5 43.7 NA 28.8 0.0 2015-2016
## 2056 470.7 46.9 NA 29.1 0.0 2015-2016
## 2057 474.4 43.1 NA 27.9 0.0 2015-2016
## 2058 462.5 44.6 NA 49.6 0.0 2015-2016
## 2059 478.6 42.5 NA 29.7 0.0 2015-2016
## 2060 465.2 45.2 NA 48.4 0.0 2015-2016
## 2061 473.7 47.1 NA 30.5 0.0 2015-2016
## 2062 469.2 52.1 NA 28.5 0.0 2015-2016
## 2063 493.9 38.7 NA 9.3 0.0 2015-2016
## 2064 456.9 45.2 NA 50.1 0.0 2015-2016
## 2065 458.1 41.6 NA 72.0 0.0 2015-2016
## 2066 471.3 45.0 NA 31.1 0.0 2015-2016
## 2067 474.2 45.3 NA 31.0 0.0 2015-2016
## 2068 474.6 47.3 NA 29.5 0.0 2015-2016
## 2069 470.2 46.7 NA 52.2 0.0 2015-2016
## 2070 478.5 46.0 NA 31.9 0.0 2015-2016
## 2071 482.9 44.5 NA 29.9 0.0 2015-2016
## 2072 489.1 43.0 NA 30.8 0.0 2015-2016
## 2073 476.6 49.4 NA 32.2 0.0 2015-2016
## 2074 470.8 48.9 NA 8.8 0.0 2015-2016
## 2075 470.9 44.4 NA 50.1 0.0 2015-2016
## 2076 482.3 48.4 NA 31.6 0.0 2015-2016
## 2077 491.7 47.6 NA 49.9 0.0 2015-2016
## 2078 501.3 48.9 NA 9.8 0.0 2015-2016
## 2079 481.9 45.9 NA 9.0 0.0 2015-2016
## 2080 480.3 43.9 NA 32.4 0.0 2015-2016
## 2081 471.5 47.5 NA 29.6 0.0 2015-2016
## 2082 490.1 49.8 NA 50.7 0.0 2015-2016
## 2083 488.4 43.5 NA 9.1 0.0 2015-2016
## 2084 494.6 44.0 NA 8.3 0.0 2015-2016
## 2085 464.5 52.1 NA 97.7 0.0 2015-2016
## 2086 506.7 44.7 NA 9.6 0.0 2015-2016
## 2087 487.2 42.7 NA 31.2 0.0 2015-2016
## 2088 502.4 42.3 NA 9.4 0.0 2015-2016
## 2089 488.1 50.3 NA 56.9 0.0 2015-2016
## 2090 501.6 44.2 NA 33.1 0.0 2015-2016
## 2091 490.9 45.5 NA 33.0 0.0 2015-2016
## 2092 493.7 47.8 NA 31.8 0.0 2015-2016
## 2093 493.4 49.5 NA 56.0 0.0 2015-2016
## 2094 480.3 47.0 NA 53.3 0.0 2015-2016
## 2095 493.8 47.8 NA 31.3 0.0 2015-2016
## 2096 487.4 43.3 NA 55.1 0.0 2015-2016
## 2097 489.7 60.9 NA 56.2 0.0 2015-2016
## 2098 486.6 79.8 NA 55.5 0.0 2015-2016
## 2099 515.2 46.7 NA 32.3 0.0 2015-2016
## 2100 517.3 48.3 NA 32.8 0.0 2015-2016
## 2101 511.9 48.1 NA 58.2 0.0 2015-2016
## 2102 521.5 50.4 NA 10.5 0.0 2015-2016
## 2103 484.1 60.5 NA 98.8 0.0 2015-2016
## 2104 527.5 47.8 NA 9.5 0.0 2015-2016
## 2105 523.3 60.3 NA 60.8 0.0 2015-2016
## 2106 548.1 50.4 NA 67.1 0.0 2015-2016
## 2107 433.2 41.2 24.1 27.9 0.0 2015-2016
## 2108 433.3 44.9 28.3 31.1 0.0 2015-2016
## 2109 433.3 40.7 26.0 34.0 0.0 2015-2016
## 2110 438.8 45.9 27.6 32.0 0.0 2015-2016
## 2111 431.2 49.3 31.6 30.2 0.0 2015-2016
## 2112 424.4 40.4 39.6 31.3 0.0 2015-2016
## 2113 438.1 47.7 47.2 30.3 0.0 2015-2016
## 2114 437.6 45.1 25.4 31.1 0.0 2015-2016
## 2115 450.9 42.5 22.7 9.8 0.0 2015-2016
## 2116 454.3 45.9 25.0 8.9 0.0 2015-2016
## 2117 442.6 43.2 23.4 9.5 0.0 2015-2016
## 2118 433.1 45.0 25.8 53.4 0.0 2015-2016
## 2119 437.7 45.2 25.2 32.8 0.0 2015-2016
## 2120 443.8 44.3 24.5 33.1 0.0 2015-2016
## 2121 431.0 42.3 22.1 53.9 0.0 2015-2016
## 2122 449.2 41.8 24.5 32.5 0.0 2015-2016
## 2123 433.9 45.2 20.4 55.9 0.0 2015-2016
## 2124 442.4 45.5 26.8 32.1 0.0 2015-2016
## 2125 456.2 37.8 19.8 9.3 0.0 2015-2016
## 2126 454.6 45.3 25.8 32.1 0.0 2015-2016
## 2127 447.6 43.4 25.4 53.2 0.0 2015-2016
## 2128 437.7 47.5 29.1 9.4 0.0 2015-2016
## 2129 456.3 48.0 26.8 32.4 0.0 2015-2016
## 2130 458.1 44.4 22.8 33.5 0.0 2015-2016
## 2131 450.6 45.7 26.3 54.9 0.0 2015-2016
## 2132 447.6 55.9 38.0 31.5 0.0 2015-2016
## 2133 462.6 41.8 23.6 9.6 0.0 2015-2016
## 2134 467.2 49.2 30.4 57.3 0.0 2015-2016
## 2135 478.2 42.5 24.0 10.2 0.0 2015-2016
## 2136 457.8 46.7 28.3 59.2 0.0 2015-2016
## 2137 453.9 49.5 26.0 4.7 0.0 2015-2016
## 2138 442.2 48.2 26.0 4.5 0.0 2015-2016
## 2139 453.8 47.0 25.0 4.7 0.0 2015-2016
## 2140 447.6 46.6 24.0 4.5 0.0 2015-2016
## 2141 460.7 46.5 22.0 4.8 0.0 2015-2016
## 2142 456.8 45.3 22.0 4.8 0.0 2015-2016
## 2143 459.4 46.6 23.0 26.5 0.0 2015-2016
## 2144 457.2 48.8 26.0 26.8 0.0 2015-2016
## 2145 462.5 55.8 31.0 4.6 0.0 2015-2016
## 2146 452.2 47.9 23.0 5.4 0.0 2015-2016
## 2147 448.2 43.7 20.0 25.5 0.0 2015-2016
## 2148 462.0 48.8 23.0 4.9 0.0 2015-2016
## 2149 452.7 54.4 30.0 27.0 0.0 2015-2016
## 2150 457.4 46.1 22.0 26.8 0.0 2015-2016
## 2151 462.5 55.3 32.0 4.7 0.0 2015-2016
## 2152 455.5 50.2 27.0 26.1 0.0 2015-2016
## 2153 460.4 51.5 27.0 5.0 0.0 2015-2016
## 2154 458.9 45.4 22.0 26.3 0.0 2015-2016
## 2155 461.4 46.3 23.0 5.0 0.0 2015-2016
## 2156 460.9 47.0 24.0 5.0 0.0 2015-2016
## 2157 462.5 49.5 27.0 4.7 0.0 2015-2016
## 2158 455.3 49.3 25.0 25.9 0.0 2015-2016
## 2159 460.2 56.4 34.0 25.0 0.0 2015-2016
## 2160 465.9 47.9 25.0 5.0 0.0 2015-2016
## 2161 457.5 48.5 25.0 26.7 0.0 2015-2016
## 2162 460.2 49.9 25.0 48.1 0.0 2015-2016
## 2163 459.7 49.9 27.0 45.7 0.0 2015-2016
## 2164 467.6 51.2 28.0 27.4 0.0 2015-2016
## 2165 468.5 50.0 25.0 5.0 0.0 2015-2016
## 2166 458.8 46.8 23.0 46.2 0.0 2015-2016
## 2167 479.3 51.2 27.0 4.4 0.0 2015-2016
## 2168 463.4 50.7 26.0 50.7 0.0 2015-2016
## 2169 481.1 51.9 26.0 4.6 0.0 2015-2016
## 2170 463.3 52.9 29.0 26.7 0.0 2015-2016
## 2171 465.5 48.0 25.0 26.9 0.0 2015-2016
## 2172 456.4 56.0 31.0 46.8 0.0 2015-2016
## 2173 471.5 52.8 28.0 46.8 0.0 2015-2016
## 2174 470.8 48.0 23.0 5.0 0.0 2015-2016
## 2175 467.4 53.3 30.0 26.3 0.0 2015-2016
## 2176 458.5 49.2 25.0 50.1 0.0 2015-2016
## 2177 464.6 53.0 29.0 50.4 0.0 2015-2016
## 2178 461.1 51.3 29.0 25.0 0.0 2015-2016
## 2179 464.2 56.6 33.0 50.4 0.0 2015-2016
## 2180 463.4 56.6 31.0 26.2 0.0 2015-2016
## 2181 462.3 54.7 30.0 51.6 0.0 2015-2016
## 2182 478.5 51.5 27.0 28.1 0.0 2015-2016
## 2183 466.2 53.5 28.0 28.1 0.0 2015-2016
## 2184 483.6 46.1 22.0 5.1 0.0 2015-2016
## 2185 475.5 57.0 34.0 27.1 0.0 2015-2016
## 2186 474.7 50.5 26.0 26.7 0.0 2015-2016
## 2187 475.7 49.5 25.0 4.9 0.0 2015-2016
## 2188 477.4 54.9 29.0 26.4 0.0 2015-2016
## 2189 484.7 49.7 25.0 5.7 0.0 2015-2016
## 2190 476.5 52.5 27.0 27.4 0.0 2015-2016
## 2191 471.5 49.9 27.0 48.9 0.0 2015-2016
## 2192 465.5 51.7 27.0 27.6 0.0 2015-2016
## 2193 477.6 55.3 32.0 4.9 0.0 2015-2016
## 2194 471.8 50.3 25.0 48.9 0.0 2015-2016
## 2195 473.5 61.9 35.0 5.3 0.0 2015-2016
## 2196 479.8 54.1 28.0 27.3 0.0 2015-2016
## 2197 469.1 54.3 32.0 46.3 0.0 2015-2016
## 2198 472.4 62.3 37.0 27.3 0.0 2015-2016
## 2199 469.8 52.5 29.0 28.1 0.0 2015-2016
## 2200 475.3 51.4 25.0 48.4 0.0 2015-2016
## 2201 477.9 61.2 34.0 29.8 0.0 2015-2016
## 2202 466.6 52.9 26.0 27.4 0.0 2015-2016
## 2203 478.4 51.7 27.0 49.6 0.0 2015-2016
## 2204 476.5 57.0 33.0 28.9 0.0 2015-2016
## 2205 473.0 58.0 31.0 27.9 0.0 2015-2016
## 2206 470.0 54.7 29.0 74.4 0.0 2015-2016
## 2207 482.6 57.8 33.0 26.7 0.0 2015-2016
## 2208 457.4 65.2 42.0 70.9 0.0 2015-2016
## 2209 471.9 57.6 34.0 4.6 0.0 2015-2016
## 2210 490.0 56.9 31.0 29.1 0.0 2015-2016
## 2211 464.2 60.9 37.0 49.2 0.0 2015-2016
## 2212 462.7 52.6 27.0 70.8 0.0 2015-2016
## 2213 465.9 55.0 30.0 75.0 0.0 2015-2016
## 2214 477.6 58.7 32.0 49.6 0.0 2015-2016
## 2215 484.3 52.7 27.0 52.0 0.0 2015-2016
## 2216 469.4 54.8 29.0 49.2 0.0 2015-2016
## 2217 487.8 53.9 27.0 54.0 0.0 2015-2016
## 2218 477.4 57.4 33.0 28.7 0.0 2015-2016
## 2219 472.5 52.0 27.0 75.5 0.0 2015-2016
## 2220 484.0 50.6 25.0 53.8 0.0 2015-2016
## 2221 465.5 53.9 29.0 52.1 0.0 2015-2016
## 2222 480.6 52.1 28.0 51.9 0.0 2015-2016
## 2223 470.6 49.3 27.0 28.1 0.0 2015-2016
## 2224 478.2 58.3 32.0 75.6 0.0 2015-2016
## 2225 478.6 53.0 28.0 27.8 0.0 2015-2016
## 2226 480.1 47.2 23.0 26.4 0.0 2015-2016
## 2227 480.1 55.4 30.0 51.7 0.0 2015-2016
## 2228 496.6 58.2 33.0 50.7 0.0 2015-2016
## 2229 480.4 56.1 29.0 73.1 0.0 2015-2016
## 2230 494.9 62.5 37.0 28.8 0.0 2015-2016
## 2231 492.0 52.5 27.0 28.2 0.0 2015-2016
## 2232 486.2 54.5 27.0 52.2 0.0 2015-2016
## 2233 486.1 68.9 42.0 50.0 0.0 2015-2016
## 2234 495.7 55.1 30.0 27.0 0.0 2015-2016
## 2235 485.2 47.3 21.0 78.2 0.0 2015-2016
## 2236 494.1 50.1 24.0 29.6 0.0 2015-2016
## 2237 499.5 56.1 29.0 31.2 0.0 2015-2016
## 2238 489.7 54.9 28.0 51.3 0.0 2015-2016
## 2239 481.3 68.6 41.0 28.6 0.0 2015-2016
## 2240 498.7 52.6 27.0 55.9 0.0 2015-2016
## 2241 498.1 81.4 54.0 74.2 0.0 2015-2016
## 2242 502.8 59.2 33.0 74.3 0.0 2015-2016
## 2243 496.1 54.2 25.0 31.3 0.0 2015-2016
## 2244 549.7 56.2 30.0 80.7 0.0 2015-2016
## 2245 330.4 42.9 20.0 5.7 0.0 2015-2016
## 2246 335.4 47.9 25.0 5.1 0.0 2015-2016
## 2247 330.2 46.9 24.0 5.0 0.0 2015-2016
## 2248 330.3 47.0 23.0 26.1 0.0 2015-2016
## 2249 328.1 50.1 25.0 5.4 0.0 2015-2016
## 2250 334.0 48.1 25.0 26.6 0.0 2015-2016
## 2251 332.8 52.3 30.0 27.4 0.0 2015-2016
## 2252 333.8 44.0 21.0 5.2 0.0 2015-2016
## 2253 343.3 49.5 26.0 4.8 0.0 2015-2016
## 2254 332.7 48.5 26.0 25.1 0.0 2015-2016
## 2255 337.0 49.0 25.0 5.2 0.0 2015-2016
## 2256 336.5 45.5 21.0 49.1 0.0 2015-2016
## 2257 339.1 51.0 24.0 5.0 0.0 2015-2016
## 2258 336.6 48.7 27.0 27.8 0.0 2015-2016
## 2259 340.1 46.5 24.0 4.9 0.0 2015-2016
## 2260 336.5 46.0 22.0 27.0 0.0 2015-2016
## 2261 339.2 53.3 29.0 27.1 0.0 2015-2016
## 2262 332.2 45.5 25.0 49.5 0.0 2015-2016
## 2263 335.1 57.3 34.0 47.8 0.0 2015-2016
## 2264 341.0 48.4 27.0 4.7 0.0 2015-2016
## 2265 342.9 52.8 33.0 4.3 0.0 2015-2016
## 2266 348.4 48.4 28.0 4.5 0.0 2015-2016
## 2267 336.3 45.6 23.0 49.9 0.0 2015-2016
## 2268 337.5 49.7 30.0 4.9 0.0 2015-2016
## 2269 346.2 49.3 29.0 4.5 0.0 2015-2016
## 2270 341.8 62.8 38.0 25.9 0.0 2015-2016
## 2271 340.5 49.2 26.0 47.9 0.0 2015-2016
## 2272 338.8 49.7 28.0 5.7 0.0 2015-2016
## 2273 333.2 48.3 28.0 26.2 0.0 2015-2016
## 2274 334.6 49.5 27.0 88.1 0.0 2015-2016
## 2275 345.9 46.6 26.0 50.2 0.0 2015-2016
## 2276 347.0 47.4 27.0 48.1 0.0 2015-2016
## 2277 352.9 60.1 36.0 5.4 0.0 2015-2016
## 2278 345.6 51.9 27.0 5.5 0.0 2015-2016
## 2279 339.2 48.3 24.0 51.3 0.0 2015-2016
## 2280 349.5 47.9 23.0 4.9 0.0 2015-2016
## 2281 349.1 49.8 28.0 51.4 0.0 2015-2016
## 2282 340.0 51.1 26.0 27.1 0.0 2015-2016
## 2283 349.5 53.3 29.0 4.9 0.0 2015-2016
## 2284 342.8 48.4 24.0 26.2 0.0 2015-2016
## 2285 355.3 51.9 27.0 27.5 0.0 2015-2016
## 2286 353.5 54.6 30.0 4.6 0.0 2015-2016
## 2287 343.0 47.6 23.0 46.6 0.0 2015-2016
## 2288 354.7 49.4 26.0 53.7 0.0 2015-2016
## 2289 351.1 49.1 26.0 4.7 0.0 2015-2016
## 2290 356.4 48.6 26.0 4.4 0.0 2015-2016
## 2291 348.9 50.2 24.0 28.0 0.0 2015-2016
## 2292 348.7 54.0 31.0 50.3 0.0 2015-2016
## 2293 350.5 52.0 26.0 50.2 0.0 2015-2016
## 2294 349.9 52.0 30.0 29.6 0.0 2015-2016
## 2295 354.2 51.5 32.0 28.1 0.0 2015-2016
## 2296 359.9 42.6 20.0 29.8 0.0 2015-2016
## 2297 356.7 48.2 25.0 27.8 0.0 2015-2016
## 2298 354.6 55.2 30.0 77.8 0.0 2015-2016
## 2299 367.6 52.8 29.0 29.2 0.0 2015-2016
## 2300 371.9 48.2 24.0 55.0 0.0 2015-2016
## 2301 359.9 52.2 29.0 28.9 0.0 2015-2016
## 2302 369.1 53.7 31.0 31.4 0.0 2015-2016
## 2303 369.8 53.0 30.0 86.0 0.0 2015-2016
## 2304 466.4 41.1 24.8 7.1 0.0 2015-2016
## 2305 457.5 40.2 24.9 6.9 0.0 2015-2016
## 2306 472.9 44.8 25.9 7.1 0.0 2015-2016
## 2307 466.9 50.3 33.9 7.2 0.0 2015-2016
## 2308 473.7 47.5 30.4 6.9 0.0 2015-2016
## 2309 471.3 48.0 30.6 28.2 0.0 2015-2016
## 2310 471.3 41.5 25.3 7.3 0.0 2015-2016
## 2311 472.3 45.3 27.9 28.6 0.0 2015-2016
## 2312 464.4 55.2 39.1 27.6 0.0 2015-2016
## 2313 477.4 40.1 25.2 26.7 0.0 2015-2016
## 2314 469.5 46.8 27.3 30.3 0.0 2015-2016
## 2315 472.3 47.2 29.4 7.2 0.0 2015-2016
## 2316 481.6 52.7 35.2 7.9 0.0 2015-2016
## 2317 475.2 43.2 25.8 29.3 0.0 2015-2016
## 2318 467.0 44.0 29.0 50.8 0.0 2015-2016
## 2319 490.6 41.5 24.4 6.5 0.0 2015-2016
## 2320 463.0 46.6 30.2 27.6 0.0 2015-2016
## 2321 485.0 45.1 25.4 7.5 0.0 2015-2016
## 2322 489.3 47.7 30.3 28.1 0.0 2015-2016
## 2323 483.7 44.1 25.8 7.6 0.0 2015-2016
## 2324 466.8 45.9 27.0 6.9 0.0 2015-2016
## 2325 481.7 44.3 26.0 28.8 0.0 2015-2016
## 2326 466.0 47.9 29.2 50.6 0.0 2015-2016
## 2327 494.5 39.9 22.1 31.2 0.0 2015-2016
## 2328 479.8 44.6 27.0 29.5 0.0 2015-2016
## 2329 479.8 43.0 25.8 50.8 0.0 2015-2016
## 2330 477.1 52.3 32.5 30.6 0.0 2015-2016
## 2331 485.2 51.6 34.7 28.9 0.0 2015-2016
## 2332 479.6 41.3 22.9 7.9 0.0 2015-2016
## 2333 492.0 48.3 31.8 7.2 0.0 2015-2016
## 2334 478.8 46.9 27.6 29.4 0.0 2015-2016
## 2335 492.7 46.0 28.3 6.6 0.0 2015-2016
## 2336 494.9 45.7 28.6 6.4 0.0 2015-2016
## 2337 485.8 40.9 24.4 53.1 0.0 2015-2016
## 2338 480.7 43.9 26.3 50.3 0.0 2015-2016
## 2339 478.7 49.3 28.7 52.6 0.0 2015-2016
## 2340 495.2 46.0 29.5 28.7 0.0 2015-2016
## 2341 478.7 41.8 25.1 28.5 0.0 2015-2016
## 2342 479.5 50.1 32.2 28.7 0.0 2015-2016
## 2343 473.3 39.4 20.2 29.6 0.0 2015-2016
## 2344 488.2 38.1 23.1 30.0 0.0 2015-2016
## 2345 477.1 47.8 30.3 53.9 0.0 2015-2016
## 2346 480.4 46.4 27.3 30.4 0.0 2015-2016
## 2347 492.6 44.7 26.2 53.5 0.0 2015-2016
## 2348 492.7 44.8 25.9 30.6 0.0 2015-2016
## 2349 484.3 46.5 27.8 52.7 0.0 2015-2016
## 2350 485.0 52.6 34.8 48.9 0.0 2015-2016
## 2351 483.0 45.1 27.1 52.6 0.0 2015-2016
## 2352 506.9 46.8 27.8 7.3 0.0 2015-2016
## 2353 508.2 49.4 30.2 8.1 0.0 2015-2016
## 2354 490.3 52.4 34.9 50.4 0.0 2015-2016
## 2355 510.8 52.3 33.7 7.4 0.0 2015-2016
## 2356 493.3 43.6 25.7 30.4 0.0 2015-2016
## 2357 492.6 51.5 32.4 54.0 0.0 2015-2016
## 2358 475.8 41.5 24.3 51.0 0.0 2015-2016
## 2359 489.0 46.1 28.8 52.9 0.0 2015-2016
## 2360 499.2 45.7 26.6 7.7 0.0 2015-2016
## 2361 497.2 39.5 23.1 7.8 0.0 2015-2016
## 2362 514.6 50.6 31.0 8.2 0.0 2015-2016
## 2363 486.5 45.9 26.3 52.7 0.0 2015-2016
## 2364 510.9 48.7 29.5 8.3 0.0 2015-2016
## 2365 505.4 52.3 31.5 30.8 0.0 2015-2016
## 2366 501.8 46.5 27.1 31.4 0.0 2015-2016
## 2367 514.8 46.4 27.6 7.5 0.0 2015-2016
## 2368 492.7 53.5 35.2 78.9 0.0 2015-2016
## 2369 514.6 45.6 28.5 30.9 0.0 2015-2016
## 2370 499.2 47.2 28.2 54.1 0.0 2015-2016
## 2371 509.2 51.3 31.8 29.6 0.0 2015-2016
## 2372 498.2 44.3 26.8 29.2 0.0 2015-2016
## 2373 498.8 43.5 25.1 54.1 0.0 2015-2016
## 2374 517.2 55.0 35.0 30.7 0.0 2015-2016
## 2375 488.4 48.6 30.0 77.1 0.0 2015-2016
## 2376 502.3 55.2 35.0 57.7 0.0 2015-2016
## 2377 491.5 52.9 33.3 79.2 0.0 2015-2016
## 2378 488.5 48.9 31.3 75.3 0.0 2015-2016
## 2379 488.2 45.6 23.6 79.5 0.0 2015-2016
## 2380 508.7 49.1 29.5 57.5 0.0 2015-2016
## 2381 511.4 45.2 25.3 30.6 0.0 2015-2016
## 2382 523.8 39.3 19.4 32.4 0.0 2015-2016
## 2383 519.8 50.0 31.3 57.8 0.0 2015-2016
## 2384 515.7 47.0 28.3 34.7 0.0 2015-2016
## 2385 541.0 51.0 32.4 33.7 0.0 2015-2016
## 2386 516.9 55.5 36.5 80.3 0.0 2015-2016
## 2387 563.6 53.8 32.4 8.3 0.0 2015-2016
## 2388 360.8 45.9 27.8 28.1 0.0 2015-2016
## 2389 360.5 41.3 23.9 29.9 0.0 2015-2016
## 2390 361.0 43.5 25.7 31.0 0.0 2015-2016
## 2391 360.6 49.9 32.2 7.5 0.0 2015-2016
## 2392 357.0 44.2 28.1 7.0 0.0 2015-2016
## 2393 363.1 46.3 29.3 27.4 0.0 2015-2016
## 2394 360.7 46.1 28.8 7.2 0.0 2015-2016
## 2395 362.0 47.7 30.4 52.2 0.0 2015-2016
## 2396 358.4 44.1 26.5 51.1 0.0 2015-2016
## 2397 362.3 50.8 36.3 7.1 0.0 2015-2016
## 2398 358.4 38.2 21.6 7.3 0.0 2015-2016
## 2399 358.7 41.6 25.2 29.3 0.0 2015-2016
## 2400 366.2 53.4 35.2 28.4 0.0 2015-2016
## 2401 359.7 39.1 21.5 7.5 0.0 2015-2016
## 2402 374.2 42.8 26.7 7.4 0.0 2015-2016
## 2403 363.7 46.0 27.6 29.1 0.0 2015-2016
## 2404 365.6 44.7 29.8 7.0 0.0 2015-2016
## 2405 353.7 39.7 24.0 50.8 0.0 2015-2016
## 2406 368.0 46.4 27.8 32.1 0.0 2015-2016
## 2407 360.6 44.0 31.1 29.6 0.0 2015-2016
## 2408 367.6 42.9 28.1 6.9 0.0 2015-2016
## 2409 377.9 43.5 26.9 7.3 0.0 2015-2016
## 2410 369.6 43.1 26.7 6.7 0.0 2015-2016
## 2411 369.6 39.9 25.2 30.9 0.0 2015-2016
## 2412 366.0 41.7 25.3 29.8 0.0 2015-2016
## 2413 367.1 50.0 31.0 30.3 0.0 2015-2016
## 2414 359.2 50.2 32.7 7.4 0.0 2015-2016
## 2415 374.0 46.8 29.8 8.3 0.0 2015-2016
## 2416 366.5 43.6 26.9 53.0 0.0 2015-2016
## 2417 385.1 43.3 25.2 30.9 0.0 2015-2016
## 2418 375.2 38.7 21.7 32.4 0.0 2015-2016
## 2419 362.1 43.9 24.1 31.4 0.0 2015-2016
## 2420 364.0 40.9 22.4 7.3 0.0 2015-2016
## 2421 361.3 48.5 30.7 30.3 0.0 2015-2016
## 2422 370.0 40.9 23.1 8.4 0.0 2015-2016
## 2423 377.9 44.0 26.7 30.7 0.0 2015-2016
## 2424 370.3 48.7 29.0 53.4 0.0 2015-2016
## 2425 365.2 43.9 26.2 54.1 0.0 2015-2016
## 2426 376.3 45.5 27.0 32.2 0.0 2015-2016
## 2427 371.2 42.1 25.2 7.7 0.0 2015-2016
## 2428 369.1 48.7 30.2 31.4 0.0 2015-2016
## 2429 383.0 47.9 30.4 7.3 0.0 2015-2016
## 2430 364.6 45.2 27.8 29.2 0.0 2015-2016
## 2431 391.3 44.1 28.3 7.5 0.0 2015-2016
## 2432 368.2 48.3 29.1 54.0 0.0 2015-2016
## 2433 372.9 40.7 23.2 29.2 0.0 2015-2016
## 2434 368.0 46.2 29.5 80.5 0.0 2015-2016
## 2435 388.9 44.4 25.4 7.5 0.0 2015-2016
## 2436 383.3 45.3 32.1 7.4 0.0 2015-2016
## 2437 392.4 42.7 24.6 7.6 0.0 2015-2016
## 2438 383.3 49.1 36.0 52.7 0.0 2015-2016
## 2439 400.8 48.1 30.0 31.6 0.0 2015-2016
## 2440 396.4 42.9 25.3 57.8 0.0 2015-2016
## 2441 435.8 43.6 24.4 28.0 0.0 2015-2016
## 2442 456.4 57.1 39.4 27.0 0.0 2015-2016
## 2443 453.0 49.4 30.1 27.5 0.0 2015-2016
## 2444 454.7 47.4 27.7 29.1 0.0 2015-2016
## 2445 450.1 52.5 33.1 74.9 0.0 2015-2016
## 2446 454.2 61.4 41.7 29.4 0.0 2015-2016
## 2447 451.5 74.1 55.2 50.8 0.0 2015-2016
## 2448 455.0 57.0 35.8 52.5 0.0 2015-2016
## 2449 470.1 59.0 39.6 27.7 0.0 2015-2016
## 2450 467.6 71.2 52.3 6.2 0.0 2015-2016
## 2451 467.7 55.7 36.5 53.1 0.0 2015-2016
## 2452 459.0 62.7 42.2 52.8 0.0 2015-2016
## 2453 469.0 58.7 42.1 28.5 0.0 2015-2016
## 2454 470.7 75.9 53.9 29.4 0.0 2015-2016
## 2455 469.0 62.3 42.4 55.9 0.0 2015-2016
## 2456 470.0 76.2 55.3 28.2 0.0 2015-2016
## 2457 468.2 63.7 44.5 28.5 0.0 2015-2016
## 2458 448.6 66.9 47.2 77.7 0.0 2015-2016
## 2459 464.7 73.5 53.4 51.0 0.0 2015-2016
## 2460 460.8 68.3 48.1 54.2 0.0 2015-2016
## 2461 457.6 57.0 40.4 27.6 0.0 2015-2016
## 2462 464.2 51.8 32.2 78.6 0.0 2015-2016
## 2463 480.5 53.9 36.9 28.9 0.0 2015-2016
## 2464 461.5 59.0 39.7 27.8 0.0 2015-2016
## 2465 476.6 50.7 30.4 53.9 0.0 2015-2016
## 2466 473.3 69.0 49.1 52.7 0.0 2015-2016
## 2467 454.7 142.2 125.6 27.6 0.0 2015-2016
## 2468 474.0 74.0 53.6 50.3 0.0 2015-2016
## 2469 443.0 88.0 69.9 99.2 0.0 2015-2016
## 2470 462.9 57.3 37.7 53.4 0.0 2015-2016
## 2471 446.1 70.7 50.9 75.9 0.0 2015-2016
## 2472 458.9 97.0 76.8 27.7 0.0 2015-2016
## 2473 492.2 50.8 33.3 5.9 0.0 2015-2016
## 2474 459.9 52.9 34.8 74.6 0.0 2015-2016
## 2475 472.3 47.7 34.0 78.1 0.0 2015-2016
## 2476 478.4 47.1 26.4 54.3 0.0 2015-2016
## 2477 484.8 56.2 35.1 54.7 0.0 2015-2016
## 2478 464.6 76.4 58.5 76.5 0.0 2015-2016
## 2479 474.2 61.9 42.8 78.8 0.0 2015-2016
## 2480 459.6 99.5 81.3 77.4 0.0 2015-2016
## 2481 468.2 56.3 38.1 54.5 0.0 2015-2016
## 2482 465.7 62.6 42.4 55.5 0.0 2015-2016
## 2483 458.5 65.5 45.7 28.6 0.0 2015-2016
## 2484 472.6 87.1 69.1 53.3 0.0 2015-2016
## 2485 469.0 70.6 51.8 77.6 0.0 2015-2016
## 2486 488.9 64.8 44.2 55.3 0.0 2015-2016
## 2487 462.8 54.8 38.0 53.2 0.0 2015-2016
## 2488 463.9 67.8 46.9 78.4 0.0 2015-2016
## 2489 456.3 59.6 40.1 101.0 0.0 2015-2016
## 2490 466.4 88.1 68.2 28.7 0.0 2015-2016
## 2491 473.1 67.4 46.7 54.0 0.0 2015-2016
## 2492 467.8 91.8 72.2 52.5 0.0 2015-2016
## 2493 450.3 66.2 46.9 130.8 0.0 2015-2016
## 2494 472.0 82.5 63.0 52.9 0.0 2015-2016
## 2495 471.7 53.2 33.7 76.8 0.0 2015-2016
## 2496 473.7 68.9 49.5 77.2 0.0 2015-2016
## 2497 463.8 55.0 34.8 80.3 0.0 2015-2016
## 2498 467.6 47.4 27.1 80.9 0.0 2015-2016
## 2499 477.7 62.8 44.8 54.9 0.0 2015-2016
## 2500 498.8 54.4 34.6 5.5 0.0 2015-2016
## 2501 466.9 75.4 55.6 82.5 0.0 2015-2016
## 2502 470.1 107.1 86.9 83.8 0.0 2015-2016
## 2503 487.7 69.5 49.9 54.6 0.0 2015-2016
## 2504 479.1 77.7 57.3 57.5 0.0 2015-2016
## 2505 478.8 64.0 43.7 28.9 0.0 2015-2016
## 2506 480.3 52.8 33.3 84.5 0.0 2015-2016
## 2507 475.3 74.5 56.8 52.8 0.0 2015-2016
## 2508 471.2 55.2 34.5 129.7 0.0 2015-2016
## 2509 472.8 72.4 53.5 55.4 0.0 2015-2016
## 2510 480.1 65.1 45.7 81.5 0.0 2015-2016
## 2511 476.5 110.0 92.1 101.2 0.0 2015-2016
## 2512 488.3 75.5 57.9 81.0 0.0 2015-2016
## 2513 468.5 77.1 59.4 123.6 0.0 2015-2016
## 2514 482.7 75.6 52.8 81.0 0.0 2015-2016
## 2515 471.5 66.6 47.5 107.8 0.0 2015-2016
## 2516 459.2 62.2 41.7 103.9 0.0 2015-2016
## 2517 451.7 75.1 56.1 104.0 0.0 2015-2016
## 2518 466.3 71.0 50.5 86.3 0.0 2015-2016
## 2519 493.7 65.1 42.4 82.9 0.0 2015-2016
## 2520 472.0 73.4 53.6 109.4 0.0 2015-2016
## 2521 510.7 51.1 28.8 33.7 0.0 2015-2016
## 2522 494.1 57.4 33.9 59.3 0.0 2015-2016
## 2523 477.2 100.8 80.8 107.0 0.0 2015-2016
## 2524 498.6 69.1 48.2 84.4 0.0 2015-2016
## 2525 481.8 72.8 54.1 106.2 0.0 2015-2016
## 2526 493.2 82.1 62.5 106.8 0.0 2015-2016
## 2527 498.1 49.8 28.3 56.2 0.0 2015-2016
## 2528 485.1 70.4 49.4 108.3 0.0 2015-2016
## 2529 502.3 55.2 32.7 82.1 0.0 2015-2016
## 2530 512.0 46.4 25.6 85.8 0.0 2015-2016
## 2531 514.7 57.4 34.3 61.2 0.0 2015-2016
## 2532 484.2 102.7 82.0 82.0 0.0 2015-2016
## 2533 494.6 51.5 32.5 86.7 0.0 2015-2016
## 2534 503.9 66.5 44.9 111.5 0.0 2015-2016
## 2535 504.8 75.6 54.7 83.8 0.0 2015-2016
## 2536 493.9 121.9 102.8 54.3 0.0 2015-2016
## 2537 506.3 63.8 43.0 57.1 0.0 2015-2016
## 2538 483.4 60.3 38.9 86.6 0.0 2015-2016
## 2539 497.0 84.2 62.5 110.2 0.0 2015-2016
## 2540 521.0 102.1 81.1 54.7 0.0 2015-2016
## 2541 531.5 58.2 37.5 86.4 0.0 2015-2016
## 2542 494.8 56.9 31.7 145.2 0.0 2015-2016
## 2543 506.0 91.1 67.8 112.9 0.0 2015-2016
## 2544 573.0 58.5 39.3 0.0 2467.5 2015-2016
## 2545 567.2 49.9 30.7 0.0 2443.5 2015-2016
## 2546 583.3 48.0 29.4 0.0 2486.3 2015-2016
## 2547 572.4 47.8 20.8 0.0 2460.9 2015-2016
## 2548 563.5 46.5 26.5 0.0 2448.2 2015-2016
## 2549 576.8 48.7 28.8 60.0 2465.4 2015-2016
## 2550 574.9 50.3 30.3 60.0 2468.3 2015-2016
## 2551 561.9 55.2 33.9 120.0 2483.6 2015-2016
## 2552 589.1 42.2 23.9 0.0 2472.4 2015-2016
## 2553 577.5 44.4 24.8 0.0 2476.8 2015-2016
## 2554 585.7 52.1 32.1 60.0 2489.1 2015-2016
## 2555 595.5 46.3 27.4 0.0 2537.5 2015-2016
## 2556 610.3 44.8 24.4 60.0 2560.1 2015-2016
## 2557 588.8 48.6 28.6 0.0 2518.3 2015-2016
## 2558 580.2 44.4 25.2 0.0 2474.5 2015-2016
## 2559 579.0 44.2 24.5 0.0 2461.0 2015-2016
## 2560 592.9 43.6 24.5 0.0 2535.0 2015-2016
## 2561 598.8 45.2 25.9 0.0 2521.0 2015-2016
## 2562 584.8 43.2 23.9 60.0 2480.9 2015-2016
## 2563 583.2 47.4 27.0 60.0 2530.1 2015-2016
## 2564 562.7 44.1 22.9 180.0 2374.7 2015-2016
## 2565 564.4 45.8 31.0 60.0 2439.1 2015-2016
## 2566 598.4 49.0 29.9 0.0 2547.5 2015-2016
## 2567 599.7 44.5 24.5 120.0 2541.1 2015-2016
## 2568 583.5 49.4 29.4 60.0 2494.8 2015-2016
## 2569 577.3 46.5 26.7 60.0 2515.3 2015-2016
## 2570 573.7 43.1 23.2 60.0 2451.0 2015-2016
## 2571 587.9 49.3 28.5 60.0 2515.7 2015-2016
## 2572 590.8 44.7 26.5 0.0 2548.3 2015-2016
## 2573 574.1 58.5 38.6 120.0 2449.2 2015-2016
## 2574 571.7 49.2 30.1 120.0 2460.8 2015-2016
## 2575 577.8 40.5 21.2 0.0 2464.4 2015-2016
## 2576 601.0 54.5 34.6 0.0 2574.8 2015-2016
## 2577 570.8 45.6 28.3 120.0 2463.9 2015-2016
## 2578 591.9 50.5 30.9 60.0 2539.8 2015-2016
## 2579 579.1 43.0 24.6 0.0 2498.6 2015-2016
## 2580 598.2 45.7 26.3 0.0 2538.2 2015-2016
## 2581 597.0 45.9 27.8 60.0 2556.1 2015-2016
## 2582 586.3 46.9 27.6 120.0 2497.9 2015-2016
## 2583 604.3 48.9 26.5 0.0 2557.3 2015-2016
## 2584 594.5 63.8 42.8 60.0 2553.5 2015-2016
## 2585 592.0 63.1 43.5 60.0 2545.7 2015-2016
## 2586 620.5 46.3 25.6 0.0 2597.8 2015-2016
## 2587 606.0 48.7 26.7 60.0 2608.7 2015-2016
## 2588 614.1 43.9 26.3 60.0 2577.7 2015-2016
## 2589 560.9 57.4 38.0 180.0 2430.8 2015-2016
## 2590 633.1 44.9 24.4 0.0 2681.9 2015-2016
## 2591 606.4 64.2 44.6 60.0 2627.1 2015-2016
## 2592 593.6 53.1 32.4 0.0 2533.2 2015-2016
## 2593 616.5 58.2 37.3 60.0 2622.6 2015-2016
## 2594 591.5 53.9 34.2 60.0 2526.3 2015-2016
## 2595 582.4 53.3 31.1 120.0 2536.6 2015-2016
## 2596 578.2 46.8 29.5 0.0 2495.4 2015-2016
## 2597 616.2 42.2 22.2 60.0 2564.4 2015-2016
## 2598 602.2 48.5 30.9 0.0 2588.0 2015-2016
## 2599 622.4 50.9 30.9 60.0 2636.3 2015-2016
## 2600 576.7 48.1 27.8 120.0 2454.7 2015-2016
## 2601 607.0 59.3 37.5 60.0 2594.1 2015-2016
## 2602 608.3 53.9 34.8 120.0 2592.5 2015-2016
## 2603 589.4 46.6 26.4 120.0 2526.1 2015-2016
## 2604 603.2 44.9 25.6 120.0 2562.0 2015-2016
## 2605 610.3 93.5 72.8 60.0 2625.5 2015-2016
## 2606 593.9 50.8 30.3 180.0 2534.4 2015-2016
## 2607 630.5 48.1 27.4 0.0 2699.5 2015-2016
## 2608 626.0 52.1 31.4 120.0 2636.3 2015-2016
## 2609 572.1 49.2 27.5 120.0 2465.6 2015-2016
## 2610 621.4 47.3 25.6 0.0 2653.3 2015-2016
## 2611 616.3 58.2 36.3 0.0 2617.1 2015-2016
## 2612 637.6 47.1 25.1 0.0 2645.5 2015-2016
## 2613 591.7 53.7 32.9 120.0 2530.9 2015-2016
## 2614 633.4 55.1 32.7 60.0 2670.6 2015-2016
## 2615 607.2 54.2 30.4 120.0 2620.2 2015-2016
## 2616 630.5 55.7 33.6 60.0 2673.5 2015-2016
## 2617 599.9 58.3 37.7 60.0 2608.0 2015-2016
## 2618 603.7 56.0 35.6 60.0 2591.7 2015-2016
## 2619 597.9 52.8 31.3 120.0 2548.2 2015-2016
## 2620 606.3 48.8 31.6 120.0 2540.6 2015-2016
## 2621 586.8 59.0 38.0 180.0 2514.4 2015-2016
## 2622 617.9 58.2 38.7 180.0 2661.5 2015-2016
## 2623 635.5 47.5 26.1 120.0 2664.2 2015-2016
## 2624 600.6 52.4 74.3 60.0 2592.3 2015-2016
## 2625 628.8 46.4 25.0 60.0 2610.6 2015-2016
## 2626 671.6 44.7 23.8 60.0 2779.5 2015-2016
## 2627 619.9 54.7 32.7 120.0 2615.6 2015-2016
## 2628 636.3 48.0 24.1 120.0 2641.8 2015-2016
## 2629 586.4 50.3 28.0 120.0 2587.5 2015-2016
## 2630 619.3 51.0 28.0 120.0 2616.0 2015-2016
## 2631 636.4 56.2 32.8 0.0 2629.1 2015-2016
## 2632 587.4 45.2 25.1 180.0 2557.4 2015-2016
## 2633 623.3 54.5 32.3 180.0 2659.9 2015-2016
## 2634 650.1 68.1 46.4 60.0 2779.1 2015-2016
## 2635 608.5 41.6 22.9 60.0 2586.2 2015-2016
## 2636 645.9 58.3 33.4 120.0 2731.1 2015-2016
## 2637 628.5 52.1 32.1 120.0 2678.8 2015-2016
## 2638 606.3 51.4 30.2 240.0 2608.6 2015-2016
## 2639 622.3 57.2 35.3 120.0 2677.5 2015-2016
## 2640 633.3 45.7 24.0 0.0 2720.5 2015-2016
## 2641 657.6 51.9 29.9 120.0 2760.1 2015-2016
## 2642 655.9 50.7 29.9 120.0 2806.2 2015-2016
## 2643 691.1 63.6 40.6 60.0 2964.8 2015-2016
## 2644 659.9 57.5 35.1 120.0 2801.4 2015-2016
## 2645 650.6 57.5 35.8 240.0 2694.3 2015-2016
## 2646 691.5 49.3 28.0 120.0 2890.8 2015-2016
## 2647 609.8 50.2 30.1 60.0 2649.8 2015-2016
## 2648 317.1 44.1 25.0 30.5 0.0 2015-2016
## 2649 331.9 43.6 25.3 5.8 0.0 2015-2016
## 2650 328.2 41.4 22.1 29.5 0.0 2015-2016
## 2651 318.1 40.9 19.9 5.6 0.0 2015-2016
## 2652 325.2 43.7 25.0 28.5 0.0 2015-2016
## 2653 323.6 52.1 32.3 28.1 0.0 2015-2016
## 2654 318.0 43.0 22.6 5.3 0.0 2015-2016
## 2655 330.7 45.1 27.4 5.7 0.0 2015-2016
## 2656 332.4 43.9 23.2 6.0 0.0 2015-2016
## 2657 324.4 44.4 27.8 27.4 0.0 2015-2016
## 2658 322.9 39.6 22.1 5.4 0.0 2015-2016
## 2659 330.7 41.5 21.2 29.3 0.0 2015-2016
## 2660 314.6 46.5 26.4 28.6 0.0 2015-2016
## 2661 320.2 45.8 27.4 5.5 0.0 2015-2016
## 2662 329.4 44.9 26.1 29.0 0.0 2015-2016
## 2663 319.8 39.6 19.7 5.4 0.0 2015-2016
## 2664 324.9 44.8 24.6 4.9 0.0 2015-2016
## 2665 322.0 43.5 25.1 5.0 0.0 2015-2016
## 2666 332.9 44.0 25.9 5.1 0.0 2015-2016
## 2667 319.6 53.3 35.3 50.3 0.0 2015-2016
## 2668 330.4 50.2 31.0 27.6 0.0 2015-2016
## 2669 331.5 43.9 23.9 5.4 0.0 2015-2016
## 2670 329.2 46.4 28.2 28.4 0.0 2015-2016
## 2671 335.8 44.3 26.2 27.9 0.0 2015-2016
## 2672 322.7 41.4 21.8 6.5 0.0 2015-2016
## 2673 327.5 49.5 29.5 28.1 0.0 2015-2016
## 2674 324.9 49.9 31.2 53.1 0.0 2015-2016
## 2675 321.1 51.0 32.9 49.8 0.0 2015-2016
## 2676 333.1 44.1 24.0 28.3 0.0 2015-2016
## 2677 340.7 46.7 24.4 29.9 0.0 2015-2016
## 2678 332.1 47.7 28.8 28.4 0.0 2015-2016
## 2679 331.6 47.0 26.9 52.9 0.0 2015-2016
## 2680 337.0 45.8 24.8 5.6 0.0 2015-2016
## 2681 342.5 46.7 29.1 5.8 0.0 2015-2016
## 2682 339.6 50.6 31.5 28.7 0.0 2015-2016
## 2683 328.0 53.0 33.9 28.5 0.0 2015-2016
## 2684 324.8 62.3 41.1 52.1 0.0 2015-2016
## 2685 332.4 49.4 33.1 5.3 0.0 2015-2016
## 2686 338.1 43.9 26.7 5.3 0.0 2015-2016
## 2687 336.4 49.7 31.5 5.6 0.0 2015-2016
## 2688 331.2 49.4 28.8 5.4 0.0 2015-2016
## 2689 331.5 49.0 28.4 27.4 0.0 2015-2016
## 2690 326.1 51.6 31.6 75.3 0.0 2015-2016
## 2691 336.8 48.4 29.3 6.0 0.0 2015-2016
## 2692 322.6 46.9 26.3 101.5 0.0 2015-2016
## 2693 331.5 45.2 23.2 53.6 0.0 2015-2016
## 2694 337.8 46.9 23.4 56.5 0.0 2015-2016
## 2695 352.1 43.1 22.4 5.9 0.0 2015-2016
## 2696 331.5 53.4 32.6 75.4 0.0 2015-2016
## 2697 341.0 48.5 27.5 105.4 0.0 2015-2016
## 2698 341.5 45.5 27.1 5.3 0.0 2015-2016
## 2699 338.5 49.3 29.9 29.1 0.0 2015-2016
## 2700 334.1 46.6 27.0 5.4 0.0 2015-2016
## 2701 319.7 48.9 30.4 27.2 0.0 2015-2016
## 2702 328.1 44.0 24.5 27.6 0.0 2015-2016
## 2703 332.0 53.9 35.0 30.0 0.0 2015-2016
## 2704 338.3 42.7 20.7 5.6 0.0 2015-2016
## 2705 340.0 46.9 25.6 29.9 0.0 2015-2016
## 2706 348.3 43.1 22.0 30.9 0.0 2015-2016
## 2707 342.8 47.7 26.2 80.1 0.0 2015-2016
## 2708 467.8 38.3 22.3 8.4 0.0 2015-2016
## 2709 476.9 38.5 22.7 8.5 0.0 2015-2016
## 2710 476.6 43.4 27.4 8.6 0.0 2015-2016
## 2711 471.8 39.5 23.5 32.3 0.0 2015-2016
## 2712 473.1 40.6 25.9 7.9 0.0 2015-2016
## 2713 470.0 40.6 24.9 31.5 0.0 2015-2016
## 2714 478.9 43.3 27.1 8.9 0.0 2015-2016
## 2715 473.6 40.3 24.3 8.8 0.0 2015-2016
## 2716 466.7 50.4 33.3 9.2 0.0 2015-2016
## 2717 473.7 43.4 26.2 31.0 0.0 2015-2016
## 2718 478.6 40.7 23.8 33.3 0.0 2015-2016
## 2719 481.2 46.5 30.0 31.2 0.0 2015-2016
## 2720 485.8 48.3 32.6 8.6 0.0 2015-2016
## 2721 478.2 44.3 27.0 31.3 0.0 2015-2016
## 2722 484.7 44.8 27.7 8.7 0.0 2015-2016
## 2723 476.8 42.7 25.9 9.0 0.0 2015-2016
## 2724 474.3 42.3 25.0 33.2 0.0 2015-2016
## 2725 489.5 44.0 28.2 9.2 0.0 2015-2016
## 2726 474.9 47.8 31.8 56.8 0.0 2015-2016
## 2727 468.2 54.4 37.8 52.6 0.0 2015-2016
## 2728 480.1 45.6 28.7 31.2 0.0 2015-2016
## 2729 482.2 46.9 29.9 32.3 0.0 2015-2016
## 2730 495.1 39.8 22.6 9.6 0.0 2015-2016
## 2731 486.9 46.1 30.2 8.9 0.0 2015-2016
## 2732 492.5 44.5 27.7 31.8 0.0 2015-2016
## 2733 490.7 42.4 26.9 8.5 0.0 2015-2016
## 2734 475.6 38.8 19.1 53.5 0.0 2015-2016
## 2735 495.5 44.4 26.6 9.6 0.0 2015-2016
## 2736 484.8 42.6 25.8 8.8 0.0 2015-2016
## 2737 485.3 48.9 31.7 32.6 0.0 2015-2016
## 2738 480.5 44.9 27.7 56.0 0.0 2015-2016
## 2739 491.1 39.4 23.2 34.3 0.0 2015-2016
## 2740 475.2 48.7 31.1 55.8 0.0 2015-2016
## 2741 478.8 50.1 32.2 54.9 0.0 2015-2016
## 2742 488.6 48.4 29.0 32.7 0.0 2015-2016
## 2743 467.9 41.7 25.7 54.3 0.0 2015-2016
## 2744 489.1 48.6 32.4 32.2 0.0 2015-2016
## 2745 500.1 48.1 31.4 8.8 0.0 2015-2016
## 2746 486.9 42.5 24.2 32.2 0.0 2015-2016
## 2747 492.2 45.2 31.9 9.2 0.0 2015-2016
## 2748 495.2 42.4 24.8 32.7 0.0 2015-2016
## 2749 494.8 45.3 27.6 32.8 0.0 2015-2016
## 2750 489.9 43.2 27.0 33.2 0.0 2015-2016
## 2751 487.3 46.0 28.0 9.9 0.0 2015-2016
## 2752 489.8 43.4 24.1 33.6 0.0 2015-2016
## 2753 473.8 40.0 22.9 79.1 0.0 2015-2016
## 2754 488.6 51.7 34.1 56.1 0.0 2015-2016
## 2755 486.3 43.7 26.4 56.6 0.0 2015-2016
## 2756 493.8 42.5 24.3 9.1 0.0 2015-2016
## 2757 472.5 45.8 25.6 61.3 0.0 2015-2016
## 2758 504.4 43.8 24.7 9.7 0.0 2015-2016
## 2759 485.6 45.2 28.5 33.2 0.0 2015-2016
## 2760 480.7 39.9 22.9 9.3 0.0 2015-2016
## 2761 472.6 41.4 24.4 78.9 0.0 2015-2016
## 2762 494.6 51.2 32.9 33.3 0.0 2015-2016
## 2763 486.0 42.2 24.6 54.2 0.0 2015-2016
## 2764 489.5 41.4 24.8 32.4 0.0 2015-2016
## 2765 503.3 49.1 31.0 34.1 0.0 2015-2016
## 2766 492.8 49.2 32.3 81.2 0.0 2015-2016
## 2767 483.7 49.0 30.6 58.5 0.0 2015-2016
## 2768 506.8 42.5 24.7 33.3 0.0 2015-2016
## 2769 503.4 49.8 31.2 35.1 0.0 2015-2016
## 2770 492.8 41.7 24.5 9.2 0.0 2015-2016
## 2771 501.0 49.6 32.3 32.4 0.0 2015-2016
## 2772 511.8 42.6 24.7 34.5 0.0 2015-2016
## 2773 496.6 47.3 30.6 33.3 0.0 2015-2016
## 2774 497.2 48.5 30.3 34.1 0.0 2015-2016
## 2775 524.5 46.3 29.3 9.5 0.0 2015-2016
## 2776 493.3 47.8 30.9 58.2 0.0 2015-2016
## 2777 512.2 41.3 23.6 34.0 0.0 2015-2016
## 2778 504.6 38.3 21.5 60.6 0.0 2015-2016
## 2779 520.0 50.0 29.4 9.7 0.0 2015-2016
## 2780 510.6 49.0 29.7 35.4 0.0 2015-2016
## 2781 492.1 49.8 32.5 59.8 0.0 2015-2016
## 2782 480.4 43.9 26.8 56.5 0.0 2015-2016
## 2783 509.6 42.5 24.6 34.8 0.0 2015-2016
## 2784 528.9 42.7 25.3 10.4 0.0 2015-2016
## 2785 503.6 46.8 28.9 34.0 0.0 2015-2016
## 2786 500.8 53.0 35.9 62.2 0.0 2015-2016
## 2787 520.0 47.1 28.5 61.0 0.0 2015-2016
## 2788 525.5 46.7 28.0 34.3 0.0 2015-2016
## 2789 526.0 50.0 31.2 61.5 0.0 2015-2016
## 2790 510.2 51.0 31.9 58.8 0.0 2015-2016
## 2791 527.4 48.5 30.1 9.3 0.0 2015-2016
## 2792 500.1 44.2 26.4 59.5 0.0 2015-2016
## 2793 525.8 45.8 27.4 35.8 0.0 2015-2016
## 2794 499.5 48.9 32.8 106.0 0.0 2015-2016
## 2795 512.0 45.4 28.2 59.5 0.0 2015-2016
## 2796 524.0 46.7 27.7 62.2 0.0 2015-2016
## 2797 531.1 52.8 35.2 62.2 0.0 2015-2016
## 2798 560.0 49.4 31.9 34.8 0.0 2015-2016
## 2799 542.5 48.4 28.7 10.9 0.0 2015-2016
## 2800 522.1 48.3 28.5 85.1 0.0 2015-2016
## 2801 537.1 49.6 29.8 9.4 0.0 2015-2016
## 2802 517.1 49.9 30.9 87.9 0.0 2015-2016
## 2803 560.4 51.0 32.8 66.2 0.0 2015-2016
## 2804 590.7 55.1 35.2 10.5 0.0 2015-2016
## 2805 533.3 52.6 33.7 61.3 0.0 2015-2016
## 2806 557.8 57.4 37.3 68.0 0.0 2015-2016
## 2807 558.0 43.9 24.9 66.3 0.0 2015-2016
## 2808 590.6 42.5 24.4 39.1 0.0 2015-2016
## 2809 552.9 54.0 35.2 36.6 0.0 2015-2016
## 2810 535.1 41.4 25.4 0.8 2315.2 2015-2016
## 2811 551.1 43.4 27.9 0.0 2381.3 2015-2016
## 2812 546.8 36.8 21.8 0.3 2374.9 2015-2016
## 2813 549.8 40.4 24.1 60.6 2357.0 2015-2016
## 2814 562.7 47.4 31.8 0.3 2434.6 2015-2016
## 2815 553.8 44.5 26.5 0.7 2400.6 2015-2016
## 2816 565.5 40.4 24.2 0.7 2412.3 2015-2016
## 2817 553.3 42.0 25.6 1.0 2369.4 2015-2016
## 2818 563.9 41.6 24.8 0.5 2412.4 2015-2016
## 2819 549.3 39.0 23.6 60.3 2378.5 2015-2016
## 2820 579.7 43.8 27.4 61.1 2428.2 2015-2016
## 2821 562.6 49.5 31.0 1.0 2433.4 2015-2016
## 2822 548.2 53.8 38.3 61.1 2354.6 2015-2016
## 2823 556.8 44.7 27.5 60.7 2389.6 2015-2016
## 2824 571.5 46.3 30.1 0.7 2446.0 2015-2016
## 2825 550.0 44.8 28.0 0.7 2381.6 2015-2016
## 2826 559.9 43.0 27.1 60.3 2402.7 2015-2016
## 2827 577.1 42.2 24.6 121.0 2427.6 2015-2016
## 2828 565.2 41.1 23.5 61.2 2400.9 2015-2016
## 2829 551.1 46.6 31.6 60.4 2385.1 2015-2016
## 2830 546.0 43.7 28.3 120.3 2373.8 2015-2016
## 2831 549.7 44.4 27.7 120.4 2388.4 2015-2016
## 2832 559.3 48.2 32.2 61.0 2443.3 2015-2016
## 2833 587.3 53.3 34.7 1.1 2491.7 2015-2016
## 2834 596.8 41.6 24.1 1.2 2531.0 2015-2016
## 2835 592.3 49.1 32.8 1.3 2545.4 2015-2016
## 2836 563.5 42.5 25.9 61.0 2437.3 2015-2016
## 2837 579.5 45.6 28.3 60.7 2444.4 2015-2016
## 2838 575.3 47.9 30.9 0.6 2469.9 2015-2016
## 2839 575.3 45.1 27.7 61.1 2461.0 2015-2016
## 2840 557.8 48.2 31.7 0.1 2413.6 2015-2016
## 2841 575.5 44.3 24.4 61.7 2450.5 2015-2016
## 2842 601.3 44.2 26.8 1.3 2503.2 2015-2016
## 2843 573.4 44.8 27.7 0.8 2470.8 2015-2016
## 2844 565.8 41.0 24.5 1.2 2432.2 2015-2016
## 2845 570.2 55.5 37.5 1.9 2475.1 2015-2016
## 2846 606.6 48.6 32.2 0.7 2579.0 2015-2016
## 2847 576.3 45.7 29.1 0.8 2486.4 2015-2016
## 2848 576.3 37.5 18.0 1.3 2441.8 2015-2016
## 2849 568.7 44.4 27.3 1.6 2458.2 2015-2016
## 2850 583.0 42.7 26.0 61.2 2470.8 2015-2016
## 2851 542.4 39.9 23.5 120.9 2359.4 2015-2016
## 2852 608.7 36.7 21.2 0.8 2565.6 2015-2016
## 2853 558.0 47.6 30.3 180.2 2407.3 2015-2016
## 2854 590.3 53.8 35.7 61.4 2516.2 2015-2016
## 2855 584.8 45.1 27.0 61.5 2473.6 2015-2016
## 2856 579.8 41.9 24.2 60.6 2475.5 2015-2016
## 2857 599.4 47.5 29.5 2.1 2573.1 2015-2016
## 2858 582.5 48.0 29.9 61.6 2474.4 2015-2016
## 2859 556.5 46.0 28.5 120.9 2449.5 2015-2016
## 2860 590.3 47.0 31.5 60.6 2509.8 2015-2016
## 2861 626.8 44.9 28.3 1.6 2628.2 2015-2016
## 2862 582.3 42.6 26.3 121.3 2453.0 2015-2016
## 2863 588.6 41.6 25.2 0.7 2464.8 2015-2016
## 2864 569.8 40.5 23.1 61.2 2412.2 2015-2016
## 2865 543.5 40.0 24.0 61.5 2375.4 2015-2016
## 2866 623.5 46.9 29.3 0.9 2622.2 2015-2016
## 2867 553.7 50.2 34.8 180.9 2402.5 2015-2016
## 2868 564.4 48.3 34.0 120.9 2389.7 2015-2016
## 2869 560.7 44.1 29.4 60.4 2392.4 2015-2016
## 2870 565.2 51.1 34.1 120.9 2466.6 2015-2016
## 2871 622.9 54.3 35.9 1.0 2643.0 2015-2016
## 2872 599.7 50.9 33.9 180.4 2525.6 2015-2016
## 2873 584.6 39.2 21.4 0.9 2466.6 2015-2016
## 2874 603.1 41.1 23.9 61.8 2498.5 2015-2016
## 2875 601.7 45.7 26.6 1.0 2521.4 2015-2016
## 2876 601.5 51.8 32.8 61.3 2572.6 2015-2016
## 2877 600.4 46.4 28.1 1.9 2578.9 2015-2016
## 2878 588.9 53.0 35.0 61.2 2532.3 2015-2016
## 2879 588.1 49.1 31.4 61.1 2486.4 2015-2016
## 2880 614.8 52.9 35.6 61.2 2637.7 2015-2016
## 2881 596.1 49.5 31.4 1.2 2560.6 2015-2016
## 2882 583.7 40.9 25.1 60.7 2510.5 2015-2016
## 2883 581.4 48.6 32.3 181.6 2457.8 2015-2016
## 2884 603.0 47.8 31.0 61.8 2566.4 2015-2016
## 2885 600.8 53.8 37.3 61.1 2557.7 2015-2016
## 2886 592.6 45.6 29.0 0.9 2575.8 2015-2016
## 2887 617.2 53.2 35.7 61.5 2608.2 2015-2016
## 2888 614.7 55.1 35.2 61.4 2648.3 2015-2016
## 2889 599.8 45.6 28.3 61.4 2552.5 2015-2016
## 2890 606.7 45.1 25.5 62.5 2555.4 2015-2016
## 2891 576.0 49.7 31.6 60.8 2505.3 2015-2016
## 2892 574.7 41.8 22.3 181.5 2498.0 2015-2016
## 2893 611.8 50.0 32.3 61.1 2657.3 2015-2016
## 2894 595.0 50.6 31.3 121.7 2547.4 2015-2016
## 2895 656.2 45.7 27.7 61.9 2724.8 2015-2016
## 2896 602.5 49.2 31.6 61.4 2564.7 2015-2016
## 2897 580.8 51.3 33.0 121.8 2513.1 2015-2016
## 2898 654.1 49.0 30.6 121.4 2708.1 2015-2016
## 2899 611.0 43.2 25.2 1.8 2628.3 2015-2016
## 2900 601.2 49.5 31.4 121.7 2590.3 2015-2016
## 2901 641.4 53.1 33.9 181.8 2729.9 2015-2016
## 2902 640.0 51.3 31.8 123.2 2728.7 2015-2016
## 2903 586.6 45.3 27.8 61.5 2473.4 2015-2016
## 2904 647.6 47.4 29.7 61.3 2678.5 2015-2016
## 2905 679.0 57.2 38.0 2.1 2905.8 2015-2016
## 2906 646.5 48.6 30.3 182.3 2738.9 2015-2016
## 2907 645.2 48.2 29.7 61.3 2702.6 2015-2016
## 2908 700.1 51.4 30.9 122.6 2888.8 2015-2016
## 2909 402.9 37.5 21.5 8.8 0.0 2015-2016
## 2910 405.1 34.1 21.0 10.9 0.0 2015-2016
## 2911 412.2 35.9 22.3 10.1 0.0 2015-2016
## 2912 404.0 39.0 24.0 27.8 0.0 2015-2016
## 2913 407.5 42.1 27.6 8.8 0.0 2015-2016
## 2914 400.5 39.5 23.3 8.8 0.0 2015-2016
## 2915 405.7 41.8 23.4 8.8 0.0 2015-2016
## 2916 407.3 40.1 22.6 8.9 0.0 2015-2016
## 2917 394.5 38.6 23.1 30.4 0.0 2015-2016
## 2918 407.2 44.1 28.9 30.7 0.0 2015-2016
## 2919 407.4 35.7 22.3 52.6 0.0 2015-2016
## 2920 400.5 42.4 27.8 30.2 0.0 2015-2016
## 2921 406.8 44.7 27.5 8.6 0.0 2015-2016
## 2922 410.3 39.1 22.7 54.9 0.0 2015-2016
## 2923 405.2 44.1 27.5 9.4 0.0 2015-2016
## 2924 410.3 40.9 29.1 33.0 0.0 2015-2016
## 2925 405.0 44.1 29.8 30.8 0.0 2015-2016
## 2926 400.9 45.7 27.7 52.7 0.0 2015-2016
## 2927 406.1 40.7 22.7 52.8 0.0 2015-2016
## 2928 398.4 38.9 22.3 31.6 0.0 2015-2016
## 2929 405.3 43.8 28.5 52.4 0.0 2015-2016
## 2930 416.2 44.7 27.6 32.8 0.0 2015-2016
## 2931 403.7 39.9 24.8 32.4 0.0 2015-2016
## 2932 417.4 41.4 24.1 33.0 0.0 2015-2016
## 2933 407.8 46.4 29.5 56.6 0.0 2015-2016
## 2934 427.3 45.0 28.6 9.3 0.0 2015-2016
## 2935 425.2 42.9 27.0 33.1 0.0 2015-2016
## 2936 408.2 40.9 24.1 84.6 0.0 2015-2016
## 2937 434.3 44.7 27.9 56.3 0.0 2015-2016
## 2938 330.8 37.3 23.6 53.5 0.0 2015-2016
## 2939 339.0 35.3 21.7 32.2 0.0 2015-2016
## 2940 335.9 40.4 23.5 32.1 0.0 2015-2016
## 2941 333.7 39.0 21.7 31.8 0.0 2015-2016
## 2942 339.1 43.1 27.8 8.8 0.0 2015-2016
## 2943 339.8 49.6 33.7 8.3 0.0 2015-2016
## 2944 340.4 37.3 21.0 54.8 0.0 2015-2016
## 2945 340.6 40.0 24.4 32.8 0.0 2015-2016
## 2946 340.6 42.5 27.5 30.2 0.0 2015-2016
## 2947 339.8 39.7 24.1 9.1 0.0 2015-2016
## 2948 336.5 38.4 23.2 51.6 0.0 2015-2016
## 2949 339.0 48.6 31.6 8.6 0.0 2015-2016
## 2950 341.5 42.7 26.6 55.2 0.0 2015-2016
## 2951 344.4 42.5 26.2 52.8 0.0 2015-2016
## 2952 342.4 38.0 22.6 8.7 0.0 2015-2016
## 2953 340.5 38.5 22.2 8.7 0.0 2015-2016
## 2954 339.6 42.5 27.6 52.0 0.0 2015-2016
## 2955 347.4 41.0 25.5 31.5 0.0 2015-2016
## 2956 349.5 40.8 23.9 9.3 0.0 2015-2016
## 2957 344.0 46.5 28.2 57.3 0.0 2015-2016
## 2958 350.6 39.2 23.3 34.3 0.0 2015-2016
## 2959 349.6 45.0 29.8 32.4 0.0 2015-2016
## 2960 340.6 48.1 31.0 79.0 0.0 2015-2016
## 2961 341.2 44.2 27.0 31.6 0.0 2015-2016
## 2962 345.9 42.3 25.8 32.8 0.0 2015-2016
## 2963 327.9 37.6 22.6 9.3 0.0 2015-2016
## 2964 344.1 46.0 30.0 53.6 0.0 2015-2016
## 2965 341.5 39.9 24.4 52.1 0.0 2015-2016
## 2966 344.7 47.6 31.4 55.1 0.0 2015-2016
## 2967 345.9 45.6 29.4 33.6 0.0 2015-2016
## 2968 342.5 41.8 25.8 33.4 0.0 2015-2016
## 2969 347.9 41.8 25.0 10.2 0.0 2015-2016
## 2970 345.3 43.1 27.4 9.8 0.0 2015-2016
## 2971 348.4 54.9 40.2 33.8 0.0 2015-2016
## 2972 355.1 45.2 29.0 10.5 0.0 2015-2016
## 2973 345.0 42.4 25.1 78.4 0.0 2015-2016
## 2974 344.5 47.0 30.9 9.2 0.0 2015-2016
## 2975 353.0 48.3 30.7 80.7 0.0 2015-2016
## 2976 335.0 44.8 29.7 33.0 0.0 2015-2016
## 2977 338.4 39.2 22.7 33.3 0.0 2015-2016
## 2978 346.1 50.2 32.7 34.2 0.0 2015-2016
## 2979 361.5 41.1 24.9 9.9 0.0 2015-2016
## 2980 349.9 47.7 31.1 57.9 0.0 2015-2016
## 2981 353.5 54.5 38.2 8.8 0.0 2015-2016
## 2982 340.5 41.0 24.8 59.1 0.0 2015-2016
## 2983 356.2 37.6 22.3 81.7 0.0 2015-2016
## 2984 352.7 43.9 27.8 32.7 0.0 2015-2016
## 2985 343.6 47.9 29.3 58.9 0.0 2015-2016
## 2986 351.2 40.4 24.3 57.3 0.0 2015-2016
## 2987 356.6 57.2 40.4 58.4 0.0 2015-2016
## 2988 351.4 49.1 34.7 85.2 0.0 2015-2016
## 2989 354.7 38.9 21.8 61.9 0.0 2015-2016
## 2990 363.9 41.9 23.5 61.5 0.0 2015-2016
## 2991 344.0 46.2 24.3 33.9 0.0 2015-2016
## 2992 348.0 47.6 30.1 59.1 0.0 2015-2016
## 2993 374.6 45.5 29.2 60.5 0.0 2015-2016
## 2994 371.8 47.8 29.9 84.6 0.0 2015-2016
## 2995 433.0 41.2 26.0 5.1 0.0 2015-2016
## 2996 436.5 43.1 28.0 5.0 0.0 2015-2016
## 2997 440.9 40.6 23.0 5.1 0.0 2015-2016
## 2998 435.2 38.3 22.0 4.8 0.0 2015-2016
## 2999 431.6 40.2 24.0 26.6 0.0 2015-2016
## 3000 432.2 41.0 24.0 26.3 0.0 2015-2016
## 3001 434.5 42.5 25.0 5.4 0.0 2015-2016
## 3002 433.3 42.9 26.0 27.9 0.0 2015-2016
## 3003 430.4 41.4 25.0 25.9 0.0 2015-2016
## 3004 441.4 42.3 25.0 5.2 0.0 2015-2016
## 3005 427.5 41.6 22.0 26.8 0.0 2015-2016
## 3006 444.1 41.0 23.0 5.5 0.0 2015-2016
## 3007 451.8 47.4 32.0 4.8 0.0 2015-2016
## 3008 444.0 43.8 26.0 25.6 0.0 2015-2016
## 3009 452.3 43.6 23.0 5.0 0.0 2015-2016
## 3010 438.2 44.0 26.0 25.3 0.0 2015-2016
## 3011 443.5 44.8 29.0 4.9 0.0 2015-2016
## 3012 434.6 41.9 24.0 26.6 0.0 2015-2016
## 3013 445.0 44.3 26.0 27.3 0.0 2015-2016
## 3014 441.6 42.6 25.0 5.6 0.0 2015-2016
## 3015 440.7 43.0 27.0 27.5 0.0 2015-2016
## 3016 439.5 42.1 26.0 5.5 0.0 2015-2016
## 3017 429.6 51.4 35.0 68.2 0.0 2015-2016
## 3018 450.5 42.0 25.0 5.3 0.0 2015-2016
## 3019 449.6 45.3 25.0 28.3 0.0 2015-2016
## 3020 451.7 40.9 23.0 4.8 0.0 2015-2016
## 3021 449.0 38.3 22.0 27.6 0.0 2015-2016
## 3022 439.3 47.6 28.0 5.3 0.0 2015-2016
## 3023 447.6 50.2 33.0 5.4 0.0 2015-2016
## 3024 444.5 45.3 27.0 48.4 0.0 2015-2016
## 3025 440.0 49.7 32.0 26.8 0.0 2015-2016
## 3026 436.9 43.1 26.0 46.2 0.0 2015-2016
## 3027 446.4 46.1 28.0 5.3 0.0 2015-2016
## 3028 455.4 46.4 28.0 6.0 0.0 2015-2016
## 3029 456.4 44.6 26.0 27.0 0.0 2015-2016
## 3030 455.8 41.5 24.0 26.5 0.0 2015-2016
## 3031 453.2 42.0 23.0 5.5 0.0 2015-2016
## 3032 439.3 50.0 33.0 48.1 0.0 2015-2016
## 3033 439.5 46.7 29.0 25.0 0.0 2015-2016
## 3034 445.2 48.1 30.0 27.0 0.0 2015-2016
## 3035 451.3 51.7 35.0 26.6 0.0 2015-2016
## 3036 462.9 43.5 26.0 5.3 0.0 2015-2016
## 3037 443.3 46.5 29.0 5.5 0.0 2015-2016
## 3038 459.9 41.7 26.0 5.0 0.0 2015-2016
## 3039 447.7 56.5 39.0 27.6 0.0 2015-2016
## 3040 441.9 44.8 27.0 49.3 0.0 2015-2016
## 3041 460.0 42.6 25.0 5.1 0.0 2015-2016
## 3042 472.2 36.8 20.0 4.6 0.0 2015-2016
## 3043 452.0 42.6 23.0 27.1 0.0 2015-2016
## 3044 430.7 55.3 38.0 89.3 0.0 2015-2016
## 3045 460.4 46.3 29.0 27.0 0.0 2015-2016
## 3046 456.0 41.8 25.0 27.4 0.0 2015-2016
## 3047 455.3 48.6 32.0 27.5 0.0 2015-2016
## 3048 452.9 48.9 31.0 27.9 0.0 2015-2016
## 3049 447.2 44.2 27.0 27.7 0.0 2015-2016
## 3050 453.5 47.6 28.0 51.4 0.0 2015-2016
## 3051 449.4 46.2 27.0 49.9 0.0 2015-2016
## 3052 447.6 44.9 26.0 49.7 0.0 2015-2016
## 3053 470.6 42.9 24.0 5.5 0.0 2015-2016
## 3054 459.5 46.1 28.0 27.3 0.0 2015-2016
## 3055 466.0 45.4 27.0 5.5 0.0 2015-2016
## 3056 473.8 43.4 26.0 5.4 0.0 2015-2016
## 3057 454.2 44.6 26.0 50.5 0.0 2015-2016
## 3058 438.9 42.1 24.0 72.1 0.0 2015-2016
## 3059 466.0 50.5 32.0 5.2 0.0 2015-2016
## 3060 471.7 42.3 25.0 6.3 0.0 2015-2016
## 3061 444.3 43.6 26.0 28.3 0.0 2015-2016
## 3062 460.0 46.8 30.0 28.4 0.0 2015-2016
## 3063 466.1 42.2 25.0 27.4 0.0 2015-2016
## 3064 471.0 42.9 26.0 4.4 0.0 2015-2016
## 3065 452.0 43.7 26.0 26.9 0.0 2015-2016
## 3066 456.2 54.2 35.0 50.7 0.0 2015-2016
## 3067 456.9 48.7 33.0 29.6 0.0 2015-2016
## 3068 470.6 53.6 37.0 5.8 0.0 2015-2016
## 3069 465.3 47.8 27.0 5.3 0.0 2015-2016
## 3070 453.3 46.8 29.0 50.3 0.0 2015-2016
## 3071 445.9 50.9 31.0 74.3 0.0 2015-2016
## 3072 457.8 51.3 33.0 29.2 0.0 2015-2016
## 3073 487.6 45.8 28.0 5.5 0.0 2015-2016
## 3074 463.7 46.9 29.0 50.2 0.0 2015-2016
## 3075 470.5 52.8 35.0 5.5 0.0 2015-2016
## 3076 458.7 45.4 28.0 72.5 0.0 2015-2016
## 3077 444.5 51.8 32.0 69.7 0.0 2015-2016
## 3078 487.6 49.7 32.0 5.4 0.0 2015-2016
## 3079 474.3 46.1 27.0 28.0 0.0 2015-2016
## 3080 459.9 50.9 30.0 75.1 0.0 2015-2016
## 3081 473.7 46.1 28.0 51.0 0.0 2015-2016
## 3082 475.3 49.7 29.0 5.8 0.0 2015-2016
## 3083 464.8 45.3 26.0 54.0 0.0 2015-2016
## 3084 466.9 51.4 34.0 27.8 0.0 2015-2016
## 3085 483.8 47.2 29.0 30.1 0.0 2015-2016
## 3086 475.7 48.1 28.0 51.0 0.0 2015-2016
## 3087 469.8 45.2 24.0 56.4 0.0 2015-2016
## 3088 485.3 49.1 31.0 5.9 0.0 2015-2016
## 3089 496.5 54.3 32.0 6.8 0.0 2015-2016
## 3090 476.9 56.5 36.0 53.7 0.0 2015-2016
## 3091 498.3 51.2 32.0 28.7 0.0 2015-2016
## 3092 494.9 55.0 37.0 26.5 0.0 2015-2016
## 3093 508.6 46.7 28.0 28.7 0.0 2015-2016
## 3094 478.0 67.1 48.0 53.7 0.0 2015-2016
## 3095 488.7 67.8 48.0 53.4 0.0 2015-2016
## 3096 504.8 46.2 30.0 78.6 0.0 2015-2016
## 3097 396.3 39.7 24.0 6.1 0.0 2015-2016
## 3098 378.3 37.9 22.0 5.5 0.0 2015-2016
## 3099 375.5 37.0 23.0 5.4 0.0 2015-2016
## 3100 380.6 39.0 23.0 5.1 0.0 2015-2016
## 3101 379.5 39.0 26.0 5.2 0.0 2015-2016
## 3102 392.7 43.4 29.0 5.5 0.0 2015-2016
## 3103 379.4 37.1 21.0 5.3 0.0 2015-2016
## 3104 384.4 37.1 21.0 5.6 0.0 2015-2016
## 3105 389.0 39.8 26.0 4.7 0.0 2015-2016
## 3106 400.3 35.8 22.0 28.5 0.0 2015-2016
## 3107 375.8 39.6 24.0 25.9 0.0 2015-2016
## 3108 379.7 38.5 23.0 26.0 0.0 2015-2016
## 3109 381.5 43.0 27.0 5.5 0.0 2015-2016
## 3110 392.9 38.6 23.0 47.8 0.0 2015-2016
## 3111 375.3 42.4 25.0 27.0 0.0 2015-2016
## 3112 396.1 44.2 27.0 5.4 0.0 2015-2016
## 3113 378.7 42.3 26.0 27.3 0.0 2015-2016
## 3114 389.8 43.0 26.0 5.0 0.0 2015-2016
## 3115 389.7 52.1 37.0 48.3 0.0 2015-2016
## 3116 394.2 41.8 24.0 5.0 0.0 2015-2016
## 3117 382.3 37.5 21.0 48.3 0.0 2015-2016
## 3118 388.2 43.8 26.0 25.9 0.0 2015-2016
## 3119 400.0 45.8 27.0 27.7 0.0 2015-2016
## 3120 389.7 48.2 30.0 27.5 0.0 2015-2016
## 3121 393.3 46.4 29.0 27.1 0.0 2015-2016
## 3122 400.2 46.0 28.0 27.5 0.0 2015-2016
## 3123 392.3 44.6 28.0 26.6 0.0 2015-2016
## 3124 420.9 36.2 19.0 5.7 0.0 2015-2016
## 3125 412.8 43.2 24.0 27.3 0.0 2015-2016
## 3126 428.8 41.9 23.0 52.9 0.0 2015-2016
## 3127 333.1 38.2 24.0 6.5 0.0 2015-2016
## 3128 333.1 34.4 22.0 28.3 0.0 2015-2016
## 3129 334.8 38.7 24.0 5.4 0.0 2015-2016
## 3130 330.0 41.3 25.0 26.5 0.0 2015-2016
## 3131 336.7 38.7 23.0 5.6 0.0 2015-2016
## 3132 335.1 38.5 25.0 27.3 0.0 2015-2016
## 3133 335.9 39.1 25.0 27.9 0.0 2015-2016
## 3134 341.5 40.5 24.0 28.1 0.0 2015-2016
## 3135 342.4 41.2 24.0 5.0 0.0 2015-2016
## 3136 339.8 47.2 30.0 5.3 0.0 2015-2016
## 3137 338.9 41.5 25.0 4.9 0.0 2015-2016
## 3138 342.8 44.8 27.0 5.3 0.0 2015-2016
## 3139 335.2 43.2 30.0 48.7 0.0 2015-2016
## 3140 340.7 48.0 30.0 5.3 0.0 2015-2016
## 3141 339.9 44.2 29.0 26.8 0.0 2015-2016
## 3142 343.6 39.2 21.0 5.6 0.0 2015-2016
## 3143 340.6 41.8 25.0 28.0 0.0 2015-2016
## 3144 338.6 39.8 25.0 25.6 0.0 2015-2016
## 3145 330.5 47.6 29.0 26.9 0.0 2015-2016
## 3146 342.6 44.5 29.0 28.9 0.0 2015-2016
## 3147 334.5 46.6 28.0 26.7 0.0 2015-2016
## 3148 337.2 45.6 29.0 26.6 0.0 2015-2016
## 3149 336.8 42.2 23.0 27.7 0.0 2015-2016
## 3150 349.8 43.9 24.0 28.1 0.0 2015-2016
## 3151 333.8 44.0 24.0 27.0 0.0 2015-2016
## 3152 343.0 38.5 23.0 5.5 0.0 2015-2016
## 3153 344.9 43.6 26.0 5.2 0.0 2015-2016
## 3154 347.0 37.7 22.0 5.9 0.0 2015-2016
## 3155 346.2 45.9 26.0 27.6 0.0 2015-2016
## 3156 337.7 45.3 29.0 48.5 0.0 2015-2016
## 3157 343.1 37.5 21.0 28.3 0.0 2015-2016
## 3158 338.9 48.9 33.0 47.3 0.0 2015-2016
## 3159 339.1 43.0 26.0 29.4 0.0 2015-2016
## 3160 351.8 44.3 26.0 5.8 0.0 2015-2016
## 3161 364.1 36.0 28.0 5.8 0.0 2015-2016
## 3162 340.2 46.3 31.0 26.9 0.0 2015-2016
## 3163 335.3 43.1 25.0 49.9 0.0 2015-2016
## 3164 342.3 43.6 25.0 54.1 0.0 2015-2016
## 3165 343.6 40.0 23.0 5.7 0.0 2015-2016
## 3166 345.1 44.5 28.0 5.6 0.0 2015-2016
## 3167 354.6 42.4 24.0 52.3 0.0 2015-2016
## 3168 357.5 47.5 31.0 5.5 0.0 2015-2016
## 3169 344.7 47.0 30.0 74.9 0.0 2015-2016
## 3170 361.6 44.9 28.0 28.9 0.0 2015-2016
## 3171 364.4 42.1 32.0 5.4 0.0 2015-2016
## 3172 350.1 42.7 25.0 30.7 0.0 2015-2016
## 3173 370.7 45.6 28.0 5.8 0.0 2015-2016
## 3174 355.4 43.7 27.0 53.2 0.0 2015-2016
## 3175 366.9 39.3 28.0 30.8 0.0 2015-2016
## 3176 362.5 41.1 23.0 5.3 0.0 2015-2016
## 3177 349.4 45.2 28.0 51.6 0.0 2015-2016
## 3178 351.7 52.7 33.0 29.0 0.0 2015-2016
## 3179 356.9 45.3 25.0 5.6 0.0 2015-2016
## 3180 353.7 45.0 27.0 5.5 0.0 2015-2016
## 3181 376.0 51.7 29.0 54.4 0.0 2015-2016
## 3182 357.5 49.0 29.0 29.9 0.0 2015-2016
## 3183 348.4 43.1 23.0 32.6 0.0 2015-2016
## 3184 369.0 41.6 21.0 30.5 0.0 2015-2016
## 3185 377.4 44.0 25.0 130.5 0.0 2015-2016
## 3186 460.2 44.6 25.0 6.4 0.0 2015-2016
## 3187 473.8 47.4 26.0 6.3 0.0 2015-2016
## 3188 455.5 57.5 37.0 26.3 0.0 2015-2016
## 3189 480.0 48.4 28.0 6.3 0.0 2015-2016
## 3190 475.6 47.2 26.0 29.2 0.0 2015-2016
## 3191 471.7 46.8 25.0 29.0 0.0 2015-2016
## 3192 456.6 52.5 33.0 26.7 0.0 2015-2016
## 3193 475.7 49.0 26.0 27.7 0.0 2015-2016
## 3194 478.9 46.5 25.0 29.0 0.0 2015-2016
## 3195 474.0 51.6 31.0 28.2 0.0 2015-2016
## 3196 484.7 39.4 17.0 6.4 0.0 2015-2016
## 3197 467.0 53.7 34.0 50.3 0.0 2015-2016
## 3198 475.8 47.8 25.0 28.7 0.0 2015-2016
## 3199 480.7 46.7 26.0 6.6 0.0 2015-2016
## 3200 483.8 49.3 23.0 29.5 0.0 2015-2016
## 3201 483.6 50.2 27.0 6.6 0.0 2015-2016
## 3202 477.3 46.2 23.0 29.0 0.0 2015-2016
## 3203 490.8 42.4 23.0 6.3 0.0 2015-2016
## 3204 509.1 44.0 24.0 6.7 0.0 2015-2016
## 3205 479.3 47.6 27.0 28.0 0.0 2015-2016
## 3206 469.5 46.5 37.0 28.0 0.0 2015-2016
## 3207 465.7 48.9 29.0 48.8 0.0 2015-2016
## 3208 481.9 48.0 27.0 6.3 0.0 2015-2016
## 3209 490.1 47.6 26.0 29.6 0.0 2015-2016
## 3210 481.8 48.2 26.0 6.7 0.0 2015-2016
## 3211 486.8 48.5 27.0 30.0 0.0 2015-2016
## 3212 468.4 51.3 30.0 71.4 0.0 2015-2016
## 3213 481.9 45.5 26.0 29.9 0.0 2015-2016
## 3214 485.2 51.5 29.0 27.8 0.0 2015-2016
## 3215 501.7 46.1 24.0 6.4 0.0 2015-2016
## 3216 481.8 52.3 30.0 53.9 0.0 2015-2016
## 3217 481.3 47.2 25.0 30.3 0.0 2015-2016
## 3218 475.7 47.5 25.0 53.5 0.0 2015-2016
## 3219 476.6 46.8 29.0 49.2 0.0 2015-2016
## 3220 475.3 48.5 28.0 6.3 0.0 2015-2016
## 3221 477.5 46.3 27.0 75.6 0.0 2015-2016
## 3222 489.0 44.7 21.0 52.9 0.0 2015-2016
## 3223 485.0 68.2 46.0 29.9 0.0 2015-2016
## 3224 490.0 49.8 27.0 51.3 0.0 2015-2016
## 3225 479.7 59.1 37.0 27.9 0.0 2015-2016
## 3226 483.0 50.8 26.0 6.5 0.0 2015-2016
## 3227 482.1 50.0 28.0 29.3 0.0 2015-2016
## 3228 502.7 46.4 24.0 6.7 0.0 2015-2016
## 3229 486.8 45.6 24.0 28.4 0.0 2015-2016
## 3230 482.5 47.8 26.0 51.7 0.0 2015-2016
## 3231 506.1 50.1 27.0 6.8 0.0 2015-2016
## 3232 506.2 51.0 29.0 7.1 0.0 2015-2016
## 3233 500.7 50.8 29.0 26.8 0.0 2015-2016
## 3234 495.8 48.6 25.0 55.1 0.0 2015-2016
## 3235 507.9 48.5 26.0 6.7 0.0 2015-2016
## 3236 495.7 48.6 25.0 29.4 0.0 2015-2016
## 3237 485.5 42.9 21.0 29.6 0.0 2015-2016
## 3238 498.3 49.5 27.0 54.3 0.0 2015-2016
## 3239 499.5 45.8 23.0 31.1 0.0 2015-2016
## 3240 479.7 56.5 35.0 78.2 0.0 2015-2016
## 3241 502.8 50.5 26.0 31.5 0.0 2015-2016
## 3242 515.8 42.3 21.0 30.4 0.0 2015-2016
## 3243 504.8 49.8 27.0 6.7 0.0 2015-2016
## 3244 491.1 48.4 26.0 6.6 0.0 2015-2016
## 3245 516.9 51.6 30.0 7.7 0.0 2015-2016
## 3246 507.9 45.8 25.0 29.3 0.0 2015-2016
## 3247 494.9 51.6 29.0 29.4 0.0 2015-2016
## 3248 499.7 46.4 24.0 6.4 0.0 2015-2016
## 3249 498.1 50.1 26.0 30.4 0.0 2015-2016
## 3250 502.9 44.2 22.0 30.6 0.0 2015-2016
## 3251 498.4 45.8 22.0 30.8 0.0 2015-2016
## 3252 511.2 44.2 23.0 56.3 0.0 2015-2016
## 3253 493.7 47.4 24.0 31.2 0.0 2015-2016
## 3254 494.5 54.3 30.0 54.8 0.0 2015-2016
## 3255 509.2 48.5 27.0 55.4 0.0 2015-2016
## 3256 507.0 43.5 21.0 30.1 0.0 2015-2016
## 3257 491.4 46.9 26.0 53.1 0.0 2015-2016
## 3258 518.4 46.9 28.0 6.6 0.0 2015-2016
## 3259 534.2 53.2 32.0 30.1 0.0 2015-2016
## 3260 500.3 50.3 29.0 53.0 0.0 2015-2016
## 3261 511.6 48.2 26.0 54.6 0.0 2015-2016
## 3262 496.6 53.5 30.0 52.8 0.0 2015-2016
## 3263 529.5 52.9 30.0 6.7 0.0 2015-2016
## 3264 510.4 52.5 29.0 57.8 0.0 2015-2016
## 3265 524.1 49.9 26.0 32.0 0.0 2015-2016
## 3266 518.2 50.8 28.0 6.8 0.0 2015-2016
## 3267 518.9 61.6 40.0 53.3 0.0 2015-2016
## 3268 499.5 50.8 28.0 79.8 0.0 2015-2016
## 3269 516.1 56.7 31.0 56.2 0.0 2015-2016
## 3270 502.7 51.3 27.0 59.4 0.0 2015-2016
## 3271 539.8 50.9 27.0 31.2 0.0 2015-2016
## 3272 508.8 49.9 26.0 59.8 0.0 2015-2016
## 3273 545.0 50.0 26.0 33.6 0.0 2015-2016
## 3274 321.5 43.2 24.0 7.0 0.0 2015-2016
## 3275 324.5 48.4 28.0 50.8 0.0 2015-2016
## 3276 326.7 50.6 29.0 28.9 0.0 2015-2016
## 3277 332.7 47.5 28.0 29.2 0.0 2015-2016
## 3278 332.6 58.9 38.0 29.1 0.0 2015-2016
## 3279 328.1 56.1 36.0 28.3 0.0 2015-2016
## 3280 332.3 60.3 40.0 49.9 0.0 2015-2016
## 3281 319.5 49.0 28.0 6.4 0.0 2015-2016
## 3282 331.5 52.0 31.0 29.6 0.0 2015-2016
## 3283 330.0 48.0 27.0 29.4 0.0 2015-2016
## 3284 335.2 50.3 29.0 53.1 0.0 2015-2016
## 3285 321.8 55.3 33.0 28.0 0.0 2015-2016
## 3286 336.9 62.3 40.0 76.1 0.0 2015-2016
## 3287 325.5 50.4 30.0 28.0 0.0 2015-2016
## 3288 325.8 49.6 27.0 28.1 0.0 2015-2016
## 3289 330.5 49.7 29.0 29.5 0.0 2015-2016
## 3290 326.3 61.6 40.0 51.6 0.0 2015-2016
## 3291 334.2 52.6 35.0 28.8 0.0 2015-2016
## 3292 326.4 54.4 30.0 51.0 0.0 2015-2016
## 3293 331.3 43.9 25.0 28.7 0.0 2015-2016
## 3294 327.3 62.7 41.0 94.4 0.0 2015-2016
## 3295 317.1 55.5 34.0 72.0 0.0 2015-2016
## 3296 329.6 52.7 31.0 52.7 0.0 2015-2016
## 3297 344.7 54.2 34.0 29.6 0.0 2015-2016
## 3298 334.4 47.1 25.0 7.4 0.0 2015-2016
## 3299 346.8 51.0 30.0 29.0 0.0 2015-2016
## 3300 338.6 44.8 24.0 30.2 0.0 2015-2016
## 3301 335.4 50.0 29.0 6.5 0.0 2015-2016
## 3302 336.3 50.5 29.0 28.5 0.0 2015-2016
## 3303 343.2 47.8 25.0 7.9 0.0 2015-2016
## 3304 340.1 51.1 31.0 53.8 0.0 2015-2016
## 3305 333.8 49.3 27.0 6.5 0.0 2015-2016
## 3306 338.3 48.3 26.0 30.5 0.0 2015-2016
## 3307 332.7 52.7 29.0 54.0 0.0 2015-2016
## 3308 324.3 59.9 39.0 30.5 0.0 2015-2016
## 3309 342.6 54.0 33.0 75.4 0.0 2015-2016
## 3310 335.4 63.4 43.0 31.0 0.0 2015-2016
## 3311 331.8 43.9 21.0 74.5 0.0 2015-2016
## 3312 336.0 72.6 51.0 80.3 0.0 2015-2016
## 3313 334.1 56.5 34.0 78.5 0.0 2015-2016
## 3314 338.3 46.5 25.0 29.0 0.0 2015-2016
## 3315 339.1 48.6 24.0 29.2 0.0 2015-2016
## 3316 361.5 60.3 39.0 7.7 0.0 2015-2016
## 3317 327.0 53.9 30.0 50.3 0.0 2015-2016
## 3318 346.2 50.6 29.0 104.9 0.0 2015-2016
## 3319 336.0 65.1 45.0 78.7 0.0 2015-2016
## 3320 342.3 48.8 26.0 51.6 0.0 2015-2016
## 3321 352.1 64.4 40.0 31.4 0.0 2015-2016
## 3322 346.4 50.3 28.0 82.8 0.0 2015-2016
## 3323 358.4 66.5 47.0 6.6 0.0 2015-2016
## 3324 331.7 57.5 37.0 106.0 0.0 2015-2016
## 3325 352.6 54.1 30.0 57.1 0.0 2015-2016
## 3326 338.5 60.4 39.0 82.5 0.0 2015-2016
## 3327 413.4 41.2 22.0 3.2 0.0 2015-2016
## 3328 415.0 43.1 23.0 3.0 0.0 2015-2016
## 3329 415.0 42.7 24.0 3.0 0.0 2015-2016
## 3330 410.5 40.0 20.0 3.0 0.0 2015-2016
## 3331 417.3 46.0 25.0 3.0 0.0 2015-2016
## 3332 426.8 39.5 18.0 2.9 0.0 2015-2016
## 3333 430.9 45.8 24.0 3.1 0.0 2015-2016
## 3334 422.3 48.9 29.0 3.1 0.0 2015-2016
## 3335 415.9 43.7 23.0 23.2 0.0 2015-2016
## 3336 421.2 45.2 24.0 25.1 0.0 2015-2016
## 3337 418.2 44.0 24.0 25.4 0.0 2015-2016
## 3338 421.9 50.0 30.0 2.9 0.0 2015-2016
## 3339 424.1 42.8 20.0 3.2 0.0 2015-2016
## 3340 416.0 49.4 29.0 3.1 0.0 2015-2016
## 3341 415.6 43.0 24.0 47.5 0.0 2015-2016
## 3342 408.3 45.9 25.0 44.1 0.0 2015-2016
## 3343 428.7 50.7 30.0 3.2 0.0 2015-2016
## 3344 423.1 45.9 25.0 23.7 0.0 2015-2016
## 3345 418.8 49.5 27.0 24.1 0.0 2015-2016
## 3346 428.9 47.4 27.0 3.1 0.0 2015-2016
## 3347 433.1 48.1 26.0 3.0 0.0 2015-2016
## 3348 428.1 47.3 28.0 3.1 0.0 2015-2016
## 3349 431.4 47.1 26.0 3.2 0.0 2015-2016
## 3350 425.7 46.7 25.0 26.4 0.0 2015-2016
## 3351 431.0 49.0 28.0 3.2 0.0 2015-2016
## 3352 432.2 40.4 19.0 3.1 0.0 2015-2016
## 3353 427.9 47.6 24.0 24.4 0.0 2015-2016
## 3354 424.3 46.3 24.0 26.1 0.0 2015-2016
## 3355 427.5 53.5 30.0 3.6 0.0 2015-2016
## 3356 437.5 45.2 24.0 3.3 0.0 2015-2016
## 3357 418.9 45.3 24.0 48.0 0.0 2015-2016
## 3358 422.0 46.4 26.0 43.8 0.0 2015-2016
## 3359 423.9 47.1 25.0 24.3 0.0 2015-2016
## 3360 437.3 47.2 25.0 3.3 0.0 2015-2016
## 3361 424.7 47.1 27.0 24.9 0.0 2015-2016
## 3362 438.8 43.6 23.0 3.4 0.0 2015-2016
## 3363 423.7 43.3 21.0 3.1 0.0 2015-2016
## 3364 426.7 50.4 28.0 3.2 0.0 2015-2016
## 3365 427.2 43.7 22.0 3.2 0.0 2015-2016
## 3366 427.5 44.5 23.0 49.0 0.0 2015-2016
## 3367 435.1 43.7 23.0 26.9 0.0 2015-2016
## 3368 433.3 45.6 25.0 24.2 0.0 2015-2016
## 3369 432.1 50.7 28.0 48.2 0.0 2015-2016
## 3370 425.4 40.9 22.0 24.4 0.0 2015-2016
## 3371 427.3 43.7 23.0 24.7 0.0 2015-2016
## 3372 447.9 47.3 24.0 3.2 0.0 2015-2016
## 3373 425.9 45.0 23.0 24.7 0.0 2015-2016
## 3374 436.4 44.5 24.0 3.3 0.0 2015-2016
## 3375 443.9 42.8 21.0 3.0 0.0 2015-2016
## 3376 439.0 46.9 25.0 3.2 0.0 2015-2016
## 3377 438.0 40.6 19.0 3.0 0.0 2015-2016
## 3378 430.3 53.2 33.0 25.0 0.0 2015-2016
## 3379 430.3 47.0 27.0 2.9 0.0 2015-2016
## 3380 434.1 47.4 26.0 24.5 0.0 2015-2016
## 3381 426.2 51.1 29.0 26.7 0.0 2015-2016
## 3382 431.6 43.5 22.0 26.5 0.0 2015-2016
## 3383 433.6 49.4 27.0 45.3 0.0 2015-2016
## 3384 436.3 53.2 31.0 3.2 0.0 2015-2016
## 3385 429.5 47.0 26.0 24.1 0.0 2015-2016
## 3386 446.1 49.5 28.0 3.1 0.0 2015-2016
## 3387 409.4 48.5 27.0 88.8 0.0 2015-2016
## 3388 438.9 48.3 27.0 3.1 0.0 2015-2016
## 3389 414.5 51.2 30.0 67.7 0.0 2015-2016
## 3390 446.6 53.2 31.0 3.1 0.0 2015-2016
## 3391 432.0 45.5 26.0 25.7 0.0 2015-2016
## 3392 428.3 46.8 26.0 26.3 0.0 2015-2016
## 3393 431.5 46.6 25.0 47.4 0.0 2015-2016
## 3394 436.6 46.6 24.0 46.7 0.0 2015-2016
## 3395 443.1 45.0 24.0 26.4 0.0 2015-2016
## 3396 443.6 46.8 25.0 26.3 0.0 2015-2016
## 3397 428.8 44.9 22.0 24.1 0.0 2015-2016
## 3398 436.3 43.2 22.0 24.6 0.0 2015-2016
## 3399 436.6 48.7 28.0 2.8 0.0 2015-2016
## 3400 436.3 43.1 23.0 45.7 0.0 2015-2016
## 3401 435.4 47.6 25.0 47.2 0.0 2015-2016
## 3402 447.0 47.1 24.0 25.6 0.0 2015-2016
## 3403 442.1 50.5 29.0 25.1 0.0 2015-2016
## 3404 438.7 53.9 33.0 48.7 0.0 2015-2016
## 3405 454.4 44.6 23.0 24.8 0.0 2015-2016
## 3406 454.7 40.4 21.0 24.3 0.0 2015-2016
## 3407 447.4 44.5 23.0 26.2 0.0 2015-2016
## 3408 415.7 46.9 25.0 46.6 0.0 2015-2016
## 3409 443.2 47.7 24.0 3.4 0.0 2015-2016
## 3410 435.4 43.5 21.0 49.5 0.0 2015-2016
## 3411 451.9 51.6 28.0 27.0 0.0 2015-2016
## 3412 440.7 49.6 28.0 47.7 0.0 2015-2016
## 3413 450.5 77.7 55.0 24.5 0.0 2015-2016
## 3414 438.0 49.4 27.0 25.4 0.0 2015-2016
## 3415 451.1 46.0 24.0 24.7 0.0 2015-2016
## 3416 443.6 47.8 27.0 46.8 0.0 2015-2016
## 3417 453.1 49.1 27.0 47.8 0.0 2015-2016
## 3418 451.4 50.1 26.0 3.0 0.0 2015-2016
## 3419 460.7 54.6 33.0 2.9 0.0 2015-2016
## 3420 434.2 57.5 35.0 68.3 0.0 2015-2016
## 3421 463.0 44.8 24.0 3.5 0.0 2015-2016
## 3422 435.9 57.2 33.0 53.0 0.0 2015-2016
## 3423 458.8 50.1 27.0 24.1 0.0 2015-2016
## 3424 431.4 57.4 35.0 100.1 0.0 2015-2016
## 3425 469.8 48.1 25.0 48.2 0.0 2015-2016
## 3426 466.1 49.0 25.0 69.5 0.0 2015-2016
## 3427 469.1 47.7 23.0 26.7 0.0 2015-2016
## 3428 461.4 52.2 29.0 50.1 0.0 2015-2016
## 3429 464.5 43.2 23.0 0.0 2544.9 2015-2016
## 3430 477.5 40.7 20.0 60.0 2552.7 2015-2016
## 3431 467.9 44.5 25.0 0.0 2562.8 2015-2016
## 3432 475.0 52.7 31.0 0.0 2626.3 2015-2016
## 3433 488.5 47.0 26.0 0.0 2644.6 2015-2016
## 3434 474.8 43.4 22.0 60.0 2598.9 2015-2016
## 3435 481.6 50.7 27.0 60.0 2632.6 2015-2016
## 3436 472.4 48.5 27.0 0.0 2600.5 2015-2016
## 3437 470.4 54.7 32.0 60.0 2601.2 2015-2016
## 3438 481.2 49.8 29.0 0.0 2665.0 2015-2016
## 3439 476.5 56.6 35.0 60.0 2628.8 2015-2016
## 3440 479.0 48.5 27.0 60.0 2671.7 2015-2016
## 3441 477.7 58.4 38.0 0.0 2665.9 2015-2016
## 3442 486.2 47.2 24.0 0.0 2690.0 2015-2016
## 3443 483.4 44.1 23.0 0.0 2646.2 2015-2016
## 3444 461.6 46.2 25.0 180.0 2532.3 2015-2016
## 3445 467.6 46.3 24.0 0.0 2544.6 2015-2016
## 3446 480.7 58.1 38.0 0.0 2652.8 2015-2016
## 3447 480.9 58.5 36.0 60.0 2648.0 2015-2016
## 3448 485.5 42.2 22.0 0.0 2712.6 2015-2016
## 3449 452.6 62.2 42.0 60.0 2565.1 2015-2016
## 3450 482.8 41.8 21.0 120.0 2596.6 2015-2016
## 3451 485.6 58.5 36.0 60.0 2686.0 2015-2016
## 3452 471.9 52.2 30.0 120.0 2626.3 2015-2016
## 3453 490.7 45.9 22.0 60.0 2670.3 2015-2016
## 3454 494.5 51.8 30.0 0.0 2720.7 2015-2016
## 3455 484.9 46.7 25.0 120.0 2607.0 2015-2016
## 3456 474.4 48.8 27.0 120.0 2661.0 2015-2016
## 3457 474.4 49.0 27.0 60.0 2631.7 2015-2016
## 3458 471.6 48.9 27.0 60.0 2629.6 2015-2016
## 3459 484.3 44.1 24.0 0.0 2634.9 2015-2016
## 3460 484.3 46.3 24.0 0.0 2693.7 2015-2016
## 3461 478.7 51.5 31.0 60.0 2645.1 2015-2016
## 3462 488.2 52.0 30.0 0.0 2696.4 2015-2016
## 3463 479.5 52.1 29.0 60.0 2649.6 2015-2016
## 3464 483.7 42.9 21.0 60.0 2661.0 2015-2016
## 3465 512.1 51.9 29.0 60.0 2752.3 2015-2016
## 3466 474.6 46.8 26.0 60.0 2659.5 2015-2016
## 3467 487.0 46.0 22.0 60.0 2713.6 2015-2016
## 3468 482.6 53.5 31.0 60.0 2652.5 2015-2016
## 3469 476.4 58.7 36.0 180.0 2605.9 2015-2016
## 3470 490.7 54.0 35.0 60.0 2650.2 2015-2016
## 3471 502.4 50.1 27.0 60.0 2735.8 2015-2016
## 3472 481.8 44.9 24.0 60.0 2624.8 2015-2016
## 3473 508.8 53.6 32.0 0.0 2765.5 2015-2016
## 3474 510.8 48.7 24.0 0.0 2755.0 2015-2016
## 3475 497.8 46.8 23.0 0.0 2716.3 2015-2016
## 3476 497.9 41.3 20.0 0.0 2730.1 2015-2016
## 3477 461.3 60.3 39.0 60.0 2575.4 2015-2016
## 3478 485.1 48.8 27.0 60.0 2669.0 2015-2016
## 3479 486.4 45.5 25.0 0.0 2664.6 2015-2016
## 3480 502.5 62.9 40.0 0.0 2744.4 2015-2016
## 3481 492.3 51.4 28.0 60.0 2668.8 2015-2016
## 3482 499.3 51.6 28.0 0.0 2748.7 2015-2016
## 3483 487.0 53.0 32.0 120.0 2666.0 2015-2016
## 3484 477.2 43.7 22.0 0.0 2626.9 2015-2016
## 3485 495.1 45.7 23.0 0.0 2639.8 2015-2016
## 3486 487.6 50.1 27.0 60.0 2699.6 2015-2016
## 3487 493.4 48.8 26.0 120.0 2647.6 2015-2016
## 3488 489.2 46.3 25.0 60.0 2666.0 2015-2016
## 3489 482.0 46.1 22.0 60.0 2647.4 2015-2016
## 3490 510.6 47.3 26.0 60.0 2737.5 2015-2016
## 3491 497.9 67.8 45.0 0.0 2746.4 2015-2016
## 3492 506.6 52.2 29.0 120.0 2688.6 2015-2016
## 3493 491.6 51.7 31.0 120.0 2638.3 2015-2016
## 3494 507.0 61.0 35.0 120.0 2746.9 2015-2016
## 3495 508.5 50.9 26.0 60.0 2771.9 2015-2016
## 3496 494.6 59.0 37.0 120.0 2705.0 2015-2016
## 3497 480.5 48.8 27.0 60.0 2675.6 2015-2016
## 3498 503.4 66.1 45.0 120.0 2771.9 2015-2016
## 3499 497.4 50.7 27.0 180.0 2743.6 2015-2016
## 3500 470.7 41.3 19.0 0.0 2576.5 2015-2016
## 3501 521.7 74.5 51.0 0.0 2867.8 2015-2016
## 3502 498.5 52.2 29.0 0.0 2743.6 2015-2016
## 3503 519.5 50.1 28.0 0.0 2802.8 2015-2016
## 3504 507.2 50.3 26.0 0.0 2741.8 2015-2016
## 3505 479.6 47.5 25.0 120.0 2658.4 2015-2016
## 3506 515.3 56.1 33.0 60.0 2820.6 2015-2016
## 3507 489.4 59.6 35.0 180.0 2655.9 2015-2016
## 3508 501.9 51.0 27.0 60.0 2764.4 2015-2016
## 3509 510.9 50.5 27.0 60.0 2773.4 2015-2016
## 3510 515.7 60.0 37.0 120.0 2789.2 2015-2016
## 3511 495.7 50.0 27.0 60.0 2732.6 2015-2016
## 3512 517.8 47.1 24.0 60.0 2805.7 2015-2016
## 3513 492.0 52.1 28.0 0.0 2688.8 2015-2016
## 3514 498.0 53.4 31.0 60.0 2699.2 2015-2016
## 3515 517.9 49.6 27.0 180.0 2809.0 2015-2016
## 3516 513.3 58.9 35.0 0.0 2776.8 2015-2016
## 3517 513.2 42.0 19.0 60.0 2723.5 2015-2016
## 3518 501.0 54.7 31.0 60.0 2779.3 2015-2016
## 3519 506.6 53.6 27.0 120.0 2788.5 2015-2016
## 3520 527.3 57.9 36.0 120.0 2808.6 2015-2016
## 3521 492.1 52.9 31.0 120.0 2728.3 2015-2016
## 3522 514.1 63.7 41.0 60.0 2771.0 2015-2016
## 3523 497.2 54.1 31.0 60.0 2703.8 2015-2016
## 3524 465.2 50.9 29.0 240.0 2555.8 2015-2016
## 3525 474.5 44.5 21.0 60.0 2606.4 2015-2016
## 3526 543.9 55.7 33.0 60.0 2898.5 2015-2016
## 3527 550.5 61.1 38.0 60.0 2938.0 2015-2016
## 3528 514.2 44.4 22.0 120.0 2771.3 2015-2016
## 3529 525.1 68.5 44.0 120.0 2835.2 2015-2016
## 3530 525.7 72.6 48.0 240.0 2914.0 2015-2016
## 3531 519.4 64.5 40.0 120.0 2798.0 2015-2016
## 3532 447.7 48.2 27.0 3.3 0.0 2015-2016
## 3533 442.1 44.9 24.0 26.2 0.0 2015-2016
## 3534 441.6 45.8 25.0 25.4 0.0 2015-2016
## 3535 457.3 46.5 25.0 3.6 0.0 2015-2016
## 3536 462.7 52.3 31.0 3.2 0.0 2015-2016
## 3537 448.4 49.9 27.0 3.3 0.0 2015-2016
## 3538 462.7 47.7 25.0 26.7 0.0 2015-2016
## 3539 463.8 49.8 27.0 3.3 0.0 2015-2016
## 3540 462.9 47.5 24.0 3.5 0.0 2015-2016
## 3541 464.9 48.3 25.0 3.8 0.0 2015-2016
## 3542 454.9 46.5 24.0 3.3 0.0 2015-2016
## 3543 458.2 47.0 24.0 26.0 0.0 2015-2016
## 3544 449.6 43.7 21.0 3.4 0.0 2015-2016
## 3545 466.7 48.6 26.0 26.9 0.0 2015-2016
## 3546 470.5 46.8 24.0 3.4 0.0 2015-2016
## 3547 463.1 47.2 25.0 26.5 0.0 2015-2016
## 3548 466.8 55.2 32.0 26.4 0.0 2015-2016
## 3549 457.2 52.3 32.0 3.5 0.0 2015-2016
## 3550 450.3 49.8 28.0 51.7 0.0 2015-2016
## 3551 480.1 49.9 29.0 3.4 0.0 2015-2016
## 3552 476.0 47.9 24.0 3.6 0.0 2015-2016
## 3553 474.3 46.1 25.0 3.7 0.0 2015-2016
## 3554 457.0 51.6 29.0 3.3 0.0 2015-2016
## 3555 458.1 53.0 32.0 27.3 0.0 2015-2016
## 3556 463.2 48.4 26.0 53.2 0.0 2015-2016
## 3557 461.7 48.3 27.0 52.8 0.0 2015-2016
## 3558 474.8 50.0 29.0 3.5 0.0 2015-2016
## 3559 487.1 50.1 30.0 3.5 0.0 2015-2016
## 3560 465.2 51.1 31.0 52.1 0.0 2015-2016
## 3561 481.2 53.6 34.0 78.4 0.0 2015-2016
## 3562 363.9 41.2 22.0 3.8 0.0 2015-2016
## 3563 373.3 42.5 22.0 3.2 0.0 2015-2016
## 3564 363.5 47.1 24.0 3.0 0.0 2015-2016
## 3565 366.2 44.1 24.0 3.2 0.0 2015-2016
## 3566 379.2 43.9 25.0 2.9 0.0 2015-2016
## 3567 376.3 41.6 21.0 3.4 0.0 2015-2016
## 3568 375.7 42.4 22.0 22.9 0.0 2015-2016
## 3569 370.9 42.1 21.0 3.2 0.0 2015-2016
## 3570 371.3 46.7 27.0 2.9 0.0 2015-2016
## 3571 378.6 41.6 21.0 23.4 0.0 2015-2016
## 3572 369.2 48.1 27.0 22.7 0.0 2015-2016
## 3573 378.4 41.5 23.0 23.3 0.0 2015-2016
## 3574 365.4 45.7 26.0 66.7 0.0 2015-2016
## 3575 377.2 45.0 25.0 3.0 0.0 2015-2016
## 3576 378.2 42.3 24.0 2.8 0.0 2015-2016
## 3577 377.9 46.4 26.0 42.8 0.0 2015-2016
## 3578 381.1 47.0 29.0 3.1 0.0 2015-2016
## 3579 377.1 43.9 24.0 23.7 0.0 2015-2016
## 3580 372.2 45.3 24.0 43.0 0.0 2015-2016
## 3581 392.8 49.6 30.0 2.9 0.0 2015-2016
## 3582 381.0 38.6 19.0 3.1 0.0 2015-2016
## 3583 376.4 40.8 22.0 2.8 0.0 2015-2016
## 3584 371.1 44.9 26.0 24.0 0.0 2015-2016
## 3585 375.2 51.1 30.0 44.3 0.0 2015-2016
## 3586 382.9 41.7 23.0 3.0 0.0 2015-2016
## 3587 365.7 46.7 26.0 86.1 0.0 2015-2016
## 3588 393.7 45.0 26.0 3.1 0.0 2015-2016
## 3589 386.3 49.9 29.0 45.0 0.0 2015-2016
## 3590 393.7 44.9 23.0 24.7 0.0 2015-2016
## 3591 385.4 50.5 30.0 45.1 0.0 2015-2016
## 3592 357.4 41.4 21.0 3.7 0.0 2015-2016
## 3593 357.3 37.6 19.0 26.9 0.0 2015-2016
## 3594 356.3 49.0 27.0 3.5 0.0 2015-2016
## 3595 353.7 40.9 21.0 26.9 0.0 2015-2016
## 3596 355.3 43.3 23.0 26.6 0.0 2015-2016
## 3597 351.9 44.5 27.0 3.4 0.0 2015-2016
## 3598 357.8 42.8 22.0 50.4 0.0 2015-2016
## 3599 359.3 43.3 23.0 26.4 0.0 2015-2016
## 3600 352.4 45.7 25.0 26.0 0.0 2015-2016
## 3601 365.8 44.7 24.0 27.0 0.0 2015-2016
## 3602 351.8 49.9 28.0 27.2 0.0 2015-2016
## 3603 349.8 53.6 31.0 26.4 0.0 2015-2016
## 3604 355.5 44.7 24.0 3.8 0.0 2015-2016
## 3605 355.8 44.3 21.0 26.1 0.0 2015-2016
## 3606 360.0 47.2 26.0 26.1 0.0 2015-2016
## 3607 366.5 49.0 27.0 3.6 0.0 2015-2016
## 3608 355.4 47.0 26.0 3.4 0.0 2015-2016
## 3609 341.1 45.1 25.0 25.7 0.0 2015-2016
## 3610 360.2 41.1 20.0 3.6 0.0 2015-2016
## 3611 356.9 43.8 22.0 26.6 0.0 2015-2016
## 3612 362.2 48.9 29.0 25.9 0.0 2015-2016
## 3613 362.8 47.0 28.0 3.5 0.0 2015-2016
## 3614 356.5 49.0 27.0 51.0 0.0 2015-2016
## 3615 361.1 44.0 25.0 3.4 0.0 2015-2016
## 3616 363.4 51.2 29.0 25.9 0.0 2015-2016
## 3617 356.5 42.7 22.0 49.0 0.0 2015-2016
## 3618 361.2 47.6 26.0 26.8 0.0 2015-2016
## 3619 371.4 45.8 25.0 28.9 0.0 2015-2016
## 3620 373.5 50.5 29.0 4.3 0.0 2015-2016
## 3621 360.3 48.0 28.0 51.1 0.0 2015-2016
## 3622 359.2 41.3 19.0 3.6 0.0 2015-2016
## 3623 356.6 44.5 24.0 28.1 0.0 2015-2016
## 3624 374.4 47.3 28.0 29.0 0.0 2015-2016
## 3625 361.2 39.7 18.0 28.3 0.0 2015-2016
## 3626 362.1 49.3 27.0 3.6 0.0 2015-2016
## 3627 364.9 44.1 23.0 28.2 0.0 2015-2016
## 3628 368.6 46.1 24.0 28.6 0.0 2015-2016
## 3629 365.7 42.1 20.0 29.3 0.0 2015-2016
## 3630 361.9 52.4 31.0 29.0 0.0 2015-2016
## 3631 371.2 50.9 29.0 3.6 0.0 2015-2016
## 3632 367.1 48.2 25.0 3.9 0.0 2015-2016
## 3633 366.7 49.2 26.0 28.1 0.0 2015-2016
## 3634 370.3 44.0 22.0 26.3 0.0 2015-2016
## 3635 363.3 49.9 28.0 49.9 0.0 2015-2016
## 3636 357.0 45.5 22.0 28.5 0.0 2015-2016
## 3637 359.0 45.4 22.0 51.1 0.0 2015-2016
## 3638 386.6 49.8 28.0 3.6 0.0 2015-2016
## 3639 382.6 45.7 24.0 4.2 0.0 2015-2016
## 3640 373.3 52.0 29.0 28.4 0.0 2015-2016
## 3641 371.2 49.9 26.0 54.0 0.0 2015-2016
## 3642 355.5 49.0 27.0 3.5 0.0 2015-2016
## 3643 387.0 45.5 25.0 3.7 0.0 2015-2016
## 3644 398.8 46.1 24.0 3.8 0.0 2015-2016
## 3645 393.5 42.3 21.0 3.5 0.0 2015-2016
## 3646 382.2 53.1 32.0 28.1 0.0 2015-2016
## 3647 392.1 52.8 32.0 81.0 0.0 2015-2016
## 3648 390.7 50.9 28.0 56.4 0.0 2015-2016
## 3649 396.4 44.4 25.0 3.7 0.0 2015-2016
## 3650 565.8 42.6 23.0 0.0 2405.3 2016-2017
## 3651 561.6 45.3 23.0 0.0 2389.7 2016-2017
## 3652 577.3 46.7 26.0 60.0 2452.5 2016-2017
## 3653 577.4 47.2 28.0 0.0 2459.1 2016-2017
## 3654 563.3 54.2 32.0 60.0 2423.7 2016-2017
## 3655 573.3 52.8 32.0 0.0 2465.9 2016-2017
## 3656 582.6 47.6 26.0 60.0 2473.8 2016-2017
## 3657 581.0 53.9 32.0 60.0 2489.4 2016-2017
## 3658 574.7 48.5 29.0 60.0 2438.0 2016-2017
## 3659 588.5 48.1 26.0 60.0 2483.5 2016-2017
## 3660 574.5 49.4 28.0 60.0 2452.2 2016-2017
## 3661 571.2 46.4 25.0 60.0 2441.7 2016-2017
## 3662 587.5 42.1 20.0 0.0 2487.6 2016-2017
## 3663 586.0 45.1 25.0 0.0 2472.1 2016-2017
## 3664 568.0 49.4 29.0 120.0 2428.6 2016-2017
## 3665 593.7 47.8 27.0 0.0 2533.9 2016-2017
## 3666 596.4 50.2 27.0 0.0 2529.4 2016-2017
## 3667 588.0 50.4 29.0 60.0 2510.6 2016-2017
## 3668 589.9 54.8 33.0 60.0 2503.2 2016-2017
## 3669 589.2 47.7 27.0 60.0 2502.3 2016-2017
## 3670 590.0 45.7 25.0 60.0 2460.6 2016-2017
## 3671 592.8 59.9 40.0 120.0 2540.5 2016-2017
## 3672 585.9 54.3 33.0 60.0 2476.3 2016-2017
## 3673 575.8 45.9 28.0 60.0 2427.6 2016-2017
## 3674 593.8 49.6 27.0 60.0 2525.3 2016-2017
## 3675 585.2 45.5 24.0 0.0 2488.1 2016-2017
## 3676 609.4 54.4 35.0 0.0 2584.0 2016-2017
## 3677 595.1 46.7 24.0 0.0 2552.8 2016-2017
## 3678 603.2 49.4 28.0 0.0 2546.6 2016-2017
## 3679 561.4 54.9 35.0 180.0 2472.0 2016-2017
## 3680 601.5 50.2 28.0 0.0 2572.9 2016-2017
## 3681 583.1 53.0 32.0 180.0 2464.8 2016-2017
## 3682 605.4 44.7 25.0 0.0 2562.2 2016-2017
## 3683 583.6 60.5 40.0 120.0 2477.8 2016-2017
## 3684 630.6 55.9 32.0 0.0 2671.6 2016-2017
## 3685 606.6 46.9 25.0 60.0 2542.5 2016-2017
## 3686 586.6 45.9 26.0 0.0 2493.8 2016-2017
## 3687 588.9 46.6 25.0 60.0 2490.7 2016-2017
## 3688 589.6 45.3 25.0 120.0 2483.6 2016-2017
## 3689 601.4 56.2 33.0 60.0 2540.2 2016-2017
## 3690 591.9 47.6 24.0 60.0 2544.2 2016-2017
## 3691 591.5 50.3 29.0 60.0 2508.2 2016-2017
## 3692 593.8 52.8 32.0 60.0 2543.3 2016-2017
## 3693 593.2 59.7 37.0 60.0 2552.9 2016-2017
## 3694 591.3 44.9 24.0 0.0 2510.8 2016-2017
## 3695 611.4 50.1 31.0 60.0 2608.9 2016-2017
## 3696 607.7 50.3 27.0 0.0 2556.7 2016-2017
## 3697 600.8 48.3 25.0 60.0 2566.2 2016-2017
## 3698 604.4 54.9 33.0 60.0 2558.9 2016-2017
## 3699 607.9 48.2 26.0 0.0 2561.7 2016-2017
## 3700 609.9 59.1 34.0 120.0 2573.6 2016-2017
## 3701 617.0 48.5 26.0 60.0 2623.7 2016-2017
## 3702 587.1 47.8 26.0 60.0 2652.5 2016-2017
## 3703 604.9 52.6 30.0 0.0 2572.5 2016-2017
## 3704 626.4 56.3 33.0 60.0 2639.5 2016-2017
## 3705 611.2 49.3 28.0 60.0 2578.3 2016-2017
## 3706 593.9 44.3 23.0 60.0 2543.1 2016-2017
## 3707 577.1 54.2 33.0 120.0 2507.2 2016-2017
## 3708 580.0 49.3 27.0 0.0 2509.4 2016-2017
## 3709 621.9 50.3 29.0 0.0 2655.6 2016-2017
## 3710 593.0 50.6 29.0 60.0 2507.5 2016-2017
## 3711 611.3 61.3 39.0 60.0 2610.4 2016-2017
## 3712 568.5 68.4 47.0 180.0 2465.3 2016-2017
## 3713 599.4 55.6 35.0 180.0 2562.5 2016-2017
## 3714 630.6 54.5 31.0 120.0 2666.5 2016-2017
## 3715 618.6 60.7 38.0 60.0 2615.8 2016-2017
## 3716 584.4 49.3 29.0 120.0 2518.9 2016-2017
## 3717 611.6 49.7 30.0 60.0 2566.0 2016-2017
## 3718 604.8 53.8 32.0 60.0 2568.7 2016-2017
## 3719 585.0 54.5 30.0 120.0 2517.1 2016-2017
## 3720 583.8 51.4 28.0 0.0 2510.8 2016-2017
## 3721 600.0 49.0 27.0 60.0 2544.4 2016-2017
## 3722 620.2 48.2 24.0 0.0 2614.8 2016-2017
## 3723 609.4 46.6 26.0 60.0 2553.4 2016-2017
## 3724 590.7 47.6 27.0 60.0 2489.9 2016-2017
## 3725 613.0 72.6 51.0 120.0 2608.1 2016-2017
## 3726 635.8 48.9 25.0 0.0 2649.0 2016-2017
## 3727 654.2 53.3 30.0 0.0 2765.4 2016-2017
## 3728 620.6 41.5 20.0 60.0 2620.5 2016-2017
## 3729 624.6 46.6 25.0 60.0 2614.1 2016-2017
## 3730 600.6 52.2 30.0 120.0 2529.0 2016-2017
## 3731 604.1 48.1 26.0 60.0 2537.6 2016-2017
## 3732 599.1 47.1 24.0 120.0 2483.6 2016-2017
## 3733 599.9 49.2 25.0 120.0 2554.0 2016-2017
## 3734 581.2 49.6 28.0 120.0 2476.0 2016-2017
## 3735 594.3 48.9 28.0 120.0 2514.1 2016-2017
## 3736 622.1 43.5 23.0 60.0 2543.6 2016-2017
## 3737 646.7 56.3 32.0 0.0 2723.5 2016-2017
## 3738 615.0 55.4 30.0 120.0 2580.5 2016-2017
## 3739 643.6 46.5 24.0 0.0 2666.4 2016-2017
## 3740 604.1 51.0 27.0 0.0 2545.0 2016-2017
## 3741 607.2 68.4 46.0 120.0 2598.1 2016-2017
## 3742 637.2 53.7 30.0 60.0 2698.2 2016-2017
## 3743 629.2 55.8 33.0 60.0 2645.4 2016-2017
## 3744 616.7 52.0 30.0 60.0 2610.2 2016-2017
## 3745 608.2 46.2 24.0 120.0 2524.3 2016-2017
## 3746 626.0 54.1 32.0 0.0 2690.1 2016-2017
## 3747 633.9 43.6 21.0 180.0 2642.6 2016-2017
## 3748 625.7 56.8 32.0 60.0 2645.2 2016-2017
## 3749 618.3 56.3 32.0 120.0 2601.2 2016-2017
## 3750 662.4 55.5 31.0 60.0 2787.3 2016-2017
## 3751 666.9 53.0 30.0 60.0 2718.1 2016-2017
## 3752 604.4 53.1 31.0 180.0 2574.3 2016-2017
## 3753 658.3 56.4 31.0 120.0 2755.6 2016-2017
## 3754 617.5 63.5 38.0 120.0 2641.8 2016-2017
## 3755 397.3 44.8 28.0 9.1 0.0 2016-2017
## 3756 388.2 43.4 26.0 9.7 0.0 2016-2017
## 3757 393.0 45.6 26.0 7.8 0.0 2016-2017
## 3758 387.5 48.9 29.0 29.7 0.0 2016-2017
## 3759 381.4 41.8 25.0 47.4 0.0 2016-2017
## 3760 387.9 45.7 28.0 29.1 0.0 2016-2017
## 3761 393.1 51.8 32.0 8.7 0.0 2016-2017
## 3762 407.2 51.4 33.0 29.2 0.0 2016-2017
## 3763 409.6 42.3 24.0 7.7 0.0 2016-2017
## 3764 388.7 44.6 27.0 48.6 0.0 2016-2017
## 3765 414.8 43.2 22.0 28.8 0.0 2016-2017
## 3766 411.9 43.7 26.0 7.0 0.0 2016-2017
## 3767 413.4 46.0 27.0 29.0 0.0 2016-2017
## 3768 403.1 43.8 23.0 52.2 0.0 2016-2017
## 3769 404.3 42.5 25.0 27.6 0.0 2016-2017
## 3770 419.7 46.6 26.0 29.7 0.0 2016-2017
## 3771 419.1 50.4 31.0 28.9 0.0 2016-2017
## 3772 420.5 45.0 23.0 8.0 0.0 2016-2017
## 3773 405.3 49.5 30.0 49.5 0.0 2016-2017
## 3774 418.1 46.7 26.0 50.2 0.0 2016-2017
## 3775 422.0 44.9 25.0 7.9 0.0 2016-2017
## 3776 457.5 43.7 23.0 8.1 0.0 2016-2017
## 3777 418.6 41.7 24.0 7.7 0.0 2016-2017
## 3778 420.3 45.9 26.0 7.9 0.0 2016-2017
## 3779 433.4 49.5 31.0 29.5 0.0 2016-2017
## 3780 409.0 54.1 33.0 71.4 0.0 2016-2017
## 3781 416.8 48.3 29.0 29.1 0.0 2016-2017
## 3782 423.0 52.8 33.0 50.3 0.0 2016-2017
## 3783 433.4 45.3 24.0 30.8 0.0 2016-2017
## 3784 435.1 52.6 30.0 29.9 0.0 2016-2017
## 3785 440.0 51.9 30.0 4.1 0.0 2016-2017
## 3786 440.7 45.0 22.0 4.7 0.0 2016-2017
## 3787 436.4 47.1 25.0 26.2 0.0 2016-2017
## 3788 451.1 48.0 23.0 4.8 0.0 2016-2017
## 3789 446.6 45.8 22.0 26.3 0.0 2016-2017
## 3790 450.7 49.2 26.0 4.8 0.0 2016-2017
## 3791 444.9 47.0 23.0 25.1 0.0 2016-2017
## 3792 446.5 45.3 23.0 25.3 0.0 2016-2017
## 3793 446.8 48.6 24.0 5.2 0.0 2016-2017
## 3794 445.8 51.0 27.0 4.4 0.0 2016-2017
## 3795 461.3 50.2 26.0 4.7 0.0 2016-2017
## 3796 434.4 51.8 28.0 47.6 0.0 2016-2017
## 3797 452.4 51.6 27.0 4.7 0.0 2016-2017
## 3798 447.2 49.3 25.0 26.3 0.0 2016-2017
## 3799 461.1 47.7 25.0 4.6 0.0 2016-2017
## 3800 460.3 51.3 26.0 4.8 0.0 2016-2017
## 3801 440.5 53.1 30.0 47.3 0.0 2016-2017
## 3802 452.4 47.1 26.0 24.6 0.0 2016-2017
## 3803 450.4 51.9 29.0 49.9 0.0 2016-2017
## 3804 456.4 50.5 28.0 4.3 0.0 2016-2017
## 3805 443.8 48.4 25.0 48.7 0.0 2016-2017
## 3806 447.1 44.7 20.0 44.7 0.0 2016-2017
## 3807 478.1 49.5 26.0 4.7 0.0 2016-2017
## 3808 452.0 51.3 28.0 47.5 0.0 2016-2017
## 3809 454.2 49.3 25.0 26.2 0.0 2016-2017
## 3810 457.8 53.8 29.0 26.4 0.0 2016-2017
## 3811 454.5 45.0 24.0 4.4 0.0 2016-2017
## 3812 453.6 49.2 24.0 27.9 0.0 2016-2017
## 3813 475.9 52.2 27.0 5.3 0.0 2016-2017
## 3814 450.0 50.8 26.0 47.0 0.0 2016-2017
## 3815 468.7 51.6 27.0 25.8 0.0 2016-2017
## 3816 468.3 49.3 25.0 4.9 0.0 2016-2017
## 3817 464.3 49.3 24.0 28.1 0.0 2016-2017
## 3818 444.6 47.5 22.0 48.9 0.0 2016-2017
## 3819 455.1 44.5 21.0 26.0 0.0 2016-2017
## 3820 447.3 52.2 24.0 27.2 0.0 2016-2017
## 3821 444.2 49.5 26.0 70.7 0.0 2016-2017
## 3822 467.8 49.6 25.0 4.5 0.0 2016-2017
## 3823 456.5 46.9 23.0 5.1 0.0 2016-2017
## 3824 455.6 51.8 28.0 46.3 0.0 2016-2017
## 3825 451.1 49.1 26.0 69.3 0.0 2016-2017
## 3826 448.3 52.5 27.0 26.8 0.0 2016-2017
## 3827 437.4 47.2 25.0 71.1 0.0 2016-2017
## 3828 457.2 55.0 31.0 26.8 0.0 2016-2017
## 3829 456.3 49.8 25.0 49.1 0.0 2016-2017
## 3830 460.7 52.1 27.0 29.2 0.0 2016-2017
## 3831 468.9 53.9 29.0 47.9 0.0 2016-2017
## 3832 467.9 55.0 27.0 28.1 0.0 2016-2017
## 3833 457.0 45.5 23.0 49.4 0.0 2016-2017
## 3834 460.6 51.9 26.0 27.2 0.0 2016-2017
## 3835 460.9 46.9 24.0 25.9 0.0 2016-2017
## 3836 453.6 47.6 23.0 27.2 0.0 2016-2017
## 3837 468.2 55.1 29.0 28.1 0.0 2016-2017
## 3838 471.1 50.1 24.0 5.0 0.0 2016-2017
## 3839 460.8 56.4 32.0 50.3 0.0 2016-2017
## 3840 464.0 50.2 28.0 24.8 0.0 2016-2017
## 3841 448.4 55.3 31.0 25.9 0.0 2016-2017
## 3842 465.2 52.9 28.0 5.8 0.0 2016-2017
## 3843 451.6 51.1 27.0 49.7 0.0 2016-2017
## 3844 473.3 51.7 27.0 5.2 0.0 2016-2017
## 3845 458.5 55.6 31.0 25.6 0.0 2016-2017
## 3846 474.7 56.3 31.0 4.9 0.0 2016-2017
## 3847 469.5 50.5 24.0 29.4 0.0 2016-2017
## 3848 472.9 44.9 20.0 27.9 0.0 2016-2017
## 3849 455.4 53.1 27.0 77.7 0.0 2016-2017
## 3850 467.4 49.5 24.0 28.0 0.0 2016-2017
## 3851 474.4 50.6 24.0 49.5 0.0 2016-2017
## 3852 474.0 49.7 23.0 51.9 0.0 2016-2017
## 3853 466.5 48.8 24.0 28.7 0.0 2016-2017
## 3854 467.3 51.7 28.0 29.2 0.0 2016-2017
## 3855 477.4 57.8 31.0 28.4 0.0 2016-2017
## 3856 484.8 51.1 26.0 4.9 0.0 2016-2017
## 3857 482.4 54.4 29.0 52.7 0.0 2016-2017
## 3858 477.3 49.6 26.0 26.6 0.0 2016-2017
## 3859 462.4 56.5 32.0 71.9 0.0 2016-2017
## 3860 465.4 51.2 26.0 28.0 0.0 2016-2017
## 3861 451.0 47.9 24.0 26.8 0.0 2016-2017
## 3862 469.3 49.4 25.0 54.7 0.0 2016-2017
## 3863 477.4 47.5 21.0 28.1 0.0 2016-2017
## 3864 478.0 52.5 28.0 4.8 0.0 2016-2017
## 3865 478.1 56.2 29.0 30.4 0.0 2016-2017
## 3866 463.4 68.4 43.0 52.5 0.0 2016-2017
## 3867 456.3 57.5 31.0 74.3 0.0 2016-2017
## 3868 478.5 54.7 30.0 51.0 0.0 2016-2017
## 3869 471.0 47.7 22.0 27.4 0.0 2016-2017
## 3870 492.5 51.9 26.0 29.7 0.0 2016-2017
## 3871 495.0 49.3 24.0 29.4 0.0 2016-2017
## 3872 492.4 55.3 28.0 60.6 0.0 2016-2017
## 3873 489.4 57.5 30.0 30.0 0.0 2016-2017
## 3874 501.4 58.4 31.0 31.7 0.0 2016-2017
## 3875 505.2 69.4 46.0 27.9 0.0 2016-2017
## 3876 454.2 59.0 32.0 128.4 0.0 2016-2017
## 3877 471.1 115.3 90.0 71.4 0.0 2016-2017
## 3878 514.5 62.5 36.0 29.7 0.0 2016-2017
## 3879 479.0 61.9 35.0 78.7 0.0 2016-2017
## 3880 501.0 56.0 28.0 32.8 0.0 2016-2017
## 3881 497.0 54.8 29.0 30.6 0.0 2016-2017
## 3882 498.3 54.8 28.0 29.6 0.0 2016-2017
## 3883 492.6 53.8 27.0 56.4 0.0 2016-2017
## 3884 494.7 63.3 37.0 54.8 0.0 2016-2017
## 3885 510.7 57.1 30.0 85.6 0.0 2016-2017
## 3886 508.5 69.0 41.0 106.1 0.0 2016-2017
## 3887 553.7 48.4 24.0 0.0 2346.4 2016-2017
## 3888 552.0 44.5 22.0 0.0 2352.8 2016-2017
## 3889 533.7 45.5 21.0 0.0 2266.2 2016-2017
## 3890 550.5 50.1 27.0 0.0 2335.5 2016-2017
## 3891 547.0 50.4 26.0 0.0 2331.9 2016-2017
## 3892 555.9 55.4 31.0 0.0 2398.7 2016-2017
## 3893 538.6 46.0 23.0 0.0 2294.0 2016-2017
## 3894 544.1 45.0 21.0 60.0 2309.5 2016-2017
## 3895 557.6 44.6 21.0 0.0 2365.6 2016-2017
## 3896 539.8 61.4 37.0 60.0 2366.5 2016-2017
## 3897 563.6 49.5 24.0 0.0 2372.5 2016-2017
## 3898 552.0 55.7 31.0 60.0 2324.9 2016-2017
## 3899 544.0 49.5 25.0 0.0 2338.3 2016-2017
## 3900 537.4 47.1 24.0 0.0 2312.4 2016-2017
## 3901 557.2 57.7 32.0 0.0 2403.4 2016-2017
## 3902 554.7 53.6 29.0 60.0 2349.0 2016-2017
## 3903 538.4 45.8 22.0 60.0 2320.2 2016-2017
## 3904 542.7 51.2 28.0 60.0 2327.6 2016-2017
## 3905 543.4 56.0 33.0 0.0 2330.7 2016-2017
## 3906 546.9 48.0 24.0 60.0 2322.1 2016-2017
## 3907 543.0 48.0 26.0 60.0 2336.2 2016-2017
## 3908 563.4 49.5 28.0 0.0 2389.4 2016-2017
## 3909 554.8 53.4 29.0 60.0 2391.1 2016-2017
## 3910 550.7 52.2 27.0 0.0 2352.6 2016-2017
## 3911 549.6 66.0 41.0 60.0 2363.4 2016-2017
## 3912 545.8 51.9 28.0 60.0 2357.5 2016-2017
## 3913 559.0 49.8 21.0 0.0 2349.4 2016-2017
## 3914 586.8 56.5 31.0 0.0 2483.9 2016-2017
## 3915 585.8 49.7 25.0 0.0 2482.9 2016-2017
## 3916 576.8 57.8 32.0 0.0 2480.8 2016-2017
## 3917 562.3 51.1 25.0 60.0 2405.7 2016-2017
## 3918 578.6 51.9 26.0 0.0 2417.3 2016-2017
## 3919 571.1 48.3 22.0 60.0 2397.6 2016-2017
## 3920 560.1 45.6 22.0 0.0 2362.6 2016-2017
## 3921 554.2 50.1 26.0 0.0 2353.4 2016-2017
## 3922 552.9 51.9 26.0 120.0 2356.2 2016-2017
## 3923 553.1 55.0 30.0 0.0 2411.2 2016-2017
## 3924 560.9 53.6 28.0 60.0 2417.7 2016-2017
## 3925 567.9 52.2 26.0 0.0 2418.0 2016-2017
## 3926 570.0 55.2 29.0 60.0 2412.8 2016-2017
## 3927 549.2 50.4 24.0 60.0 2365.7 2016-2017
## 3928 597.9 57.4 30.0 60.0 2521.4 2016-2017
## 3929 585.1 53.2 27.0 60.0 2460.0 2016-2017
## 3930 574.3 51.4 26.0 60.0 2423.0 2016-2017
## 3931 578.6 51.6 26.0 60.0 2470.6 2016-2017
## 3932 565.4 51.3 26.0 0.0 2420.9 2016-2017
## 3933 573.3 46.9 22.0 60.0 2376.5 2016-2017
## 3934 566.2 55.6 30.0 60.0 2441.7 2016-2017
## 3935 571.3 54.1 27.0 60.0 2451.9 2016-2017
## 3936 584.1 49.2 26.0 60.0 2456.7 2016-2017
## 3937 562.4 51.5 25.0 0.0 2397.7 2016-2017
## 3938 559.8 54.5 28.0 60.0 2415.1 2016-2017
## 3939 592.4 50.4 24.0 0.0 2512.0 2016-2017
## 3940 555.0 49.2 24.0 60.0 2391.4 2016-2017
## 3941 557.0 47.5 21.0 60.0 2421.6 2016-2017
## 3942 542.7 48.0 23.0 180.0 2327.0 2016-2017
## 3943 576.9 57.4 33.0 60.0 2489.2 2016-2017
## 3944 577.9 49.0 24.0 0.0 2439.1 2016-2017
## 3945 578.2 50.8 25.0 0.0 2444.3 2016-2017
## 3946 594.5 55.9 29.0 60.0 2504.1 2016-2017
## 3947 571.6 72.9 47.0 120.0 2469.2 2016-2017
## 3948 585.2 54.0 29.0 120.0 2491.2 2016-2017
## 3949 585.8 56.3 27.0 60.0 2512.6 2016-2017
## 3950 577.3 65.8 40.0 120.0 2436.0 2016-2017
## 3951 583.7 55.5 28.0 0.0 2455.6 2016-2017
## 3952 609.4 56.8 29.0 60.0 2561.2 2016-2017
## 3953 564.8 51.1 26.0 60.0 2442.8 2016-2017
## 3954 585.3 51.1 25.0 0.0 2479.9 2016-2017
## 3955 619.8 56.6 29.0 0.0 2601.6 2016-2017
## 3956 579.1 58.6 32.0 180.0 2451.2 2016-2017
## 3957 607.0 54.9 26.0 60.0 2543.4 2016-2017
## 3958 555.6 47.5 22.0 60.0 2360.7 2016-2017
## 3959 583.6 57.9 31.0 60.0 2483.7 2016-2017
## 3960 583.1 52.5 24.0 0.0 2498.9 2016-2017
## 3961 616.0 50.2 26.0 60.0 2577.0 2016-2017
## 3962 594.8 50.3 27.0 120.0 2491.3 2016-2017
## 3963 597.6 58.7 33.0 60.0 2548.8 2016-2017
## 3964 602.2 55.7 31.0 60.0 2553.1 2016-2017
## 3965 564.6 58.3 30.0 120.0 2476.4 2016-2017
## 3966 569.4 51.8 28.0 60.0 2412.9 2016-2017
## 3967 579.3 55.5 30.0 180.0 2474.2 2016-2017
## 3968 620.5 55.9 27.0 60.0 2588.1 2016-2017
## 3969 612.1 61.8 34.0 120.0 2662.8 2016-2017
## 3970 578.4 56.5 28.0 180.0 2451.3 2016-2017
## 3971 589.1 55.9 29.0 120.0 2513.0 2016-2017
## 3972 607.8 57.9 31.0 120.0 2551.1 2016-2017
## 3973 592.1 56.4 30.0 60.0 2518.3 2016-2017
## 3974 598.9 55.8 27.0 120.0 2451.4 2016-2017
## 3975 601.9 55.3 29.0 60.0 2598.6 2016-2017
## 3976 597.4 56.0 30.0 60.0 2547.4 2016-2017
## 3977 628.3 55.8 27.0 60.0 2595.2 2016-2017
## 3978 616.6 53.9 26.0 60.0 2619.1 2016-2017
## 3979 619.0 60.0 32.0 120.0 2595.7 2016-2017
## 3980 629.0 55.8 27.0 60.0 2637.7 2016-2017
## 3981 625.2 61.3 33.0 60.0 2672.1 2016-2017
## 3982 568.2 69.8 40.0 240.0 2480.6 2016-2017
## 3983 613.2 71.7 45.0 180.0 2607.6 2016-2017
## 3984 634.2 48.1 22.0 180.0 2645.7 2016-2017
## 3985 655.9 59.0 30.0 60.0 2801.1 2016-2017
## 3986 597.1 60.6 35.0 180.0 2595.5 2016-2017
## 3987 389.3 45.6 26.0 4.5 0.0 2016-2017
## 3988 387.9 46.0 25.0 26.2 0.0 2016-2017
## 3989 394.4 41.6 20.0 4.9 0.0 2016-2017
## 3990 397.1 41.8 19.0 4.8 0.0 2016-2017
## 3991 388.9 48.7 30.0 47.9 0.0 2016-2017
## 3992 401.6 47.8 25.0 5.2 0.0 2016-2017
## 3993 388.4 45.6 27.0 44.8 0.0 2016-2017
## 3994 396.0 46.7 24.0 4.8 0.0 2016-2017
## 3995 393.6 46.5 25.0 4.7 0.0 2016-2017
## 3996 390.1 47.2 24.0 47.1 0.0 2016-2017
## 3997 393.9 45.7 23.0 4.8 0.0 2016-2017
## 3998 391.8 48.8 28.0 28.0 0.0 2016-2017
## 3999 395.7 50.7 27.0 25.5 0.0 2016-2017
## 4000 399.3 47.3 25.0 25.3 0.0 2016-2017
## 4001 394.1 42.3 20.0 4.6 0.0 2016-2017
## 4002 401.4 44.4 22.0 25.8 0.0 2016-2017
## 4003 399.7 48.9 25.0 4.8 0.0 2016-2017
## 4004 399.9 49.2 25.0 4.8 0.0 2016-2017
## 4005 388.2 44.9 22.0 24.8 0.0 2016-2017
## 4006 397.3 50.7 27.0 45.2 0.0 2016-2017
## 4007 394.6 49.5 27.0 4.6 0.0 2016-2017
## 4008 408.5 47.2 24.0 4.5 0.0 2016-2017
## 4009 414.6 46.0 24.0 4.6 0.0 2016-2017
## 4010 403.3 44.9 25.0 4.4 0.0 2016-2017
## 4011 406.0 43.5 20.0 26.5 0.0 2016-2017
## 4012 405.6 42.1 21.0 26.5 0.0 2016-2017
## 4013 396.6 47.1 23.0 49.6 0.0 2016-2017
## 4014 410.0 46.6 21.0 5.1 0.0 2016-2017
## 4015 418.9 46.6 26.0 4.3 0.0 2016-2017
## 4016 420.7 50.7 27.0 27.0 0.0 2016-2017
## 4017 313.4 43.1 21.0 27.3 0.0 2016-2017
## 4018 319.8 44.2 21.0 4.9 0.0 2016-2017
## 4019 320.9 50.2 29.0 25.2 0.0 2016-2017
## 4020 315.5 46.5 22.0 4.6 0.0 2016-2017
## 4021 318.9 47.3 24.0 26.0 0.0 2016-2017
## 4022 323.9 49.1 25.0 5.1 0.0 2016-2017
## 4023 322.4 52.4 28.0 26.3 0.0 2016-2017
## 4024 321.4 44.2 21.0 25.7 0.0 2016-2017
## 4025 317.9 50.4 26.0 23.6 0.0 2016-2017
## 4026 320.9 46.7 24.0 24.0 0.0 2016-2017
## 4027 320.6 50.3 28.0 4.4 0.0 2016-2017
## 4028 322.9 44.2 22.0 25.6 0.0 2016-2017
## 4029 326.3 50.4 27.0 4.8 0.0 2016-2017
## 4030 325.1 44.6 21.0 4.6 0.0 2016-2017
## 4031 323.6 46.3 24.0 4.4 0.0 2016-2017
## 4032 323.4 49.6 25.0 47.6 0.0 2016-2017
## 4033 321.6 53.0 33.0 4.4 0.0 2016-2017
## 4034 321.3 49.5 26.0 4.4 0.0 2016-2017
## 4035 321.3 47.9 26.0 45.7 0.0 2016-2017
## 4036 325.3 46.2 24.0 26.8 0.0 2016-2017
## 4037 318.6 46.3 24.0 25.7 0.0 2016-2017
## 4038 323.3 43.8 23.0 4.8 0.0 2016-2017
## 4039 323.5 51.2 28.0 4.6 0.0 2016-2017
## 4040 329.3 49.2 27.0 NA 0.0 2016-2017
## 4041 321.8 43.2 27.0 4.6 0.0 2016-2017
## 4042 332.0 50.1 24.0 5.3 0.0 2016-2017
## 4043 327.4 60.3 38.0 44.4 0.0 2016-2017
## 4044 319.4 47.0 23.0 45.0 0.0 2016-2017
## 4045 322.7 51.9 30.0 26.4 0.0 2016-2017
## 4046 322.9 49.6 26.0 64.6 0.0 2016-2017
## 4047 328.6 44.9 20.0 4.9 0.0 2016-2017
## 4048 330.2 51.8 26.0 25.1 0.0 2016-2017
## 4049 326.9 49.7 26.0 26.7 0.0 2016-2017
## 4050 337.4 55.1 31.0 4.7 0.0 2016-2017
## 4051 336.3 55.3 32.0 26.5 0.0 2016-2017
## 4052 327.7 54.5 31.0 46.2 0.0 2016-2017
## 4053 321.9 48.3 24.0 45.7 0.0 2016-2017
## 4054 326.9 46.6 22.0 26.1 0.0 2016-2017
## 4055 334.0 45.3 23.0 5.2 0.0 2016-2017
## 4056 319.8 52.7 27.0 29.1 0.0 2016-2017
## 4057 330.1 49.8 25.0 45.6 0.0 2016-2017
## 4058 339.9 52.1 30.0 27.3 0.0 2016-2017
## 4059 336.3 52.4 26.0 28.4 0.0 2016-2017
## 4060 325.2 48.0 25.0 26.5 0.0 2016-2017
## 4061 332.6 55.5 31.0 28.6 0.0 2016-2017
## 4062 330.8 48.4 25.0 4.5 0.0 2016-2017
## 4063 333.4 49.9 25.0 26.2 0.0 2016-2017
## 4064 345.9 48.5 24.0 5.0 0.0 2016-2017
## 4065 339.3 46.2 24.0 29.4 0.0 2016-2017
## 4066 332.6 48.7 24.0 26.5 0.0 2016-2017
## 4067 339.7 48.9 23.0 27.6 0.0 2016-2017
## 4068 332.1 50.9 27.0 25.1 0.0 2016-2017
## 4069 334.7 55.3 33.0 5.2 0.0 2016-2017
## 4070 331.0 46.9 24.0 48.3 0.0 2016-2017
## 4071 337.4 42.9 21.0 26.1 0.0 2016-2017
## 4072 339.7 52.6 30.0 26.2 0.0 2016-2017
## 4073 341.6 51.8 29.0 27.0 0.0 2016-2017
## 4074 412.3 41.4 21.7 26.6 0.0 2016-2017
## 4075 422.5 41.6 21.0 6.7 0.0 2016-2017
## 4076 428.2 43.0 24.0 7.0 0.0 2016-2017
## 4077 430.5 40.2 19.3 7.5 0.0 2016-2017
## 4078 427.6 43.0 25.2 6.7 0.0 2016-2017
## 4079 426.1 40.8 21.5 27.7 0.0 2016-2017
## 4080 420.7 45.9 27.6 25.9 0.0 2016-2017
## 4081 424.8 39.2 21.5 6.6 0.0 2016-2017
## 4082 423.0 44.5 24.6 7.1 0.0 2016-2017
## 4083 445.1 39.4 18.8 6.8 0.0 2016-2017
## 4084 424.7 44.9 25.5 6.9 0.0 2016-2017
## 4085 433.5 43.2 25.0 7.2 0.0 2016-2017
## 4086 441.1 42.0 21.0 7.6 0.0 2016-2017
## 4087 442.4 48.7 32.5 6.6 0.0 2016-2017
## 4088 427.2 47.3 27.8 6.5 0.0 2016-2017
## 4089 438.5 47.1 27.1 7.0 0.0 2016-2017
## 4090 435.3 44.8 26.1 26.2 0.0 2016-2017
## 4091 439.2 41.4 21.6 28.8 0.0 2016-2017
## 4092 434.2 46.1 28.1 6.4 0.0 2016-2017
## 4093 437.4 46.8 26.5 28.9 0.0 2016-2017
## 4094 439.7 39.1 19.2 7.1 0.0 2016-2017
## 4095 430.5 46.2 25.7 29.0 0.0 2016-2017
## 4096 428.5 45.3 25.3 50.3 0.0 2016-2017
## 4097 439.7 41.2 21.9 6.7 0.0 2016-2017
## 4098 426.1 48.7 63.5 27.2 0.0 2016-2017
## 4099 439.6 42.8 22.6 27.4 0.0 2016-2017
## 4100 436.5 42.3 24.2 7.5 0.0 2016-2017
## 4101 445.5 43.6 25.3 6.6 0.0 2016-2017
## 4102 430.6 43.1 23.6 47.9 0.0 2016-2017
## 4103 421.5 46.2 28.9 46.5 0.0 2016-2017
## 4104 445.5 49.6 28.7 7.0 0.0 2016-2017
## 4105 432.1 46.9 26.1 46.6 0.0 2016-2017
## 4106 430.4 50.2 30.5 48.7 0.0 2016-2017
## 4107 437.6 47.3 28.5 7.0 0.0 2016-2017
## 4108 435.3 46.2 26.4 7.0 0.0 2016-2017
## 4109 429.5 49.0 29.7 48.7 0.0 2016-2017
## 4110 433.6 50.7 33.4 6.8 0.0 2016-2017
## 4111 451.2 44.4 24.2 7.7 0.0 2016-2017
## 4112 445.9 51.8 30.9 28.0 0.0 2016-2017
## 4113 443.6 51.8 33.1 7.5 0.0 2016-2017
## 4114 443.2 48.1 26.3 7.1 0.0 2016-2017
## 4115 450.1 48.0 29.7 29.5 0.0 2016-2017
## 4116 434.1 43.7 23.2 27.6 0.0 2016-2017
## 4117 446.2 45.6 25.9 29.6 0.0 2016-2017
## 4118 449.7 48.8 29.6 6.9 0.0 2016-2017
## 4119 462.2 46.6 26.5 6.8 0.0 2016-2017
## 4120 438.0 44.6 26.0 51.4 0.0 2016-2017
## 4121 431.6 44.1 25.0 49.8 0.0 2016-2017
## 4122 449.6 50.9 29.3 28.0 0.0 2016-2017
## 4123 459.4 48.4 26.1 7.5 0.0 2016-2017
## 4124 440.8 47.8 26.9 30.1 0.0 2016-2017
## 4125 462.7 41.3 24.7 7.6 0.0 2016-2017
## 4126 456.5 43.6 21.5 8.5 0.0 2016-2017
## 4127 453.1 53.3 36.5 28.3 0.0 2016-2017
## 4128 436.4 46.0 22.4 73.6 0.0 2016-2017
## 4129 447.4 48.2 27.2 29.1 0.0 2016-2017
## 4130 446.3 48.8 29.7 53.7 0.0 2016-2017
## 4131 445.0 52.3 31.9 48.3 0.0 2016-2017
## 4132 447.3 55.4 37.2 50.9 0.0 2016-2017
## 4133 445.2 43.3 23.5 51.9 0.0 2016-2017
## 4134 442.0 43.5 25.4 69.5 0.0 2016-2017
## 4135 459.8 50.3 29.9 29.8 0.0 2016-2017
## 4136 449.5 48.9 29.0 29.7 0.0 2016-2017
## 4137 438.4 49.2 27.7 52.2 0.0 2016-2017
## 4138 449.6 44.6 25.1 29.1 0.0 2016-2017
## 4139 450.1 54.6 32.4 51.8 0.0 2016-2017
## 4140 451.7 47.1 26.9 29.6 0.0 2016-2017
## 4141 436.8 46.8 25.0 73.0 0.0 2016-2017
## 4142 454.9 45.2 24.6 7.3 0.0 2016-2017
## 4143 466.1 38.9 21.2 28.9 0.0 2016-2017
## 4144 452.3 46.9 24.7 54.2 0.0 2016-2017
## 4145 438.6 43.9 25.2 28.8 0.0 2016-2017
## 4146 441.8 46.4 25.5 28.0 0.0 2016-2017
## 4147 464.6 46.2 25.4 8.0 0.0 2016-2017
## 4148 465.4 48.3 27.8 7.5 0.0 2016-2017
## 4149 444.1 44.5 24.2 29.2 0.0 2016-2017
## 4150 451.9 47.7 24.5 71.3 0.0 2016-2017
## 4151 457.5 37.8 17.5 7.1 0.0 2016-2017
## 4152 455.7 54.0 33.2 52.1 0.0 2016-2017
## 4153 462.2 53.2 32.1 29.9 0.0 2016-2017
## 4154 457.3 51.1 29.6 29.6 0.0 2016-2017
## 4155 477.8 47.5 25.2 7.5 0.0 2016-2017
## 4156 450.7 52.3 32.8 74.5 0.0 2016-2017
## 4157 459.3 50.0 30.8 29.7 0.0 2016-2017
## 4158 457.3 49.6 30.3 51.0 0.0 2016-2017
## 4159 444.8 49.2 28.4 28.9 0.0 2016-2017
## 4160 471.5 43.7 22.2 8.0 0.0 2016-2017
## 4161 439.5 50.6 30.4 73.5 0.0 2016-2017
## 4162 465.5 52.4 31.6 28.9 0.0 2016-2017
## 4163 464.3 42.8 23.1 53.1 0.0 2016-2017
## 4164 457.7 45.7 25.9 53.4 0.0 2016-2017
## 4165 470.9 45.3 24.1 29.9 0.0 2016-2017
## 4166 466.0 46.0 24.5 31.0 0.0 2016-2017
## 4167 462.8 44.5 22.4 52.2 0.0 2016-2017
## 4168 446.3 52.0 31.3 96.0 0.0 2016-2017
## 4169 459.2 49.0 27.4 29.7 0.0 2016-2017
## 4170 475.0 51.1 30.4 7.8 0.0 2016-2017
## 4171 464.7 48.1 26.5 30.0 0.0 2016-2017
## 4172 479.2 46.3 25.4 7.7 0.0 2016-2017
## 4173 484.6 46.5 26.4 50.6 0.0 2016-2017
## 4174 488.1 46.3 24.8 57.7 0.0 2016-2017
## 4175 345.1 45.7 29.2 7.5 0.0 2016-2017
## 4176 327.7 41.1 24.1 27.9 0.0 2016-2017
## 4177 317.8 49.4 31.9 29.5 0.0 2016-2017
## 4178 327.0 45.0 26.1 29.0 0.0 2016-2017
## 4179 321.5 43.2 24.3 49.2 0.0 2016-2017
## 4180 327.0 43.4 26.1 6.5 0.0 2016-2017
## 4181 329.5 42.6 23.6 29.2 0.0 2016-2017
## 4182 329.1 42.4 23.7 28.8 0.0 2016-2017
## 4183 323.0 43.3 24.8 67.8 0.0 2016-2017
## 4184 327.0 43.4 24.6 48.5 0.0 2016-2017
## 4185 334.6 38.8 20.7 7.5 0.0 2016-2017
## 4186 327.0 40.4 20.7 6.9 0.0 2016-2017
## 4187 334.5 40.9 22.5 6.8 0.0 2016-2017
## 4188 339.9 43.3 24.5 7.3 0.0 2016-2017
## 4189 336.1 44.8 25.9 30.6 0.0 2016-2017
## 4190 334.4 43.6 25.7 7.2 0.0 2016-2017
## 4191 338.6 40.9 21.4 7.4 0.0 2016-2017
## 4192 333.9 42.1 25.1 6.8 0.0 2016-2017
## 4193 341.2 42.4 23.0 31.0 0.0 2016-2017
## 4194 324.0 48.6 28.6 6.7 0.0 2016-2017
## 4195 344.3 42.3 22.0 29.3 0.0 2016-2017
## 4196 338.1 36.0 17.8 7.2 0.0 2016-2017
## 4197 333.7 44.1 26.2 29.6 0.0 2016-2017
## 4198 332.8 41.9 28.3 6.5 0.0 2016-2017
## 4199 326.6 47.7 30.0 28.2 0.0 2016-2017
## 4200 338.4 44.2 28.3 6.7 0.0 2016-2017
## 4201 337.3 46.1 27.0 51.1 0.0 2016-2017
## 4202 336.8 54.8 34.9 28.3 0.0 2016-2017
## 4203 341.9 42.9 24.6 8.1 0.0 2016-2017
## 4204 329.4 51.5 30.0 29.1 0.0 2016-2017
## 4205 330.5 47.0 29.2 8.0 0.0 2016-2017
## 4206 330.2 44.1 23.8 28.0 0.0 2016-2017
## 4207 327.5 47.2 28.9 28.2 0.0 2016-2017
## 4208 329.9 43.4 24.9 51.6 0.0 2016-2017
## 4209 327.5 45.1 27.2 28.8 0.0 2016-2017
## 4210 341.5 41.9 21.4 8.2 0.0 2016-2017
## 4211 341.8 45.7 25.3 7.9 0.0 2016-2017
## 4212 338.5 50.3 32.8 28.0 0.0 2016-2017
## 4213 345.5 46.2 26.6 29.7 0.0 2016-2017
## 4214 333.7 45.7 25.3 29.8 0.0 2016-2017
## 4215 335.3 46.5 27.2 7.8 0.0 2016-2017
## 4216 332.8 59.2 41.0 50.1 0.0 2016-2017
## 4217 345.1 38.7 19.4 7.6 0.0 2016-2017
## 4218 357.3 44.0 35.2 7.2 0.0 2016-2017
## 4219 343.9 47.9 29.2 7.4 0.0 2016-2017
## 4220 346.6 47.0 28.2 7.0 0.0 2016-2017
## 4221 346.3 44.3 25.2 8.0 0.0 2016-2017
## 4222 337.7 47.3 26.7 58.6 0.0 2016-2017
## 4223 350.7 44.9 25.5 30.3 0.0 2016-2017
## 4224 349.4 52.2 32.4 55.2 0.0 2016-2017
## 4225 349.7 51.9 28.3 7.5 0.0 2016-2017
## 4226 354.2 44.1 22.5 8.3 0.0 2016-2017
## 4227 348.0 47.6 26.4 76.2 0.0 2016-2017
## 4228 358.8 47.8 25.2 31.3 0.0 2016-2017
## 4229 447.5 46.9 24.0 25.8 0.0 2016-2017
## 4230 453.3 45.1 24.0 5.0 0.0 2016-2017
## 4231 448.2 46.9 25.0 25.7 0.0 2016-2017
## 4232 450.2 43.4 22.0 5.6 0.0 2016-2017
## 4233 451.1 49.4 27.0 25.6 0.0 2016-2017
## 4234 443.8 49.4 28.0 25.2 0.0 2016-2017
## 4235 459.1 45.8 24.0 5.0 0.0 2016-2017
## 4236 462.0 43.1 22.0 5.3 0.0 2016-2017
## 4237 438.5 43.6 23.0 26.4 0.0 2016-2017
## 4238 453.9 47.8 26.0 26.2 0.0 2016-2017
## 4239 463.0 46.9 24.0 5.4 0.0 2016-2017
## 4240 457.9 48.5 26.0 5.2 0.0 2016-2017
## 4241 452.0 49.8 29.0 25.5 0.0 2016-2017
## 4242 459.5 44.4 24.0 4.8 0.0 2016-2017
## 4243 454.3 48.3 25.0 27.2 0.0 2016-2017
## 4244 455.0 44.5 22.0 5.4 0.0 2016-2017
## 4245 460.1 48.8 27.0 26.0 0.0 2016-2017
## 4246 466.5 47.7 26.0 5.7 0.0 2016-2017
## 4247 466.6 48.1 25.0 5.5 0.0 2016-2017
## 4248 461.4 48.8 26.0 26.1 0.0 2016-2017
## 4249 462.4 46.6 27.0 4.8 0.0 2016-2017
## 4250 460.1 47.6 25.0 6.2 0.0 2016-2017
## 4251 456.3 52.6 29.0 5.4 0.0 2016-2017
## 4252 465.8 51.3 29.0 48.4 0.0 2016-2017
## 4253 451.2 49.2 29.0 25.9 0.0 2016-2017
## 4254 466.2 53.2 27.0 26.5 0.0 2016-2017
## 4255 471.3 44.6 22.0 5.2 0.0 2016-2017
## 4256 455.3 53.2 31.0 45.7 0.0 2016-2017
## 4257 473.7 44.4 24.0 5.1 0.0 2016-2017
## 4258 469.5 49.2 26.0 26.9 0.0 2016-2017
## 4259 458.1 45.2 24.0 45.1 0.0 2016-2017
## 4260 466.1 49.6 28.0 5.0 0.0 2016-2017
## 4261 459.2 51.2 28.0 26.5 0.0 2016-2017
## 4262 466.7 47.8 26.0 5.1 0.0 2016-2017
## 4263 462.6 54.4 32.0 25.4 0.0 2016-2017
## 4264 463.0 44.2 22.0 26.2 0.0 2016-2017
## 4265 456.7 47.3 24.0 26.9 0.0 2016-2017
## 4266 459.2 53.2 31.0 26.8 0.0 2016-2017
## 4267 469.7 54.9 29.0 27.1 0.0 2016-2017
## 4268 462.3 48.3 26.0 49.3 0.0 2016-2017
## 4269 466.6 47.0 25.0 27.2 0.0 2016-2017
## 4270 478.1 51.5 30.0 26.3 0.0 2016-2017
## 4271 472.1 52.2 31.0 5.7 0.0 2016-2017
## 4272 458.8 45.5 25.0 5.4 0.0 2016-2017
## 4273 466.4 47.3 26.0 27.2 0.0 2016-2017
## 4274 473.0 50.9 29.0 26.7 0.0 2016-2017
## 4275 458.1 54.4 33.0 46.2 0.0 2016-2017
## 4276 448.0 44.1 23.0 71.1 0.0 2016-2017
## 4277 458.1 51.2 28.0 68.3 0.0 2016-2017
## 4278 477.3 46.0 25.0 5.5 0.0 2016-2017
## 4279 482.7 40.7 19.0 27.4 0.0 2016-2017
## 4280 469.7 47.4 25.0 50.4 0.0 2016-2017
## 4281 472.0 50.5 30.0 27.1 0.0 2016-2017
## 4282 464.7 49.3 27.0 26.7 0.0 2016-2017
## 4283 469.4 49.2 28.0 27.1 0.0 2016-2017
## 4284 476.7 45.7 24.0 26.8 0.0 2016-2017
## 4285 485.4 48.3 26.0 5.8 0.0 2016-2017
## 4286 482.2 51.8 28.0 5.7 0.0 2016-2017
## 4287 478.4 47.5 23.0 28.3 0.0 2016-2017
## 4288 467.0 44.0 21.0 47.7 0.0 2016-2017
## 4289 484.4 46.3 24.0 5.6 0.0 2016-2017
## 4290 474.6 52.2 29.0 49.0 0.0 2016-2017
## 4291 476.1 53.3 31.0 48.2 0.0 2016-2017
## 4292 488.2 48.3 23.0 5.5 0.0 2016-2017
## 4293 474.4 54.9 32.0 27.2 0.0 2016-2017
## 4294 462.0 49.5 24.0 28.7 0.0 2016-2017
## 4295 475.1 46.2 23.0 49.4 0.0 2016-2017
## 4296 479.7 51.1 27.0 27.9 0.0 2016-2017
## 4297 487.1 45.6 25.0 27.8 0.0 2016-2017
## 4298 474.7 50.2 24.0 73.7 0.0 2016-2017
## 4299 487.1 53.6 31.0 27.1 0.0 2016-2017
## 4300 480.8 49.3 26.0 28.2 0.0 2016-2017
## 4301 480.0 48.2 26.0 29.3 0.0 2016-2017
## 4302 483.7 51.1 26.0 29.7 0.0 2016-2017
## 4303 491.0 48.8 25.0 27.7 0.0 2016-2017
## 4304 492.8 46.8 24.0 26.6 0.0 2016-2017
## 4305 490.9 50.2 28.0 49.6 0.0 2016-2017
## 4306 484.1 50.9 29.0 29.5 0.0 2016-2017
## 4307 498.1 51.3 30.0 27.6 0.0 2016-2017
## 4308 478.8 47.9 25.0 52.3 0.0 2016-2017
## 4309 497.9 46.0 24.0 29.2 0.0 2016-2017
## 4310 491.9 44.7 24.0 29.2 0.0 2016-2017
## 4311 471.5 85.5 64.0 48.7 0.0 2016-2017
## 4312 492.6 55.2 31.0 28.1 0.0 2016-2017
## 4313 474.1 53.0 31.0 28.6 0.0 2016-2017
## 4314 497.6 58.8 37.0 27.1 0.0 2016-2017
## 4315 488.2 50.6 28.0 50.3 0.0 2016-2017
## 4316 487.3 54.8 31.0 28.5 0.0 2016-2017
## 4317 492.8 53.1 32.0 52.2 0.0 2016-2017
## 4318 498.5 48.5 25.0 28.1 0.0 2016-2017
## 4319 500.9 51.5 28.0 51.4 0.0 2016-2017
## 4320 472.3 51.7 29.0 70.6 0.0 2016-2017
## 4321 457.2 62.4 42.0 95.2 0.0 2016-2017
## 4322 477.8 58.5 33.0 73.8 0.0 2016-2017
## 4323 494.5 58.0 33.0 76.5 0.0 2016-2017
## 4324 500.4 53.9 31.0 52.7 0.0 2016-2017
## 4325 509.6 53.5 31.0 5.5 0.0 2016-2017
## 4326 507.2 53.1 28.0 79.1 0.0 2016-2017
## 4327 502.8 52.8 28.0 53.3 0.0 2016-2017
## 4328 505.0 51.2 27.0 53.5 0.0 2016-2017
## 4329 493.7 70.1 45.0 74.6 0.0 2016-2017
## 4330 387.4 43.2 25.0 6.8 0.0 2016-2017
## 4331 402.9 43.6 26.0 4.8 0.0 2016-2017
## 4332 398.4 42.0 24.0 26.1 0.0 2016-2017
## 4333 397.8 41.3 24.0 26.4 0.0 2016-2017
## 4334 400.2 42.4 24.0 26.5 0.0 2016-2017
## 4335 393.0 41.4 21.0 5.1 0.0 2016-2017
## 4336 397.8 43.7 23.0 5.1 0.0 2016-2017
## 4337 394.4 40.9 18.0 5.4 0.0 2016-2017
## 4338 396.0 43.5 24.0 5.3 0.0 2016-2017
## 4339 398.7 42.6 21.0 5.2 0.0 2016-2017
## 4340 410.0 43.9 22.0 5.1 0.0 2016-2017
## 4341 404.9 42.2 21.0 5.1 0.0 2016-2017
## 4342 397.7 49.1 28.0 26.4 0.0 2016-2017
## 4343 414.0 43.1 21.0 5.5 0.0 2016-2017
## 4344 404.7 42.2 21.0 5.2 0.0 2016-2017
## 4345 395.6 46.1 25.0 24.2 0.0 2016-2017
## 4346 401.6 42.2 21.0 26.0 0.0 2016-2017
## 4347 397.1 44.3 25.0 25.3 0.0 2016-2017
## 4348 400.2 42.8 21.0 26.0 0.0 2016-2017
## 4349 394.3 45.6 25.0 44.8 0.0 2016-2017
## 4350 401.5 46.1 25.0 48.5 0.0 2016-2017
## 4351 408.6 46.1 25.0 26.4 0.0 2016-2017
## 4352 415.8 45.7 23.0 5.2 0.0 2016-2017
## 4353 396.9 47.2 29.0 46.5 0.0 2016-2017
## 4354 408.0 47.4 27.0 4.9 0.0 2016-2017
## 4355 421.2 49.4 28.0 5.5 0.0 2016-2017
## 4356 404.2 46.3 24.0 74.0 0.0 2016-2017
## 4357 415.5 48.3 27.0 26.8 0.0 2016-2017
## 4358 420.6 48.1 26.0 4.9 0.0 2016-2017
## 4359 405.6 46.5 27.0 48.4 0.0 2016-2017
## 4360 353.8 43.2 25.0 7.2 0.0 2016-2017
## 4361 364.7 42.2 22.0 27.2 0.0 2016-2017
## 4362 366.2 41.4 22.0 6.6 0.0 2016-2017
## 4363 363.3 46.3 25.0 5.4 0.0 2016-2017
## 4364 363.1 47.1 28.0 48.9 0.0 2016-2017
## 4365 366.5 44.3 23.0 5.6 0.0 2016-2017
## 4366 362.5 53.7 32.0 5.3 0.0 2016-2017
## 4367 365.7 45.3 24.0 26.9 0.0 2016-2017
## 4368 367.5 47.7 28.0 5.2 0.0 2016-2017
## 4369 369.3 46.7 26.0 4.9 0.0 2016-2017
## 4370 365.9 45.4 25.0 5.5 0.0 2016-2017
## 4371 369.8 43.6 23.0 5.4 0.0 2016-2017
## 4372 361.1 44.6 23.0 5.2 0.0 2016-2017
## 4373 369.8 47.6 25.0 5.1 0.0 2016-2017
## 4374 361.9 49.4 30.0 5.3 0.0 2016-2017
## 4375 377.6 52.2 30.0 26.3 0.0 2016-2017
## 4376 373.8 46.1 23.0 27.9 0.0 2016-2017
## 4377 370.4 49.3 25.0 47.9 0.0 2016-2017
## 4378 362.5 47.2 27.0 5.3 0.0 2016-2017
## 4379 375.9 49.9 27.0 29.3 0.0 2016-2017
## 4380 371.9 45.3 23.0 26.8 0.0 2016-2017
## 4381 376.8 49.1 26.0 48.8 0.0 2016-2017
## 4382 362.5 49.1 29.0 25.9 0.0 2016-2017
## 4383 372.6 51.9 31.0 27.6 0.0 2016-2017
## 4384 364.9 45.4 25.0 25.9 0.0 2016-2017
## 4385 375.4 47.3 24.0 5.0 0.0 2016-2017
## 4386 359.7 48.4 27.0 5.2 0.0 2016-2017
## 4387 365.4 48.1 28.0 7.1 0.0 2016-2017
## 4388 370.4 48.8 28.0 27.5 0.0 2016-2017
## 4389 373.0 47.2 26.0 5.8 0.0 2016-2017
## 4390 372.8 45.8 24.0 5.4 0.0 2016-2017
## 4391 386.5 44.4 22.0 6.8 0.0 2016-2017
## 4392 358.9 48.5 28.0 28.8 0.0 2016-2017
## 4393 369.3 44.6 24.0 29.2 0.0 2016-2017
## 4394 367.5 45.1 23.0 50.9 0.0 2016-2017
## 4395 370.7 51.3 29.0 27.5 0.0 2016-2017
## 4396 370.6 48.6 23.0 29.3 0.0 2016-2017
## 4397 373.5 50.5 28.0 27.9 0.0 2016-2017
## 4398 371.1 57.8 36.0 26.8 0.0 2016-2017
## 4399 388.5 48.8 23.0 5.6 0.0 2016-2017
## 4400 374.3 50.0 30.0 72.4 0.0 2016-2017
## 4401 378.8 47.2 25.0 29.3 0.0 2016-2017
## 4402 373.3 51.2 29.0 27.7 0.0 2016-2017
## 4403 377.4 61.6 40.0 27.0 0.0 2016-2017
## 4404 372.6 53.1 30.0 52.0 0.0 2016-2017
## 4405 382.4 44.5 22.0 28.2 0.0 2016-2017
## 4406 373.3 48.9 26.0 48.3 0.0 2016-2017
## 4407 375.3 45.8 23.0 51.2 0.0 2016-2017
## 4408 385.3 50.2 28.0 50.7 0.0 2016-2017
## 4409 373.2 55.1 34.0 5.0 0.0 2016-2017
## 4410 396.3 55.0 31.0 29.1 0.0 2016-2017
## 4411 378.2 48.6 26.0 28.1 0.0 2016-2017
## 4412 400.5 40.0 18.0 28.1 0.0 2016-2017
## 4413 391.2 50.7 28.0 28.9 0.0 2016-2017
## 4414 391.8 54.6 31.0 30.0 0.0 2016-2017
## 4415 392.0 55.4 32.0 53.0 0.0 2016-2017
## 4416 388.1 50.6 26.0 53.0 0.0 2016-2017
## 4417 506.9 45.5 23.0 4.0 0.0 2016-2017
## 4418 506.9 53.4 32.0 27.9 0.0 2016-2017
## 4419 514.1 50.2 29.0 25.8 0.0 2016-2017
## 4420 521.0 59.5 38.0 3.9 0.0 2016-2017
## 4421 512.5 49.7 29.0 53.5 0.0 2016-2017
## 4422 510.5 60.1 34.0 26.8 0.0 2016-2017
## 4423 520.3 54.2 30.0 28.1 0.0 2016-2017
## 4424 498.6 54.7 33.0 74.6 0.0 2016-2017
## 4425 517.3 64.3 40.0 4.8 0.0 2016-2017
## 4426 506.5 65.6 42.0 51.7 0.0 2016-2017
## 4427 527.4 48.1 23.0 27.9 0.0 2016-2017
## 4428 521.1 56.9 33.0 52.5 0.0 2016-2017
## 4429 510.9 49.6 26.0 55.0 0.0 2016-2017
## 4430 521.5 48.1 25.0 51.3 0.0 2016-2017
## 4431 515.7 57.3 33.0 53.7 0.0 2016-2017
## 4432 519.8 46.3 23.0 25.4 0.0 2016-2017
## 4433 519.9 54.1 30.0 53.0 0.0 2016-2017
## 4434 528.7 52.7 29.0 29.2 0.0 2016-2017
## 4435 519.6 48.4 25.0 53.2 0.0 2016-2017
## 4436 518.7 51.4 25.0 27.8 0.0 2016-2017
## 4437 521.7 53.9 32.0 26.8 0.0 2016-2017
## 4438 523.7 51.3 30.0 51.6 0.0 2016-2017
## 4439 524.9 50.5 24.0 5.0 0.0 2016-2017
## 4440 520.5 48.4 22.0 55.1 0.0 2016-2017
## 4441 523.4 50.8 26.0 28.3 0.0 2016-2017
## 4442 534.0 52.6 29.0 28.0 0.0 2016-2017
## 4443 509.2 55.4 32.0 53.9 0.0 2016-2017
## 4444 532.3 56.8 35.0 4.1 0.0 2016-2017
## 4445 527.2 53.4 28.0 28.2 0.0 2016-2017
## 4446 530.7 55.3 33.0 51.9 0.0 2016-2017
## 4447 533.0 56.9 34.0 28.0 0.0 2016-2017
## 4448 514.3 52.8 30.0 28.1 0.0 2016-2017
## 4449 528.6 52.3 28.0 53.0 0.0 2016-2017
## 4450 518.7 52.4 29.0 51.2 0.0 2016-2017
## 4451 529.8 63.0 41.0 52.5 0.0 2016-2017
## 4452 532.6 50.3 25.0 29.7 0.0 2016-2017
## 4453 530.6 54.3 30.0 28.4 0.0 2016-2017
## 4454 533.9 56.4 33.0 28.7 0.0 2016-2017
## 4455 518.8 51.5 26.0 28.7 0.0 2016-2017
## 4456 521.6 54.3 31.0 29.4 0.0 2016-2017
## 4457 527.2 67.7 45.0 28.5 0.0 2016-2017
## 4458 531.7 53.9 30.0 53.6 0.0 2016-2017
## 4459 543.4 62.9 35.0 30.0 0.0 2016-2017
## 4460 513.7 57.8 35.0 102.8 0.0 2016-2017
## 4461 535.4 55.5 31.0 4.6 0.0 2016-2017
## 4462 517.4 68.6 46.0 52.6 0.0 2016-2017
## 4463 529.4 52.8 29.0 28.2 0.0 2016-2017
## 4464 532.5 52.7 27.0 55.2 0.0 2016-2017
## 4465 537.5 50.9 23.0 27.8 0.0 2016-2017
## 4466 522.4 71.0 49.0 54.9 0.0 2016-2017
## 4467 556.7 57.6 33.0 4.5 0.0 2016-2017
## 4468 557.4 57.7 31.0 27.4 0.0 2016-2017
## 4469 544.3 51.0 27.0 28.7 0.0 2016-2017
## 4470 513.1 51.2 27.0 29.3 0.0 2016-2017
## 4471 552.1 53.3 28.0 4.8 0.0 2016-2017
## 4472 543.8 50.7 27.0 30.0 0.0 2016-2017
## 4473 512.2 50.6 25.0 79.7 0.0 2016-2017
## 4474 540.1 51.2 29.0 28.7 0.0 2016-2017
## 4475 537.7 62.8 37.0 4.7 0.0 2016-2017
## 4476 533.9 49.8 26.0 55.2 0.0 2016-2017
## 4477 535.5 50.8 26.0 56.1 0.0 2016-2017
## 4478 538.4 55.6 31.0 4.8 0.0 2016-2017
## 4479 545.6 56.6 30.0 55.7 0.0 2016-2017
## 4480 518.8 60.4 38.0 53.1 0.0 2016-2017
## 4481 542.0 52.5 27.0 57.0 0.0 2016-2017
## 4482 557.9 52.2 27.0 4.8 0.0 2016-2017
## 4483 538.6 50.8 27.0 52.3 0.0 2016-2017
## 4484 547.6 59.8 33.0 56.2 0.0 2016-2017
## 4485 532.6 59.9 36.0 28.5 0.0 2016-2017
## 4486 536.0 47.9 24.0 4.6 0.0 2016-2017
## 4487 525.5 67.2 40.0 83.3 0.0 2016-2017
## 4488 541.6 51.3 26.0 4.5 0.0 2016-2017
## 4489 545.4 47.7 17.0 80.2 0.0 2016-2017
## 4490 553.5 54.2 30.0 31.0 0.0 2016-2017
## 4491 532.3 58.1 32.0 4.6 0.0 2016-2017
## 4492 540.8 51.9 27.0 55.0 0.0 2016-2017
## 4493 561.7 56.8 33.0 29.7 0.0 2016-2017
## 4494 543.7 59.5 36.0 29.9 0.0 2016-2017
## 4495 564.4 59.3 33.0 5.1 0.0 2016-2017
## 4496 547.7 51.1 26.0 57.3 0.0 2016-2017
## 4497 561.7 46.0 21.0 4.6 0.0 2016-2017
## 4498 558.3 62.3 38.0 31.3 0.0 2016-2017
## 4499 557.7 53.7 28.0 29.8 0.0 2016-2017
## 4500 535.8 64.1 39.0 30.7 0.0 2016-2017
## 4501 534.9 64.5 41.0 54.7 0.0 2016-2017
## 4502 552.0 58.5 34.0 55.2 0.0 2016-2017
## 4503 530.6 50.4 27.0 28.4 0.0 2016-2017
## 4504 524.3 62.9 39.0 84.1 0.0 2016-2017
## 4505 543.0 56.8 32.0 55.4 0.0 2016-2017
## 4506 576.0 54.3 28.0 32.2 0.0 2016-2017
## 4507 559.5 63.3 37.0 32.3 0.0 2016-2017
## 4508 551.8 67.2 42.0 60.1 0.0 2016-2017
## 4509 543.4 61.6 37.0 84.6 0.0 2016-2017
## 4510 556.5 49.5 21.0 32.7 0.0 2016-2017
## 4511 520.8 51.1 27.0 86.0 0.0 2016-2017
## 4512 553.8 57.3 27.0 29.0 0.0 2016-2017
## 4513 521.1 61.3 36.0 57.0 0.0 2016-2017
## 4514 557.6 69.6 53.0 55.1 0.0 2016-2017
## 4515 562.5 60.2 34.0 58.2 0.0 2016-2017
## 4516 575.3 52.4 27.0 57.4 0.0 2016-2017
## 4517 576.7 56.1 29.0 59.2 0.0 2016-2017
## 4518 574.1 71.1 44.0 31.1 0.0 2016-2017
## 4519 427.8 47.6 26.0 4.1 0.0 2016-2017
## 4520 424.4 48.8 29.0 26.4 0.0 2016-2017
## 4521 407.7 46.7 24.0 4.4 0.0 2016-2017
## 4522 423.6 45.4 22.0 4.8 0.0 2016-2017
## 4523 428.6 45.6 25.0 26.9 0.0 2016-2017
## 4524 429.2 49.7 28.0 4.2 0.0 2016-2017
## 4525 423.5 53.1 31.0 28.3 0.0 2016-2017
## 4526 428.2 45.8 22.0 28.4 0.0 2016-2017
## 4527 425.3 48.7 27.0 3.9 0.0 2016-2017
## 4528 426.7 45.5 23.0 4.2 0.0 2016-2017
## 4529 439.0 44.4 23.0 4.4 0.0 2016-2017
## 4530 408.6 54.4 29.0 50.4 0.0 2016-2017
## 4531 436.5 48.6 27.0 26.5 0.0 2016-2017
## 4532 423.1 46.2 24.0 4.1 0.0 2016-2017
## 4533 446.4 44.8 21.0 4.7 0.0 2016-2017
## 4534 423.1 52.1 29.0 26.1 0.0 2016-2017
## 4535 433.3 44.6 23.0 4.2 0.0 2016-2017
## 4536 436.7 47.8 26.0 49.6 0.0 2016-2017
## 4537 430.2 43.9 22.0 26.8 0.0 2016-2017
## 4538 425.6 48.5 24.0 4.0 0.0 2016-2017
## 4539 419.4 50.4 29.0 4.1 0.0 2016-2017
## 4540 434.9 46.8 25.0 26.4 0.0 2016-2017
## 4541 432.4 47.5 27.0 26.4 0.0 2016-2017
## 4542 439.5 47.0 26.0 4.3 0.0 2016-2017
## 4543 436.0 55.2 35.0 26.6 0.0 2016-2017
## 4544 459.0 47.8 25.0 29.6 0.0 2016-2017
## 4545 452.3 46.9 23.0 4.5 0.0 2016-2017
## 4546 433.3 48.1 26.0 47.7 0.0 2016-2017
## 4547 446.2 47.1 24.0 4.4 0.0 2016-2017
## 4548 373.0 64.4 40.0 5.0 0.0 2016-2017
## 4549 384.5 65.8 43.0 50.0 0.0 2016-2017
## 4550 392.4 54.8 32.0 46.5 0.0 2016-2017
## 4551 382.7 67.6 42.0 27.4 0.0 2016-2017
## 4552 383.0 67.0 44.0 70.9 0.0 2016-2017
## 4553 384.8 50.1 29.0 4.6 0.0 2016-2017
## 4554 382.9 88.5 67.0 73.3 0.0 2016-2017
## 4555 385.4 54.4 31.0 50.9 0.0 2016-2017
## 4556 387.1 50.2 28.0 27.6 0.0 2016-2017
## 4557 379.4 94.6 72.0 75.0 0.0 2016-2017
## 4558 395.0 52.1 28.0 4.1 0.0 2016-2017
## 4559 385.5 56.1 36.0 3.6 0.0 2016-2017
## 4560 400.6 60.8 40.0 3.8 0.0 2016-2017
## 4561 396.2 44.4 19.0 27.6 0.0 2016-2017
## 4562 402.6 56.9 33.0 50.2 0.0 2016-2017
## 4563 378.4 62.7 42.0 27.7 0.0 2016-2017
## 4564 387.4 49.5 26.0 27.4 0.0 2016-2017
## 4565 386.4 45.9 28.0 26.9 0.0 2016-2017
## 4566 391.7 70.5 49.0 121.1 0.0 2016-2017
## 4567 374.5 57.6 36.0 27.1 0.0 2016-2017
## 4568 403.9 51.8 32.0 28.0 0.0 2016-2017
## 4569 408.2 52.1 29.0 28.9 0.0 2016-2017
## 4570 391.2 49.6 25.0 74.7 0.0 2016-2017
## 4571 387.9 54.2 33.0 3.9 0.0 2016-2017
## 4572 384.0 49.9 27.0 51.9 0.0 2016-2017
## 4573 386.9 61.0 39.0 51.0 0.0 2016-2017
## 4574 407.3 54.5 31.0 4.5 0.0 2016-2017
## 4575 397.0 63.5 41.0 74.5 0.0 2016-2017
## 4576 380.7 62.8 42.0 54.9 0.0 2016-2017
## 4577 402.2 59.9 37.0 55.6 0.0 2016-2017
## 4578 395.2 53.9 31.0 54.5 0.0 2016-2017
## 4579 397.6 49.8 25.0 29.4 0.0 2016-2017
## 4580 399.8 54.1 29.0 56.4 0.0 2016-2017
## 4581 391.6 61.2 39.0 53.1 0.0 2016-2017
## 4582 396.6 58.4 35.0 78.2 0.0 2016-2017
## 4583 382.6 55.3 29.0 59.2 0.0 2016-2017
## 4584 406.4 44.4 24.0 56.1 0.0 2016-2017
## 4585 396.7 62.4 38.0 53.0 0.0 2016-2017
## 4586 401.5 55.1 32.0 52.5 0.0 2016-2017
## 4587 404.4 54.9 34.0 102.6 0.0 2016-2017
## 4588 407.7 54.4 29.0 53.3 0.0 2016-2017
## 4589 415.5 68.2 44.0 28.8 0.0 2016-2017
## 4590 409.8 53.5 31.0 27.8 0.0 2016-2017
## 4591 400.6 49.0 27.0 28.5 0.0 2016-2017
## 4592 399.8 53.6 29.0 83.2 0.0 2016-2017
## 4593 400.5 55.6 31.0 29.5 0.0 2016-2017
## 4594 422.6 57.0 34.0 4.1 0.0 2016-2017
## 4595 406.2 58.5 35.0 109.7 0.0 2016-2017
## 4596 405.3 69.8 46.0 113.3 0.0 2016-2017
## 4597 400.7 88.1 66.0 56.6 0.0 2016-2017
## 4598 409.1 66.1 43.0 54.3 0.0 2016-2017
## 4599 424.3 56.2 40.0 54.2 0.0 2016-2017
## 4600 417.2 72.2 49.0 30.6 0.0 2016-2017
## 4601 404.9 66.6 47.0 79.6 0.0 2016-2017
## 4602 422.4 60.3 37.0 93.3 0.0 2016-2017
## 4603 436.5 76.1 51.0 121.3 0.0 2016-2017
## 4604 436.9 45.5 22.4 4.7 0.0 2016-2017
## 4605 452.8 47.8 25.2 5.2 0.0 2016-2017
## 4606 454.8 47.0 24.4 5.0 0.0 2016-2017
## 4607 445.6 55.1 33.8 27.1 0.0 2016-2017
## 4608 442.6 48.2 22.8 27.3 0.0 2016-2017
## 4609 451.1 50.0 27.7 4.4 0.0 2016-2017
## 4610 459.3 53.8 32.4 5.2 0.0 2016-2017
## 4611 460.9 57.9 37.0 4.5 0.0 2016-2017
## 4612 460.1 51.6 26.0 5.4 0.0 2016-2017
## 4613 449.6 49.2 25.9 4.9 0.0 2016-2017
## 4614 458.9 56.4 31.9 4.8 0.0 2016-2017
## 4615 456.0 49.0 26.2 4.9 0.0 2016-2017
## 4616 453.7 50.4 30.3 5.1 0.0 2016-2017
## 4617 446.0 53.5 28.1 27.7 0.0 2016-2017
## 4618 454.6 51.9 28.9 5.0 0.0 2016-2017
## 4619 458.4 46.0 26.7 26.9 0.0 2016-2017
## 4620 456.5 49.3 26.2 5.0 0.0 2016-2017
## 4621 447.6 54.9 32.6 26.8 0.0 2016-2017
## 4622 463.7 51.3 29.4 4.4 0.0 2016-2017
## 4623 464.8 52.4 28.6 5.0 0.0 2016-2017
## 4624 453.1 62.3 40.5 4.8 0.0 2016-2017
## 4625 453.8 52.3 29.0 27.5 0.0 2016-2017
## 4626 453.3 47.4 25.1 26.4 0.0 2016-2017
## 4627 452.3 46.4 22.5 27.1 0.0 2016-2017
## 4628 466.3 50.1 25.9 5.4 0.0 2016-2017
## 4629 465.3 50.1 26.5 28.5 0.0 2016-2017
## 4630 456.4 44.5 20.3 5.4 0.0 2016-2017
## 4631 452.5 46.5 22.0 27.7 0.0 2016-2017
## 4632 461.1 53.1 29.5 26.7 0.0 2016-2017
## 4633 450.7 56.3 33.4 27.3 0.0 2016-2017
## 4634 456.6 45.9 22.3 27.4 0.0 2016-2017
## 4635 462.8 50.9 27.4 4.9 0.0 2016-2017
## 4636 445.4 60.1 36.6 53.3 0.0 2016-2017
## 4637 464.3 51.5 26.7 4.9 0.0 2016-2017
## 4638 468.0 52.4 27.8 27.8 0.0 2016-2017
## 4639 462.1 54.8 30.6 5.1 0.0 2016-2017
## 4640 465.4 46.0 24.3 28.0 0.0 2016-2017
## 4641 464.4 53.4 30.9 27.3 0.0 2016-2017
## 4642 456.5 47.3 25.5 50.3 0.0 2016-2017
## 4643 462.5 49.4 27.4 26.5 0.0 2016-2017
## 4644 468.1 62.9 41.1 27.2 0.0 2016-2017
## 4645 456.1 56.8 32.2 52.1 0.0 2016-2017
## 4646 454.2 55.0 30.6 76.0 0.0 2016-2017
## 4647 467.2 56.2 31.7 5.2 0.0 2016-2017
## 4648 459.5 50.2 26.6 52.3 0.0 2016-2017
## 4649 474.8 52.2 31.2 4.8 0.0 2016-2017
## 4650 461.3 49.6 26.2 27.5 0.0 2016-2017
## 4651 470.5 52.2 27.4 5.0 0.0 2016-2017
## 4652 454.0 51.3 28.8 27.8 0.0 2016-2017
## 4653 485.4 52.5 27.0 5.1 0.0 2016-2017
## 4654 469.4 62.8 38.1 28.6 0.0 2016-2017
## 4655 480.7 62.4 34.6 6.1 0.0 2016-2017
## 4656 479.6 52.5 27.4 4.9 0.0 2016-2017
## 4657 455.5 47.3 23.1 29.2 0.0 2016-2017
## 4658 463.4 51.2 24.5 5.2 0.0 2016-2017
## 4659 457.6 49.2 26.4 51.7 0.0 2016-2017
## 4660 472.6 50.7 25.8 28.4 0.0 2016-2017
## 4661 455.0 50.4 28.5 52.2 0.0 2016-2017
## 4662 469.8 49.2 26.3 27.9 0.0 2016-2017
## 4663 467.1 54.3 31.1 29.3 0.0 2016-2017
## 4664 464.5 49.1 25.0 53.9 0.0 2016-2017
## 4665 451.6 53.2 29.4 74.1 0.0 2016-2017
## 4666 478.6 49.5 25.6 51.0 0.0 2016-2017
## 4667 456.3 59.4 36.8 76.7 0.0 2016-2017
## 4668 495.3 54.5 26.8 5.7 0.0 2016-2017
## 4669 482.9 52.7 29.8 5.1 0.0 2016-2017
## 4670 487.8 50.8 26.5 5.3 0.0 2016-2017
## 4671 484.7 46.0 20.3 5.6 0.0 2016-2017
## 4672 465.9 52.6 30.9 27.3 0.0 2016-2017
## 4673 478.0 51.6 28.1 28.2 0.0 2016-2017
## 4674 469.1 54.7 30.5 29.1 0.0 2016-2017
## 4675 486.4 55.6 34.4 29.3 0.0 2016-2017
## 4676 483.0 53.2 29.0 29.6 0.0 2016-2017
## 4677 488.3 51.6 26.8 5.5 0.0 2016-2017
## 4678 468.6 54.5 31.0 52.9 0.0 2016-2017
## 4679 485.5 52.9 29.5 5.7 0.0 2016-2017
## 4680 468.4 55.4 29.7 78.9 0.0 2016-2017
## 4681 472.0 60.0 36.0 28.7 0.0 2016-2017
## 4682 472.1 55.2 30.5 29.5 0.0 2016-2017
## 4683 498.0 56.5 28.9 6.1 0.0 2016-2017
## 4684 483.8 56.6 35.6 52.5 0.0 2016-2017
## 4685 477.4 60.3 38.1 29.1 0.0 2016-2017
## 4686 472.7 56.0 32.7 78.9 0.0 2016-2017
## 4687 478.2 60.5 35.0 53.7 0.0 2016-2017
## 4688 462.3 55.8 30.6 83.2 0.0 2016-2017
## 4689 485.7 60.3 33.5 28.5 0.0 2016-2017
## 4690 486.6 52.8 27.0 51.7 0.0 2016-2017
## 4691 486.0 59.7 35.4 5.7 0.0 2016-2017
## 4692 482.4 65.5 40.9 54.2 0.0 2016-2017
## 4693 487.3 52.7 26.9 56.7 0.0 2016-2017
## 4694 483.0 58.1 31.8 53.0 0.0 2016-2017
## 4695 463.6 56.2 31.7 76.1 0.0 2016-2017
## 4696 484.6 54.4 30.4 54.9 0.0 2016-2017
## 4697 481.0 50.7 24.5 29.9 0.0 2016-2017
## 4698 513.3 53.8 29.9 31.1 0.0 2016-2017
## 4699 494.4 47.5 24.0 54.7 0.0 2016-2017
## 4700 470.9 65.9 41.6 126.8 0.0 2016-2017
## 4701 474.0 64.8 38.8 102.4 0.0 2016-2017
## 4702 478.4 56.4 34.0 28.5 0.0 2016-2017
## 4703 461.5 50.8 25.3 105.5 0.0 2016-2017
## 4704 499.3 60.8 33.9 29.7 0.0 2016-2017
## 4705 471.2 55.9 31.1 102.8 0.0 2016-2017
## 4706 523.6 55.1 28.7 31.7 0.0 2016-2017
## 4707 481.8 61.2 34.2 55.1 0.0 2016-2017
## 4708 488.0 64.0 37.5 84.6 0.0 2016-2017
## 4709 573.4 45.7 22.6 0.0 2437.6 2016-2017
## 4710 570.5 75.0 51.9 120.0 2453.7 2016-2017
## 4711 592.9 47.2 26.0 0.0 2549.3 2016-2017
## 4712 582.8 46.4 22.7 0.0 2488.5 2016-2017
## 4713 584.3 57.8 36.4 60.0 2492.0 2016-2017
## 4714 586.1 65.7 41.4 120.0 2514.3 2016-2017
## 4715 576.4 67.8 42.9 0.0 2553.5 2016-2017
## 4716 599.8 56.2 33.5 60.0 2613.0 2016-2017
## 4717 585.2 52.7 28.9 60.0 2514.6 2016-2017
## 4718 606.5 53.4 29.3 60.0 2570.2 2016-2017
## 4719 578.6 67.1 40.1 180.0 2473.0 2016-2017
## 4720 582.3 58.4 34.6 60.0 2485.0 2016-2017
## 4721 589.5 44.7 22.1 0.0 2546.9 2016-2017
## 4722 598.3 53.2 30.0 60.0 2561.1 2016-2017
## 4723 590.6 52.3 27.4 120.0 2525.0 2016-2017
## 4724 598.5 61.6 37.1 60.0 2567.7 2016-2017
## 4725 589.2 61.5 35.8 0.0 2571.1 2016-2017
## 4726 575.2 69.5 45.2 120.0 2499.5 2016-2017
## 4727 587.3 71.3 49.1 0.0 2586.0 2016-2017
## 4728 625.2 49.8 24.7 0.0 2682.0 2016-2017
## 4729 601.8 54.8 32.6 60.0 2588.3 2016-2017
## 4730 588.5 93.5 70.2 60.0 2596.3 2016-2017
## 4731 576.4 60.3 38.5 60.0 2497.6 2016-2017
## 4732 587.4 46.2 22.6 0.0 2503.2 2016-2017
## 4733 570.7 66.3 43.4 60.0 2500.1 2016-2017
## 4734 601.3 67.3 43.2 120.0 2608.3 2016-2017
## 4735 609.9 57.6 33.3 60.0 2595.9 2016-2017
## 4736 579.8 57.8 34.2 60.0 2508.5 2016-2017
## 4737 612.1 52.2 24.7 0.0 2608.2 2016-2017
## 4738 574.5 59.1 35.9 240.0 2462.3 2016-2017
## 4739 578.8 51.2 26.5 60.0 2514.5 2016-2017
## 4740 577.2 69.3 48.0 120.0 2508.8 2016-2017
## 4741 572.0 62.3 44.2 60.0 2525.1 2016-2017
## 4742 573.5 50.3 25.9 60.0 2471.4 2016-2017
## 4743 598.8 47.8 24.7 60.0 2569.7 2016-2017
## 4744 595.5 57.7 34.1 0.0 2583.1 2016-2017
## 4745 612.9 61.7 37.1 60.0 2635.6 2016-2017
## 4746 596.7 67.7 46.6 120.0 2594.7 2016-2017
## 4747 625.9 53.1 30.0 60.0 2689.9 2016-2017
## 4748 618.6 55.2 31.4 60.0 2643.3 2016-2017
## 4749 620.5 63.5 37.7 60.0 2639.3 2016-2017
## 4750 589.1 67.9 44.5 120.0 2559.7 2016-2017
## 4751 628.3 49.0 26.8 60.0 2653.4 2016-2017
## 4752 607.0 117.8 53.3 60.0 2618.8 2016-2017
## 4753 601.9 66.6 42.2 120.0 2621.0 2016-2017
## 4754 568.3 54.4 32.8 120.0 2475.2 2016-2017
## 4755 618.3 66.3 41.1 60.0 2669.6 2016-2017
## 4756 593.9 55.5 30.9 180.0 2585.4 2016-2017
## 4757 583.9 59.9 34.8 240.0 2519.9 2016-2017
## 4758 607.9 57.1 32.5 120.0 2589.9 2016-2017
## 4759 595.5 70.6 46.7 180.0 2534.2 2016-2017
## 4760 602.3 73.7 50.1 120.0 2609.9 2016-2017
## 4761 616.9 59.6 34.4 60.0 2619.9 2016-2017
## 4762 589.5 62.0 39.2 120.0 2589.3 2016-2017
## 4763 587.0 67.7 42.2 180.0 2526.4 2016-2017
## 4764 607.0 84.2 58.7 60.0 2639.8 2016-2017
## 4765 601.4 66.3 42.5 180.0 2590.1 2016-2017
## 4766 597.3 54.9 30.1 120.0 2594.8 2016-2017
## 4767 593.4 58.2 33.3 180.0 2536.1 2016-2017
## 4768 619.7 60.5 35.6 120.0 2649.2 2016-2017
## 4769 590.4 57.6 32.2 180.0 2543.4 2016-2017
## 4770 639.4 61.0 34.8 60.0 2683.5 2016-2017
## 4771 617.9 61.7 35.8 180.0 2654.5 2016-2017
## 4772 617.3 60.3 36.3 120.0 2654.0 2016-2017
## 4773 572.4 58.4 33.1 120.0 2463.1 2016-2017
## 4774 573.1 74.6 52.1 240.0 2507.9 2016-2017
## 4775 613.4 81.7 56.7 120.0 2666.2 2016-2017
## 4776 641.0 60.3 33.7 120.0 2722.2 2016-2017
## 4777 581.2 48.3 25.1 60.0 2543.6 2016-2017
## 4778 613.1 77.7 50.8 60.0 2623.2 2016-2017
## 4779 596.8 50.6 26.0 120.0 2544.1 2016-2017
## 4780 634.5 52.7 26.9 120.0 2744.3 2016-2017
## 4781 617.1 56.1 30.9 0.0 2715.4 2016-2017
## 4782 639.5 50.8 24.3 60.0 2699.8 2016-2017
## 4783 605.1 48.7 22.3 240.0 2607.4 2016-2017
## 4784 643.2 66.8 41.4 60.0 2754.8 2016-2017
## 4785 585.6 55.2 32.1 240.0 2538.9 2016-2017
## 4786 603.6 59.4 34.2 60.0 2628.9 2016-2017
## 4787 622.8 58.2 31.3 0.0 2677.9 2016-2017
## 4788 585.6 45.2 21.0 60.0 2530.8 2016-2017
## 4789 639.8 63.5 38.5 120.0 2765.7 2016-2017
## 4790 638.8 70.4 43.4 120.0 2781.3 2016-2017
## 4791 620.9 50.5 26.0 60.0 2630.3 2016-2017
## 4792 622.9 58.1 31.9 60.0 2707.8 2016-2017
## 4793 609.0 59.4 38.9 180.0 2610.5 2016-2017
## 4794 606.1 84.1 62.1 60.0 2679.2 2016-2017
## 4795 639.7 64.3 37.8 120.0 2797.3 2016-2017
## 4796 577.4 71.1 44.8 120.0 2540.4 2016-2017
## 4797 619.1 58.3 33.9 180.0 2620.3 2016-2017
## 4798 650.6 60.5 35.3 120.0 2739.5 2016-2017
## 4799 620.1 66.1 40.7 120.0 2652.0 2016-2017
## 4800 588.1 63.1 39.2 240.0 2521.1 2016-2017
## 4801 646.1 72.7 46.7 120.0 2788.0 2016-2017
## 4802 669.8 69.6 46.4 120.0 2835.5 2016-2017
## 4803 602.8 71.1 46.0 180.0 2565.1 2016-2017
## 4804 629.3 47.8 23.5 180.0 2656.4 2016-2017
## 4805 605.0 79.5 52.3 240.0 2620.0 2016-2017
## 4806 614.6 71.5 46.6 240.0 2717.3 2016-2017
## 4807 634.2 66.6 40.0 120.0 2722.1 2016-2017
## 4808 657.2 63.6 37.6 180.0 2782.8 2016-2017
## 4809 628.9 59.5 36.1 120.0 2684.8 2016-2017
## 4810 603.0 56.4 31.8 180.0 2636.8 2016-2017
## 4811 638.1 58.0 31.2 180.0 2737.3 2016-2017
## 4812 328.4 48.1 27.1 5.3 0.0 2016-2017
## 4813 331.2 46.6 24.2 5.4 0.0 2016-2017
## 4814 324.1 50.7 31.8 50.2 0.0 2016-2017
## 4815 328.3 46.3 24.6 4.8 0.0 2016-2017
## 4816 326.1 53.1 30.7 26.8 0.0 2016-2017
## 4817 331.3 46.8 20.8 5.0 0.0 2016-2017
## 4818 332.8 52.3 31.6 4.5 0.0 2016-2017
## 4819 328.2 40.8 21.5 4.5 0.0 2016-2017
## 4820 324.5 48.8 24.6 26.6 0.0 2016-2017
## 4821 322.0 43.9 20.9 27.6 0.0 2016-2017
## 4822 335.1 47.7 23.4 27.9 0.0 2016-2017
## 4823 329.9 48.9 26.5 27.1 0.0 2016-2017
## 4824 335.8 48.9 24.6 28.3 0.0 2016-2017
## 4825 335.7 51.6 29.8 52.6 0.0 2016-2017
## 4826 338.9 51.9 27.8 51.4 0.0 2016-2017
## 4827 329.9 52.2 28.2 4.9 0.0 2016-2017
## 4828 327.3 47.5 28.0 52.2 0.0 2016-2017
## 4829 334.9 51.2 29.1 4.7 0.0 2016-2017
## 4830 328.8 52.0 29.5 4.6 0.0 2016-2017
## 4831 328.1 48.5 25.4 27.9 0.0 2016-2017
## 4832 321.8 49.1 31.5 28.8 0.0 2016-2017
## 4833 330.6 49.4 26.7 5.6 0.0 2016-2017
## 4834 329.8 44.6 23.3 50.0 0.0 2016-2017
## 4835 339.1 47.2 26.0 52.8 0.0 2016-2017
## 4836 337.2 49.8 30.5 27.2 0.0 2016-2017
## 4837 326.5 42.8 21.0 26.2 0.0 2016-2017
## 4838 321.6 49.1 26.9 49.8 0.0 2016-2017
## 4839 328.1 44.3 19.6 52.1 0.0 2016-2017
## 4840 328.8 43.6 22.1 28.2 0.0 2016-2017
## 4841 331.3 45.2 23.8 31.4 0.0 2016-2017
## 4842 329.5 52.6 34.6 49.9 0.0 2016-2017
## 4843 332.1 48.1 26.7 27.6 0.0 2016-2017
## 4844 329.7 54.4 33.8 71.2 0.0 2016-2017
## 4845 337.9 52.9 29.1 5.2 0.0 2016-2017
## 4846 340.0 63.4 40.9 26.3 0.0 2016-2017
## 4847 342.3 47.1 23.3 27.7 0.0 2016-2017
## 4848 341.4 50.6 26.4 28.1 0.0 2016-2017
## 4849 339.9 59.8 34.3 52.3 0.0 2016-2017
## 4850 333.7 50.8 29.0 4.5 0.0 2016-2017
## 4851 344.0 66.8 45.1 26.9 0.0 2016-2017
## 4852 333.4 63.3 40.4 26.6 0.0 2016-2017
## 4853 332.1 52.8 28.6 51.6 0.0 2016-2017
## 4854 338.3 49.2 25.9 27.9 0.0 2016-2017
## 4855 352.2 54.8 36.1 5.3 0.0 2016-2017
## 4856 336.5 57.4 34.6 52.8 0.0 2016-2017
## 4857 332.8 55.1 30.6 51.8 0.0 2016-2017
## 4858 343.4 55.3 33.0 28.3 0.0 2016-2017
## 4859 345.8 55.4 38.8 29.3 0.0 2016-2017
## 4860 340.2 52.2 38.7 28.2 0.0 2016-2017
## 4861 338.0 62.2 39.7 50.0 0.0 2016-2017
## 4862 343.9 58.0 34.0 53.3 0.0 2016-2017
## 4863 336.7 51.0 26.6 78.2 0.0 2016-2017
## 4864 338.4 59.4 36.2 78.2 0.0 2016-2017
## 4865 337.5 51.8 28.6 54.7 0.0 2016-2017
## 4866 343.1 59.3 36.0 78.6 0.0 2016-2017
## 4867 351.5 49.4 25.3 28.9 0.0 2016-2017
## 4868 335.4 49.0 26.4 101.2 0.0 2016-2017
## 4869 350.4 54.9 33.1 79.4 0.0 2016-2017
## 4870 359.6 52.2 28.0 53.4 0.0 2016-2017
## 4871 454.7 38.6 22.8 8.5 0.0 2016-2017
## 4872 455.2 38.6 22.3 29.9 0.0 2016-2017
## 4873 466.7 37.8 21.4 8.0 0.0 2016-2017
## 4874 443.7 45.0 27.0 30.7 0.0 2016-2017
## 4875 466.2 40.9 25.0 7.8 0.0 2016-2017
## 4876 462.0 39.3 22.2 29.7 0.0 2016-2017
## 4877 465.1 39.3 22.7 8.1 0.0 2016-2017
## 4878 462.1 39.8 23.6 8.3 0.0 2016-2017
## 4879 456.6 40.2 22.5 29.7 0.0 2016-2017
## 4880 467.9 38.6 21.3 30.7 0.0 2016-2017
## 4881 462.4 44.5 28.4 8.1 0.0 2016-2017
## 4882 465.7 36.8 19.4 8.5 0.0 2016-2017
## 4883 469.1 43.9 27.1 8.1 0.0 2016-2017
## 4884 466.8 41.5 25.1 31.3 0.0 2016-2017
## 4885 466.1 41.9 25.4 30.2 0.0 2016-2017
## 4886 456.2 40.2 22.6 8.5 0.0 2016-2017
## 4887 458.4 43.9 26.6 32.1 0.0 2016-2017
## 4888 466.0 45.8 28.0 8.7 0.0 2016-2017
## 4889 465.8 43.3 25.9 30.5 0.0 2016-2017
## 4890 463.8 43.3 26.1 32.6 0.0 2016-2017
## 4891 457.0 48.4 31.7 7.7 0.0 2016-2017
## 4892 465.6 40.1 23.3 33.7 0.0 2016-2017
## 4893 450.3 49.9 32.6 52.0 0.0 2016-2017
## 4894 463.5 48.5 29.6 8.2 0.0 2016-2017
## 4895 478.3 43.4 27.5 7.9 0.0 2016-2017
## 4896 481.9 41.9 25.7 8.1 0.0 2016-2017
## 4897 473.7 47.7 29.8 8.8 0.0 2016-2017
## 4898 462.3 42.3 24.6 53.1 0.0 2016-2017
## 4899 466.6 41.8 25.3 31.4 0.0 2016-2017
## 4900 485.2 36.7 20.0 8.4 0.0 2016-2017
## 4901 468.3 39.3 22.7 8.3 0.0 2016-2017
## 4902 477.7 48.4 30.4 8.6 0.0 2016-2017
## 4903 459.2 47.2 29.5 30.6 0.0 2016-2017
## 4904 483.3 40.5 24.2 8.0 0.0 2016-2017
## 4905 468.6 43.4 25.6 54.7 0.0 2016-2017
## 4906 473.2 44.9 26.3 34.2 0.0 2016-2017
## 4907 478.6 42.3 25.8 31.1 0.0 2016-2017
## 4908 463.3 47.9 30.8 53.4 0.0 2016-2017
## 4909 462.5 40.6 22.0 32.4 0.0 2016-2017
## 4910 463.2 40.9 25.4 29.7 0.0 2016-2017
## 4911 469.7 42.2 25.0 8.4 0.0 2016-2017
## 4912 468.8 39.1 22.7 32.9 0.0 2016-2017
## 4913 476.1 45.4 28.1 32.1 0.0 2016-2017
## 4914 461.6 42.9 25.7 76.2 0.0 2016-2017
## 4915 500.3 40.5 23.3 8.6 0.0 2016-2017
## 4916 480.5 38.3 22.3 7.9 0.0 2016-2017
## 4917 476.4 40.2 22.3 31.7 0.0 2016-2017
## 4918 474.8 40.6 23.0 32.4 0.0 2016-2017
## 4919 469.6 50.8 34.1 8.4 0.0 2016-2017
## 4920 486.7 44.4 26.2 8.8 0.0 2016-2017
## 4921 468.9 47.3 29.5 52.0 0.0 2016-2017
## 4922 481.8 46.0 28.5 32.5 0.0 2016-2017
## 4923 479.5 38.9 21.0 31.9 0.0 2016-2017
## 4924 472.4 46.6 30.7 53.7 0.0 2016-2017
## 4925 476.5 40.5 23.3 32.0 0.0 2016-2017
## 4926 474.5 41.5 23.9 32.1 0.0 2016-2017
## 4927 477.4 40.2 23.4 55.1 0.0 2016-2017
## 4928 478.0 46.1 28.8 32.5 0.0 2016-2017
## 4929 481.7 39.2 22.8 31.8 0.0 2016-2017
## 4930 488.5 49.3 32.0 33.2 0.0 2016-2017
## 4931 501.4 42.6 23.8 9.0 0.0 2016-2017
## 4932 479.8 52.3 35.5 76.5 0.0 2016-2017
## 4933 492.7 42.5 23.7 34.5 0.0 2016-2017
## 4934 469.6 48.1 24.8 31.1 0.0 2016-2017
## 4935 501.4 43.6 25.5 8.6 0.0 2016-2017
## 4936 495.9 40.7 23.2 9.1 0.0 2016-2017
## 4937 478.3 46.4 28.1 34.9 0.0 2016-2017
## 4938 482.0 51.4 34.1 33.3 0.0 2016-2017
## 4939 485.3 41.4 24.3 31.6 0.0 2016-2017
## 4940 472.5 49.8 33.0 55.5 0.0 2016-2017
## 4941 477.7 40.8 22.9 32.7 0.0 2016-2017
## 4942 504.0 41.4 23.9 9.5 0.0 2016-2017
## 4943 488.0 45.2 26.6 9.2 0.0 2016-2017
## 4944 492.7 43.1 25.2 8.0 0.0 2016-2017
## 4945 494.5 41.9 24.2 34.5 0.0 2016-2017
## 4946 493.0 46.7 28.5 8.7 0.0 2016-2017
## 4947 486.6 45.5 26.9 8.8 0.0 2016-2017
## 4948 493.9 38.6 19.5 59.3 0.0 2016-2017
## 4949 494.7 44.9 26.3 55.0 0.0 2016-2017
## 4950 475.4 47.5 28.7 33.0 0.0 2016-2017
## 4951 487.6 43.4 25.6 56.2 0.0 2016-2017
## 4952 486.8 45.2 26.6 8.7 0.0 2016-2017
## 4953 510.2 41.0 24.0 8.3 0.0 2016-2017
## 4954 478.9 42.1 25.3 56.5 0.0 2016-2017
## 4955 484.4 46.5 27.8 34.0 0.0 2016-2017
## 4956 483.5 46.4 28.8 57.5 0.0 2016-2017
## 4957 488.9 47.8 30.2 83.1 0.0 2016-2017
## 4958 473.4 53.1 36.2 8.7 0.0 2016-2017
## 4959 480.0 40.6 23.0 8.4 0.0 2016-2017
## 4960 503.7 44.7 25.6 9.1 0.0 2016-2017
## 4961 493.4 48.1 31.4 57.6 0.0 2016-2017
## 4962 506.6 43.1 25.5 34.1 0.0 2016-2017
## 4963 504.7 46.8 29.5 8.7 0.0 2016-2017
## 4964 498.5 43.3 24.9 34.9 0.0 2016-2017
## 4965 507.5 44.9 25.6 35.9 0.0 2016-2017
## 4966 505.6 44.8 24.7 9.1 0.0 2016-2017
## 4967 517.5 43.2 25.9 8.9 0.0 2016-2017
## 4968 499.3 43.8 25.5 33.6 0.0 2016-2017
## 4969 483.7 46.1 29.0 59.7 0.0 2016-2017
## 4970 507.0 38.0 19.7 35.5 0.0 2016-2017
## 4971 513.9 46.8 28.9 9.3 0.0 2016-2017
## 4972 525.0 39.9 22.6 33.7 0.0 2016-2017
## 4973 504.8 44.0 25.8 34.1 0.0 2016-2017
## 4974 511.8 54.8 35.2 60.9 0.0 2016-2017
## 4975 524.1 51.5 32.9 8.9 0.0 2016-2017
## 4976 510.5 48.1 26.7 63.0 0.0 2016-2017
## 4977 525.1 46.1 27.7 59.5 0.0 2016-2017
## 4978 393.1 44.3 31.0 11.0 0.0 2016-2017
## 4979 394.8 43.8 27.9 8.5 0.0 2016-2017
## 4980 404.8 37.7 21.6 9.7 0.0 2016-2017
## 4981 401.9 38.5 21.6 34.0 0.0 2016-2017
## 4982 405.2 40.8 24.8 32.5 0.0 2016-2017
## 4983 413.8 44.6 29.8 32.5 0.0 2016-2017
## 4984 414.5 40.6 24.9 32.8 0.0 2016-2017
## 4985 400.0 41.2 26.6 32.2 0.0 2016-2017
## 4986 421.0 40.8 23.4 8.6 0.0 2016-2017
## 4987 422.3 38.6 22.1 9.4 0.0 2016-2017
## 4988 401.1 39.7 24.6 55.5 0.0 2016-2017
## 4989 416.4 37.5 20.2 8.3 0.0 2016-2017
## 4990 402.8 41.7 26.4 56.1 0.0 2016-2017
## 4991 403.3 39.7 21.9 55.4 0.0 2016-2017
## 4992 413.2 42.0 26.3 31.9 0.0 2016-2017
## 4993 410.9 44.7 27.9 8.7 0.0 2016-2017
## 4994 429.8 38.2 22.1 8.5 0.0 2016-2017
## 4995 435.5 39.5 21.9 8.7 0.0 2016-2017
## 4996 408.7 41.3 25.6 53.7 0.0 2016-2017
## 4997 415.1 42.4 24.8 32.0 0.0 2016-2017
## 4998 414.8 41.4 25.1 8.4 0.0 2016-2017
## 4999 410.4 38.7 20.9 55.5 0.0 2016-2017
## 5000 429.2 43.4 27.6 31.8 0.0 2016-2017
## 5001 434.5 37.2 20.4 33.3 0.0 2016-2017
## 5002 426.7 37.7 20.0 32.3 0.0 2016-2017
## 5003 418.6 41.0 23.9 54.8 0.0 2016-2017
## 5004 441.2 44.8 27.2 33.7 0.0 2016-2017
## 5005 449.4 38.9 21.8 9.3 0.0 2016-2017
## 5006 476.0 45.2 25.3 38.3 0.0 2016-2017
## 5007 417.7 51.4 33.8 53.8 0.0 2016-2017
## 5008 338.6 39.4 24.1 8.3 0.0 2016-2017
## 5009 341.8 38.1 21.0 30.3 0.0 2016-2017
## 5010 342.0 37.2 20.6 31.2 0.0 2016-2017
## 5011 339.3 39.9 24.4 9.2 0.0 2016-2017
## 5012 328.7 44.8 28.4 29.1 0.0 2016-2017
## 5013 333.7 38.9 22.0 31.1 0.0 2016-2017
## 5014 333.1 37.6 19.3 31.2 0.0 2016-2017
## 5015 342.7 42.1 24.5 33.0 0.0 2016-2017
## 5016 335.8 38.5 22.0 31.0 0.0 2016-2017
## 5017 332.2 42.5 25.7 30.5 0.0 2016-2017
## 5018 329.9 41.0 23.7 30.4 0.0 2016-2017
## 5019 339.5 45.1 27.0 8.7 0.0 2016-2017
## 5020 339.8 44.7 28.4 8.4 0.0 2016-2017
## 5021 331.8 40.9 25.3 52.3 0.0 2016-2017
## 5022 337.9 42.0 25.6 8.5 0.0 2016-2017
## 5023 332.5 41.2 21.3 33.4 0.0 2016-2017
## 5024 341.2 42.3 24.7 33.1 0.0 2016-2017
## 5025 334.0 47.8 32.6 31.4 0.0 2016-2017
## 5026 349.2 39.7 21.9 9.3 0.0 2016-2017
## 5027 342.7 42.5 26.5 8.5 0.0 2016-2017
## 5028 339.2 39.4 22.7 11.4 0.0 2016-2017
## 5029 338.9 42.4 25.5 32.1 0.0 2016-2017
## 5030 335.9 43.1 26.1 9.0 0.0 2016-2017
## 5031 335.9 40.8 21.7 59.1 0.0 2016-2017
## 5032 348.6 47.7 30.5 31.7 0.0 2016-2017
## 5033 339.6 41.5 22.7 56.7 0.0 2016-2017
## 5034 340.0 40.8 23.1 33.1 0.0 2016-2017
## 5035 333.6 41.6 25.6 56.4 0.0 2016-2017
## 5036 334.8 43.2 26.8 9.2 0.0 2016-2017
## 5037 336.8 38.1 20.5 9.0 0.0 2016-2017
## 5038 337.5 42.7 25.5 34.0 0.0 2016-2017
## 5039 339.6 42.6 26.8 32.9 0.0 2016-2017
## 5040 343.0 46.2 27.2 32.3 0.0 2016-2017
## 5041 358.7 62.7 44.8 32.4 0.0 2016-2017
## 5042 329.1 38.8 22.8 33.2 0.0 2016-2017
## 5043 331.8 36.8 21.1 32.8 0.0 2016-2017
## 5044 342.0 38.1 21.7 33.4 0.0 2016-2017
## 5045 340.1 43.3 25.3 57.4 0.0 2016-2017
## 5046 340.5 44.8 24.8 34.9 0.0 2016-2017
## 5047 336.8 43.5 25.4 80.5 0.0 2016-2017
## 5048 340.6 41.4 22.4 57.0 0.0 2016-2017
## 5049 338.7 44.9 25.8 58.9 0.0 2016-2017
## 5050 355.1 45.2 27.2 8.6 0.0 2016-2017
## 5051 344.9 41.7 24.3 60.6 0.0 2016-2017
## 5052 345.6 40.7 25.5 33.5 0.0 2016-2017
## 5053 348.0 38.4 21.0 33.2 0.0 2016-2017
## 5054 332.6 43.8 24.7 61.8 0.0 2016-2017
## 5055 350.7 46.5 34.2 35.4 0.0 2016-2017
## 5056 343.7 45.4 28.7 31.5 0.0 2016-2017
## 5057 362.7 38.8 21.9 9.2 0.0 2016-2017
## 5058 371.2 34.6 17.7 34.5 0.0 2016-2017
## 5059 368.7 36.4 19.1 8.8 0.0 2016-2017
## 5060 342.4 46.5 29.0 57.9 0.0 2016-2017
## 5061 358.1 43.6 25.6 8.8 0.0 2016-2017
## 5062 357.3 49.7 31.2 57.7 0.0 2016-2017
## 5063 356.3 37.6 20.5 57.2 0.0 2016-2017
## 5064 433.6 40.9 23.0 5.3 0.0 2016-2017
## 5065 441.1 40.0 22.0 5.3 0.0 2016-2017
## 5066 440.3 40.9 23.0 5.0 0.0 2016-2017
## 5067 437.5 48.6 31.0 5.4 0.0 2016-2017
## 5068 439.2 37.6 20.0 5.1 0.0 2016-2017
## 5069 439.7 45.2 24.0 5.2 0.0 2016-2017
## 5070 445.8 36.8 20.0 4.9 0.0 2016-2017
## 5071 440.7 44.3 27.0 5.7 0.0 2016-2017
## 5072 445.4 45.0 27.0 4.9 0.0 2016-2017
## 5073 438.1 38.3 21.0 5.0 0.0 2016-2017
## 5074 440.5 39.0 19.0 26.5 0.0 2016-2017
## 5075 455.9 42.2 24.0 5.3 0.0 2016-2017
## 5076 450.9 44.3 26.0 6.0 0.0 2016-2017
## 5077 461.2 44.1 23.0 5.3 0.0 2016-2017
## 5078 445.9 48.6 32.0 27.5 0.0 2016-2017
## 5079 454.4 40.5 22.0 4.7 0.0 2016-2017
## 5080 446.7 45.5 28.0 27.8 0.0 2016-2017
## 5081 452.7 45.0 25.0 5.1 0.0 2016-2017
## 5082 448.1 45.0 26.0 5.2 0.0 2016-2017
## 5083 451.5 46.7 29.0 5.0 0.0 2016-2017
## 5084 433.0 45.6 28.0 73.1 0.0 2016-2017
## 5085 455.2 46.6 29.0 5.4 0.0 2016-2017
## 5086 461.1 47.0 26.0 5.2 0.0 2016-2017
## 5087 444.7 45.3 25.0 28.9 0.0 2016-2017
## 5088 440.2 44.5 27.0 28.3 0.0 2016-2017
## 5089 445.7 51.2 33.0 5.2 0.0 2016-2017
## 5090 446.3 41.8 23.0 27.0 0.0 2016-2017
## 5091 452.5 49.5 31.0 29.1 0.0 2016-2017
## 5092 445.7 43.3 24.0 5.5 0.0 2016-2017
## 5093 448.8 49.4 31.0 28.1 0.0 2016-2017
## 5094 456.7 41.5 24.0 5.1 0.0 2016-2017
## 5095 471.2 38.9 21.0 5.2 0.0 2016-2017
## 5096 458.8 44.1 25.0 5.3 0.0 2016-2017
## 5097 460.2 44.5 26.0 27.6 0.0 2016-2017
## 5098 457.3 48.7 29.0 5.3 0.0 2016-2017
## 5099 453.2 41.0 23.0 27.8 0.0 2016-2017
## 5100 461.4 46.9 28.0 5.9 0.0 2016-2017
## 5101 448.3 47.5 31.0 52.1 0.0 2016-2017
## 5102 450.8 43.3 25.0 27.7 0.0 2016-2017
## 5103 449.3 42.5 24.0 5.7 0.0 2016-2017
## 5104 444.0 49.3 30.0 52.5 0.0 2016-2017
## 5105 444.5 39.5 23.0 25.7 0.0 2016-2017
## 5106 468.2 45.7 26.0 5.1 0.0 2016-2017
## 5107 451.6 42.5 24.0 29.4 0.0 2016-2017
## 5108 452.2 45.0 26.0 51.4 0.0 2016-2017
## 5109 440.8 46.2 27.0 51.7 0.0 2016-2017
## 5110 438.9 40.6 21.0 27.8 0.0 2016-2017
## 5111 452.3 42.5 25.0 28.7 0.0 2016-2017
## 5112 456.4 47.8 28.0 50.9 0.0 2016-2017
## 5113 450.2 45.0 25.0 5.5 0.0 2016-2017
## 5114 459.7 47.6 30.0 5.4 0.0 2016-2017
## 5115 455.5 46.9 32.0 28.2 0.0 2016-2017
## 5116 449.7 46.1 28.0 26.6 0.0 2016-2017
## 5117 472.8 49.5 30.0 5.2 0.0 2016-2017
## 5118 464.5 43.9 25.0 54.1 0.0 2016-2017
## 5119 452.7 50.7 30.0 5.4 0.0 2016-2017
## 5120 466.4 39.6 22.0 4.8 0.0 2016-2017
## 5121 455.7 46.2 27.0 29.6 0.0 2016-2017
## 5122 452.5 46.6 27.0 49.1 0.0 2016-2017
## 5123 448.0 48.9 30.0 52.2 0.0 2016-2017
## 5124 443.8 45.8 26.0 51.4 0.0 2016-2017
## 5125 457.6 46.1 29.0 51.0 0.0 2016-2017
## 5126 460.5 46.7 26.0 28.7 0.0 2016-2017
## 5127 465.4 43.3 24.0 29.0 0.0 2016-2017
## 5128 453.8 49.0 32.0 27.6 0.0 2016-2017
## 5129 467.0 45.7 25.0 5.7 0.0 2016-2017
## 5130 468.5 58.5 41.0 28.2 0.0 2016-2017
## 5131 465.6 47.2 27.0 28.8 0.0 2016-2017
## 5132 449.3 48.5 30.0 53.0 0.0 2016-2017
## 5133 445.1 48.0 29.0 98.3 0.0 2016-2017
## 5134 458.3 50.1 31.0 28.3 0.0 2016-2017
## 5135 471.2 42.1 23.0 30.6 0.0 2016-2017
## 5136 476.0 47.8 28.0 6.3 0.0 2016-2017
## 5137 463.2 46.4 30.0 51.6 0.0 2016-2017
## 5138 471.4 48.8 29.0 5.9 0.0 2016-2017
## 5139 455.0 45.6 26.0 28.2 0.0 2016-2017
## 5140 483.7 44.3 25.0 28.7 0.0 2016-2017
## 5141 460.2 55.7 36.0 50.6 0.0 2016-2017
## 5142 474.5 42.9 24.0 28.0 0.0 2016-2017
## 5143 475.2 52.9 32.0 57.5 0.0 2016-2017
## 5144 462.0 45.0 27.0 55.4 0.0 2016-2017
## 5145 486.0 40.0 22.0 5.1 0.0 2016-2017
## 5146 478.7 43.0 23.0 28.6 0.0 2016-2017
## 5147 471.4 46.0 26.0 30.5 0.0 2016-2017
## 5148 478.4 46.6 28.0 5.2 0.0 2016-2017
## 5149 478.9 50.0 31.0 29.8 0.0 2016-2017
## 5150 481.3 46.3 27.0 30.0 0.0 2016-2017
## 5151 489.3 35.3 19.0 5.0 0.0 2016-2017
## 5152 451.1 45.7 26.0 77.0 0.0 2016-2017
## 5153 463.6 46.9 28.0 28.4 0.0 2016-2017
## 5154 478.6 54.5 35.0 5.8 0.0 2016-2017
## 5155 485.8 48.2 29.0 5.5 0.0 2016-2017
## 5156 482.0 44.8 25.0 29.3 0.0 2016-2017
## 5157 465.9 54.7 35.0 81.1 0.0 2016-2017
## 5158 481.6 46.3 26.0 5.6 0.0 2016-2017
## 5159 476.2 45.6 26.0 5.8 0.0 2016-2017
## 5160 476.4 46.6 26.0 53.0 0.0 2016-2017
## 5161 485.6 51.1 32.0 30.4 0.0 2016-2017
## 5162 468.7 45.0 25.0 29.9 0.0 2016-2017
## 5163 479.2 45.9 26.0 56.8 0.0 2016-2017
## 5164 480.8 51.0 31.0 53.6 0.0 2016-2017
## 5165 486.0 47.2 27.0 55.5 0.0 2016-2017
## 5166 486.4 46.4 29.0 30.3 0.0 2016-2017
## 5167 477.2 56.6 35.0 55.5 0.0 2016-2017
## 5168 326.7 36.5 22.0 7.1 0.0 2016-2017
## 5169 323.2 44.7 27.0 6.7 0.0 2016-2017
## 5170 327.7 38.9 27.0 28.3 0.0 2016-2017
## 5171 324.1 38.4 21.0 48.6 0.0 2016-2017
## 5172 326.5 43.5 26.0 5.1 0.0 2016-2017
## 5173 334.3 39.9 24.0 5.2 0.0 2016-2017
## 5174 344.1 40.6 24.0 28.4 0.0 2016-2017
## 5175 336.5 45.6 30.0 28.1 0.0 2016-2017
## 5176 330.1 43.6 21.0 4.7 0.0 2016-2017
## 5177 337.1 44.5 28.0 5.0 0.0 2016-2017
## 5178 345.1 39.6 24.0 28.5 0.0 2016-2017
## 5179 337.9 41.5 23.0 5.3 0.0 2016-2017
## 5180 335.0 38.3 24.0 4.9 0.0 2016-2017
## 5181 328.8 39.7 22.0 5.0 0.0 2016-2017
## 5182 337.2 45.3 28.0 27.1 0.0 2016-2017
## 5183 334.6 38.8 21.0 27.5 0.0 2016-2017
## 5184 328.2 50.9 35.0 5.3 0.0 2016-2017
## 5185 335.2 48.3 31.0 5.0 0.0 2016-2017
## 5186 336.8 43.8 27.0 50.6 0.0 2016-2017
## 5187 334.0 39.3 22.0 50.4 0.0 2016-2017
## 5188 326.6 41.7 25.0 26.9 0.0 2016-2017
## 5189 337.6 46.6 31.0 49.4 0.0 2016-2017
## 5190 328.0 40.3 20.0 6.5 0.0 2016-2017
## 5191 336.7 52.0 23.0 27.7 0.0 2016-2017
## 5192 333.6 44.9 28.0 27.5 0.0 2016-2017
## 5193 333.9 42.9 27.0 6.7 0.0 2016-2017
## 5194 327.7 38.8 28.0 29.1 0.0 2016-2017
## 5195 325.2 41.5 26.0 27.1 0.0 2016-2017
## 5196 336.3 40.8 25.0 5.3 0.0 2016-2017
## 5197 337.8 42.1 22.0 28.5 0.0 2016-2017
## 5198 338.6 43.0 26.0 6.5 0.0 2016-2017
## 5199 321.4 44.9 26.0 50.6 0.0 2016-2017
## 5200 331.4 46.4 27.0 53.3 0.0 2016-2017
## 5201 323.4 43.7 27.0 53.0 0.0 2016-2017
## 5202 331.9 42.7 24.0 28.4 0.0 2016-2017
## 5203 337.6 43.3 26.0 28.6 0.0 2016-2017
## 5204 350.1 48.1 31.0 6.5 0.0 2016-2017
## 5205 340.7 50.0 31.0 27.9 0.0 2016-2017
## 5206 347.4 41.3 23.0 5.6 0.0 2016-2017
## 5207 344.8 40.1 22.0 5.0 0.0 2016-2017
## 5208 347.1 41.5 24.0 29.6 0.0 2016-2017
## 5209 335.4 47.3 29.0 72.6 0.0 2016-2017
## 5210 340.3 45.6 32.0 5.5 0.0 2016-2017
## 5211 347.1 42.1 23.0 5.8 0.0 2016-2017
## 5212 351.8 39.8 25.0 5.8 0.0 2016-2017
## 5213 349.9 46.9 28.0 53.1 0.0 2016-2017
## 5214 350.1 47.2 29.0 28.6 0.0 2016-2017
## 5215 349.9 44.7 26.0 54.6 0.0 2016-2017
## 5216 356.3 44.4 30.0 5.8 0.0 2016-2017
## 5217 349.6 41.1 22.0 5.3 0.0 2016-2017
## 5218 342.8 46.3 27.0 5.5 0.0 2016-2017
## 5219 355.7 39.7 22.0 28.8 0.0 2016-2017
## 5220 368.3 49.2 30.0 5.3 0.0 2016-2017
## 5221 337.9 47.7 37.0 52.5 0.0 2016-2017
## 5222 338.1 46.9 29.0 51.9 0.0 2016-2017
## 5223 352.4 41.1 23.0 30.0 0.0 2016-2017
## 5224 344.8 45.8 27.0 29.2 0.0 2016-2017
## 5225 348.7 51.4 33.0 82.0 0.0 2016-2017
## 5226 450.3 42.2 22.0 7.5 0.0 2016-2017
## 5227 456.1 46.6 24.6 8.2 0.0 2016-2017
## 5228 450.4 49.0 28.0 28.8 0.0 2016-2017
## 5229 462.6 48.1 27.6 8.6 0.0 2016-2017
## 5230 454.5 45.9 25.4 30.7 0.0 2016-2017
## 5231 452.0 45.9 27.6 7.1 0.0 2016-2017
## 5232 465.7 44.8 24.2 8.4 0.0 2016-2017
## 5233 463.9 49.8 29.7 49.1 0.0 2016-2017
## 5234 450.0 45.6 29.3 52.6 0.0 2016-2017
## 5235 474.0 45.3 23.1 8.1 0.0 2016-2017
## 5236 457.7 54.0 33.3 28.1 0.0 2016-2017
## 5237 460.9 49.9 30.5 27.1 0.0 2016-2017
## 5238 464.9 50.0 29.2 31.1 0.0 2016-2017
## 5239 473.0 47.5 25.9 8.2 0.0 2016-2017
## 5240 452.7 54.5 33.2 29.4 0.0 2016-2017
## 5241 452.0 49.6 29.4 29.1 0.0 2016-2017
## 5242 471.5 50.0 29.6 29.1 0.0 2016-2017
## 5243 468.3 44.4 23.2 30.4 0.0 2016-2017
## 5244 478.5 50.8 30.1 7.8 0.0 2016-2017
## 5245 451.3 47.4 27.9 30.0 0.0 2016-2017
## 5246 480.0 45.3 24.6 8.4 0.0 2016-2017
## 5247 463.4 45.3 27.0 29.8 0.0 2016-2017
## 5248 456.9 47.6 27.1 50.8 0.0 2016-2017
## 5249 469.0 49.9 29.3 8.0 0.0 2016-2017
## 5250 460.1 55.4 35.4 28.8 0.0 2016-2017
## 5251 462.4 41.2 22.5 50.9 0.0 2016-2017
## 5252 462.5 49.1 27.5 29.6 0.0 2016-2017
## 5253 474.7 48.0 27.4 29.5 0.0 2016-2017
## 5254 457.5 51.8 32.1 29.6 0.0 2016-2017
## 5255 475.2 50.1 27.5 9.3 0.0 2016-2017
## 5256 462.1 49.0 28.9 73.6 0.0 2016-2017
## 5257 455.0 47.8 26.6 29.5 0.0 2016-2017
## 5258 472.3 56.8 36.2 30.6 0.0 2016-2017
## 5259 463.4 48.7 25.4 50.4 0.0 2016-2017
## 5260 461.8 57.3 36.6 52.6 0.0 2016-2017
## 5261 471.7 62.0 41.4 30.5 0.0 2016-2017
## 5262 467.3 46.2 25.0 32.2 0.0 2016-2017
## 5263 463.5 53.8 32.6 76.3 0.0 2016-2017
## 5264 487.8 49.9 28.9 8.0 0.0 2016-2017
## 5265 469.1 49.9 28.9 29.7 0.0 2016-2017
## 5266 483.6 45.3 24.8 32.7 0.0 2016-2017
## 5267 452.5 49.9 29.3 74.8 0.0 2016-2017
## 5268 459.0 50.1 27.2 30.1 0.0 2016-2017
## 5269 467.3 48.5 27.5 30.2 0.0 2016-2017
## 5270 471.4 48.0 26.8 8.7 0.0 2016-2017
## 5271 461.2 48.8 27.6 30.6 0.0 2016-2017
## 5272 471.1 46.6 26.9 53.0 0.0 2016-2017
## 5273 456.1 57.0 34.3 54.6 0.0 2016-2017
## 5274 468.6 50.5 29.0 29.5 0.0 2016-2017
## 5275 467.4 50.2 28.9 51.5 0.0 2016-2017
## 5276 467.1 52.7 31.8 77.6 0.0 2016-2017
## 5277 479.4 49.3 28.3 29.7 0.0 2016-2017
## 5278 478.1 51.4 28.9 8.4 0.0 2016-2017
## 5279 473.2 49.8 27.0 54.5 0.0 2016-2017
## 5280 482.4 53.2 31.6 29.5 0.0 2016-2017
## 5281 479.7 45.9 24.0 8.5 0.0 2016-2017
## 5282 485.0 51.6 29.7 30.7 0.0 2016-2017
## 5283 466.9 51.8 29.9 32.2 0.0 2016-2017
## 5284 496.2 50.9 28.3 31.5 0.0 2016-2017
## 5285 469.9 45.3 24.1 31.5 0.0 2016-2017
## 5286 468.3 48.1 26.8 74.5 0.0 2016-2017
## 5287 494.5 47.7 25.2 8.5 0.0 2016-2017
## 5288 495.6 48.2 28.0 8.9 0.0 2016-2017
## 5289 469.2 51.7 30.5 52.9 0.0 2016-2017
## 5290 462.0 54.9 34.7 55.0 0.0 2016-2017
## 5291 477.1 50.3 27.6 54.8 0.0 2016-2017
## 5292 495.2 49.6 27.9 32.7 0.0 2016-2017
## 5293 485.4 55.2 31.8 53.2 0.0 2016-2017
## 5294 497.2 48.5 25.5 9.2 0.0 2016-2017
## 5295 480.5 54.9 31.9 56.5 0.0 2016-2017
## 5296 491.1 49.4 28.1 32.1 0.0 2016-2017
## 5297 481.6 50.5 27.4 8.8 0.0 2016-2017
## 5298 476.8 46.8 25.7 31.0 0.0 2016-2017
## 5299 479.1 50.6 26.4 55.2 0.0 2016-2017
## 5300 489.9 47.0 23.6 8.9 0.0 2016-2017
## 5301 497.0 47.3 29.1 31.2 0.0 2016-2017
## 5302 483.3 47.5 25.3 32.1 0.0 2016-2017
## 5303 491.9 58.9 35.9 30.6 0.0 2016-2017
## 5304 488.0 51.5 29.9 8.3 0.0 2016-2017
## 5305 490.9 46.0 25.2 32.1 0.0 2016-2017
## 5306 486.8 47.9 24.6 56.2 0.0 2016-2017
## 5307 491.5 44.6 21.7 31.5 0.0 2016-2017
## 5308 478.7 56.5 35.6 57.9 0.0 2016-2017
## 5309 484.0 55.1 34.5 30.2 0.0 2016-2017
## 5310 496.6 47.6 25.5 8.7 0.0 2016-2017
## 5311 480.4 52.8 30.5 54.3 0.0 2016-2017
## 5312 516.0 49.7 25.3 9.2 0.0 2016-2017
## 5313 504.5 45.4 23.1 55.7 0.0 2016-2017
## 5314 491.7 48.6 26.5 79.1 0.0 2016-2017
## 5315 488.2 50.6 29.9 31.7 0.0 2016-2017
## 5316 487.9 61.9 40.4 54.6 0.0 2016-2017
## 5317 484.8 48.4 22.9 32.4 0.0 2016-2017
## 5318 478.3 54.1 32.5 53.4 0.0 2016-2017
## 5319 506.0 56.6 34.8 53.8 0.0 2016-2017
## 5320 479.5 55.4 31.4 31.8 0.0 2016-2017
## 5321 499.3 51.7 27.8 57.0 0.0 2016-2017
## 5322 490.3 47.4 24.1 32.9 0.0 2016-2017
## 5323 510.5 46.9 23.7 34.6 0.0 2016-2017
## 5324 512.8 55.2 31.1 56.7 0.0 2016-2017
## 5325 494.0 53.1 31.3 32.9 0.0 2016-2017
## 5326 495.4 45.5 23.6 58.1 0.0 2016-2017
## 5327 509.3 54.8 31.7 57.9 0.0 2016-2017
## 5328 333.1 42.1 NA 10.5 0.0 2016-2017
## 5329 340.9 39.4 NA 8.7 0.0 2016-2017
## 5330 338.5 40.8 NA 31.3 0.0 2016-2017
## 5331 341.7 41.3 NA 52.2 0.0 2016-2017
## 5332 341.2 44.0 NA 9.1 0.0 2016-2017
## 5333 341.9 43.7 NA 8.0 0.0 2016-2017
## 5334 350.0 49.8 NA 51.1 0.0 2016-2017
## 5335 337.5 43.5 NA 29.5 0.0 2016-2017
## 5336 345.8 47.1 NA 8.8 0.0 2016-2017
## 5337 340.4 47.4 NA 49.9 0.0 2016-2017
## 5338 347.9 44.7 NA 8.4 0.0 2016-2017
## 5339 337.8 42.8 NA 29.5 0.0 2016-2017
## 5340 341.2 42.6 NA 30.0 0.0 2016-2017
## 5341 342.2 47.9 NA 8.1 0.0 2016-2017
## 5342 342.4 44.8 NA 8.8 0.0 2016-2017
## 5343 348.6 43.1 NA 50.1 0.0 2016-2017
## 5344 340.8 56.8 NA 8.5 0.0 2016-2017
## 5345 354.9 47.9 NA 8.9 0.0 2016-2017
## 5346 338.3 51.7 NA 49.8 0.0 2016-2017
## 5347 353.7 42.8 NA 7.7 0.0 2016-2017
## 5348 347.4 45.6 NA 52.0 0.0 2016-2017
## 5349 351.3 43.8 NA 7.7 0.0 2016-2017
## 5350 345.5 46.4 NA 30.0 0.0 2016-2017
## 5351 347.2 48.0 NA 29.8 0.0 2016-2017
## 5352 344.9 42.6 NA 8.5 0.0 2016-2017
## 5353 343.8 47.6 NA 30.4 0.0 2016-2017
## 5354 352.1 45.2 NA 29.2 0.0 2016-2017
## 5355 350.2 46.3 NA 30.0 0.0 2016-2017
## 5356 340.6 50.0 NA 51.8 0.0 2016-2017
## 5357 349.6 43.3 NA 51.4 0.0 2016-2017
## 5358 352.7 47.6 NA 10.4 0.0 2016-2017
## 5359 358.3 49.7 NA 9.4 0.0 2016-2017
## 5360 361.1 42.1 NA 33.4 0.0 2016-2017
## 5361 355.9 47.8 NA 31.9 0.0 2016-2017
## 5362 353.7 46.9 NA 8.9 0.0 2016-2017
## 5363 351.2 45.1 NA 53.8 0.0 2016-2017
## 5364 351.5 43.3 NA 81.2 0.0 2016-2017
## 5365 358.7 47.1 NA 30.6 0.0 2016-2017
## 5366 356.0 44.9 NA 31.1 0.0 2016-2017
## 5367 350.3 51.0 NA 53.5 0.0 2016-2017
## 5368 362.2 47.6 NA 54.6 0.0 2016-2017
## 5369 360.3 45.0 NA 8.9 0.0 2016-2017
## 5370 333.1 39.4 NA 7.7 0.0 2016-2017
## 5371 370.6 47.5 NA 8.6 0.0 2016-2017
## 5372 364.8 46.2 NA 8.8 0.0 2016-2017
## 5373 360.3 48.6 NA 30.5 0.0 2016-2017
## 5374 342.6 47.1 NA 75.0 0.0 2016-2017
## 5375 362.2 49.3 NA 9.0 0.0 2016-2017
## 5376 364.2 48.6 NA 54.8 0.0 2016-2017
## 5377 353.4 58.2 NA 55.4 0.0 2016-2017
## 5378 362.9 45.0 NA 30.2 0.0 2016-2017
## 5379 357.3 52.1 NA 30.6 0.0 2016-2017
## 5380 356.2 42.9 NA 8.5 0.0 2016-2017
## 5381 363.1 49.0 NA 31.8 0.0 2016-2017
## 5382 365.0 53.2 NA 32.3 0.0 2016-2017
## 5383 360.6 54.5 NA 80.8 0.0 2016-2017
## 5384 369.5 50.1 NA 30.8 0.0 2016-2017
## 5385 357.0 47.2 NA 54.4 0.0 2016-2017
## 5386 425.4 43.9 24.0 4.3 0.0 2016-2017
## 5387 434.3 42.2 23.0 4.0 0.0 2016-2017
## 5388 431.6 46.6 24.0 4.6 0.0 2016-2017
## 5389 438.6 46.8 28.0 4.4 0.0 2016-2017
## 5390 434.2 42.6 23.0 25.8 0.0 2016-2017
## 5391 442.0 39.3 21.0 4.0 0.0 2016-2017
## 5392 441.3 44.5 23.0 4.5 0.0 2016-2017
## 5393 426.8 42.3 23.0 25.7 0.0 2016-2017
## 5394 434.6 50.6 28.0 26.9 0.0 2016-2017
## 5395 448.4 43.1 23.0 4.5 0.0 2016-2017
## 5396 439.4 46.9 28.0 4.5 0.0 2016-2017
## 5397 435.5 50.7 31.0 24.5 0.0 2016-2017
## 5398 443.2 53.8 32.0 4.4 0.0 2016-2017
## 5399 432.2 47.5 26.0 27.1 0.0 2016-2017
## 5400 444.7 52.1 29.0 4.2 0.0 2016-2017
## 5401 444.6 52.1 30.0 4.3 0.0 2016-2017
## 5402 442.0 50.3 28.0 26.3 0.0 2016-2017
## 5403 437.4 46.9 25.0 25.4 0.0 2016-2017
## 5404 439.6 42.7 23.0 26.1 0.0 2016-2017
## 5405 428.0 48.8 29.0 63.3 0.0 2016-2017
## 5406 442.4 51.0 32.0 25.4 0.0 2016-2017
## 5407 432.4 48.1 26.0 25.5 0.0 2016-2017
## 5408 442.3 46.5 26.0 4.6 0.0 2016-2017
## 5409 434.1 42.5 23.0 25.0 0.0 2016-2017
## 5410 441.9 50.4 30.0 25.6 0.0 2016-2017
## 5411 434.8 40.4 19.0 27.7 0.0 2016-2017
## 5412 426.2 44.2 25.0 26.0 0.0 2016-2017
## 5413 435.6 48.2 28.0 25.6 0.0 2016-2017
## 5414 443.7 46.5 27.0 24.9 0.0 2016-2017
## 5415 441.7 48.4 35.0 26.5 0.0 2016-2017
## 5416 443.2 47.4 26.0 26.2 0.0 2016-2017
## 5417 454.8 46.8 24.0 4.4 0.0 2016-2017
## 5418 434.3 47.6 27.0 46.8 0.0 2016-2017
## 5419 441.1 48.8 29.0 4.1 0.0 2016-2017
## 5420 442.9 51.2 28.0 26.5 0.0 2016-2017
## 5421 430.8 51.1 29.0 25.7 0.0 2016-2017
## 5422 445.8 51.0 28.0 5.0 0.0 2016-2017
## 5423 447.2 57.3 38.0 4.2 0.0 2016-2017
## 5424 441.2 51.0 31.0 4.5 0.0 2016-2017
## 5425 449.3 44.8 24.0 4.7 0.0 2016-2017
## 5426 431.6 48.4 29.0 49.3 0.0 2016-2017
## 5427 453.5 48.8 25.0 4.6 0.0 2016-2017
## 5428 421.0 48.3 28.0 46.5 0.0 2016-2017
## 5429 455.9 49.0 26.0 5.0 0.0 2016-2017
## 5430 451.2 48.2 26.0 26.6 0.0 2016-2017
## 5431 447.3 50.1 30.0 24.8 0.0 2016-2017
## 5432 446.3 46.8 24.0 26.8 0.0 2016-2017
## 5433 436.9 46.7 24.0 47.6 0.0 2016-2017
## 5434 441.5 45.6 25.0 26.8 0.0 2016-2017
## 5435 454.0 44.8 22.0 4.6 0.0 2016-2017
## 5436 447.4 50.6 29.0 4.6 0.0 2016-2017
## 5437 438.7 45.6 24.0 26.4 0.0 2016-2017
## 5438 432.3 47.6 26.0 4.6 0.0 2016-2017
## 5439 431.4 49.1 28.0 71.9 0.0 2016-2017
## 5440 442.5 49.0 28.0 44.7 0.0 2016-2017
## 5441 442.3 56.1 35.0 26.5 0.0 2016-2017
## 5442 442.7 52.4 29.0 52.4 0.0 2016-2017
## 5443 449.9 46.7 27.0 27.3 0.0 2016-2017
## 5444 442.4 42.2 22.0 4.6 0.0 2016-2017
## 5445 454.4 48.9 29.0 27.2 0.0 2016-2017
## 5446 447.6 65.4 43.0 4.7 0.0 2016-2017
## 5447 455.0 54.6 36.0 27.0 0.0 2016-2017
## 5448 456.2 56.4 36.0 26.3 0.0 2016-2017
## 5449 453.8 47.9 28.0 25.7 0.0 2016-2017
## 5450 437.8 40.7 20.0 25.4 0.0 2016-2017
## 5451 454.3 51.3 31.0 26.5 0.0 2016-2017
## 5452 456.1 40.9 22.0 50.4 0.0 2016-2017
## 5453 455.4 47.0 27.0 28.6 0.0 2016-2017
## 5454 462.7 50.6 28.0 5.0 0.0 2016-2017
## 5455 442.7 46.3 26.0 26.3 0.0 2016-2017
## 5456 454.3 47.0 25.0 27.7 0.0 2016-2017
## 5457 445.3 55.4 34.0 49.8 0.0 2016-2017
## 5458 437.0 53.0 33.0 102.0 0.0 2016-2017
## 5459 439.0 48.9 29.0 52.2 0.0 2016-2017
## 5460 448.9 48.9 30.0 49.7 0.0 2016-2017
## 5461 455.6 52.0 31.0 28.5 0.0 2016-2017
## 5462 462.7 50.9 29.0 50.1 0.0 2016-2017
## 5463 466.8 41.2 19.0 28.1 0.0 2016-2017
## 5464 453.9 53.9 32.0 53.0 0.0 2016-2017
## 5465 449.2 57.2 35.0 26.3 0.0 2016-2017
## 5466 448.6 54.1 31.0 50.9 0.0 2016-2017
## 5467 454.0 52.8 30.0 27.5 0.0 2016-2017
## 5468 442.2 61.9 48.0 25.3 0.0 2016-2017
## 5469 452.2 53.5 29.0 73.5 0.0 2016-2017
## 5470 454.8 48.8 27.0 50.5 0.0 2016-2017
## 5471 453.0 49.8 29.0 27.9 0.0 2016-2017
## 5472 459.0 46.0 26.0 4.5 0.0 2016-2017
## 5473 459.6 49.4 25.0 28.6 0.0 2016-2017
## 5474 461.9 48.8 28.0 4.6 0.0 2016-2017
## 5475 463.9 55.1 34.0 52.0 0.0 2016-2017
## 5476 454.7 52.3 28.0 28.5 0.0 2016-2017
## 5477 455.4 66.7 54.0 72.4 0.0 2016-2017
## 5478 464.5 43.9 25.0 4.2 0.0 2016-2017
## 5479 487.2 51.4 28.0 28.7 0.0 2016-2017
## 5480 478.0 51.4 31.0 51.6 0.0 2016-2017
## 5481 443.8 58.7 39.0 74.0 0.0 2016-2017
## 5482 474.6 52.0 29.0 50.0 0.0 2016-2017
## 5483 457.4 45.7 22.0 51.2 0.0 2016-2017
## 5484 482.0 55.1 32.0 54.0 0.0 2016-2017
## 5485 470.7 54.1 32.0 100.8 0.0 2016-2017
## 5486 459.0 55.3 34.0 97.6 0.0 2016-2017
## 5487 480.0 49.7 25.0 54.7 0.0 2016-2017
## 5488 472.5 51.2 29.0 52.8 0.0 2016-2017
## 5489 475.8 49.7 27.0 54.3 0.0 2016-2017
## 5490 492.5 54.1 32.0 28.2 0.0 2016-2017
## 5491 468.6 50.9 28.0 52.6 0.0 2016-2017
## 5492 469.1 59.5 33.0 75.0 0.0 2016-2017
## 5493 347.1 47.0 27.0 6.0 0.0 2016-2017
## 5494 353.8 56.1 34.0 5.0 0.0 2016-2017
## 5495 356.3 44.3 24.0 6.1 0.0 2016-2017
## 5496 346.9 52.8 27.0 22.4 0.0 2016-2017
## 5497 351.4 48.8 27.0 25.0 0.0 2016-2017
## 5498 351.8 51.2 29.0 4.0 0.0 2016-2017
## 5499 344.8 95.6 31.0 6.0 0.0 2016-2017
## 5500 349.1 50.0 27.0 2.3 0.0 2016-2017
## 5501 357.8 47.9 27.0 5.0 0.0 2016-2017
## 5502 349.8 47.3 25.0 4.5 0.0 2016-2017
## 5503 348.4 60.6 27.0 12.0 0.0 2016-2017
## 5504 343.3 47.8 28.0 4.6 0.0 2016-2017
## 5505 341.1 45.7 23.0 25.0 0.0 2016-2017
## 5506 351.3 91.8 26.0 5.0 0.0 2016-2017
## 5507 350.6 44.9 25.0 4.8 0.0 2016-2017
## 5508 352.5 43.1 27.0 4.7 0.0 2016-2017
## 5509 349.1 61.9 27.0 13.2 0.0 2016-2017
## 5510 350.0 39.1 22.0 8.8 0.0 2016-2017
## 5511 353.1 46.0 28.0 4.8 0.0 2016-2017
## 5512 357.8 73.8 27.0 5.0 0.0 2016-2017
## 5513 350.1 47.9 30.0 4.7 0.0 2016-2017
## 5514 346.1 60.0 28.0 37.0 0.0 2016-2017
## 5515 349.1 50.9 23.0 43.9 0.0 2016-2017
## 5516 348.6 47.2 27.0 28.0 0.0 2016-2017
## 5517 348.2 95.1 29.0 5.0 0.0 2016-2017
## 5518 355.7 50.7 30.0 27.8 0.0 2016-2017
## 5519 356.4 46.3 22.0 5.6 0.0 2016-2017
## 5520 364.6 48.5 30.0 28.7 0.0 2016-2017
## 5521 358.6 44.8 25.0 4.9 0.0 2016-2017
## 5522 350.8 52.3 34.0 29.1 0.0 2016-2017
## 5523 357.6 45.8 24.0 50.8 0.0 2016-2017
## 5524 347.7 42.0 22.0 53.3 0.0 2016-2017
## 5525 352.6 47.1 26.0 52.7 0.0 2016-2017
## 5526 358.7 52.8 32.0 29.0 0.0 2016-2017
## 5527 361.2 53.3 30.0 5.4 0.0 2016-2017
## 5528 375.2 43.4 22.0 31.9 0.0 2016-2017
## 5529 357.5 46.1 24.0 29.7 0.0 2016-2017
## 5530 355.5 57.4 37.0 4.5 0.0 2016-2017
## 5531 358.2 49.8 27.0 55.1 0.0 2016-2017
## 5532 368.0 47.5 25.0 5.1 0.0 2016-2017
## 5533 365.3 49.8 26.0 30.4 0.0 2016-2017
## 5534 371.7 55.6 37.0 57.3 0.0 2016-2017
## 5535 371.4 47.0 24.0 29.7 0.0 2016-2017
## 5536 374.9 47.4 25.0 5.0 0.0 2016-2017
## 5537 372.9 48.1 26.0 4.9 0.0 2016-2017
## 5538 356.9 57.2 34.0 4.6 0.0 2016-2017
## 5539 369.4 53.5 29.0 32.5 0.0 2016-2017
## 5540 376.5 51.9 29.0 29.4 0.0 2016-2017
## 5541 364.7 46.5 23.0 79.5 0.0 2016-2017
## 5542 369.4 50.8 27.0 76.3 0.0 2016-2017
## 5543 364.5 47.0 27.0 27.1 0.0 2016-2017
## 5544 375.1 47.1 28.0 28.5 0.0 2016-2017
## 5545 374.3 46.8 28.0 28.9 0.0 2016-2017
## 5546 388.3 52.0 27.0 84.2 0.0 2016-2017
## 5547 384.2 56.4 31.0 55.9 0.0 2016-2017
## 5548 420.4 42.0 24.0 4.6 0.0 2017-2018
## 5549 425.8 43.5 26.0 4.1 0.0 2017-2018
## 5550 431.1 40.3 22.0 4.0 0.0 2017-2018
## 5551 437.0 40.9 22.0 4.2 0.0 2017-2018
## 5552 432.3 40.2 22.0 3.8 0.0 2017-2018
## 5553 432.5 40.5 20.0 4.1 0.0 2017-2018
## 5554 434.4 46.0 29.0 4.2 0.0 2017-2018
## 5555 442.5 38.7 20.0 4.6 0.0 2017-2018
## 5556 440.8 41.2 23.0 3.9 0.0 2017-2018
## 5557 436.9 43.3 24.0 3.9 0.0 2017-2018
## 5558 439.1 43.7 25.0 4.5 0.0 2017-2018
## 5559 423.5 45.4 26.0 45.9 0.0 2017-2018
## 5560 432.8 50.5 30.0 4.7 0.0 2017-2018
## 5561 439.2 45.8 26.0 4.4 0.0 2017-2018
## 5562 436.9 45.8 27.0 4.6 0.0 2017-2018
## 5563 440.9 44.8 25.0 4.4 0.0 2017-2018
## 5564 446.9 42.5 23.0 4.0 0.0 2017-2018
## 5565 430.3 41.8 22.0 4.4 0.0 2017-2018
## 5566 437.3 42.6 23.0 26.8 0.0 2017-2018
## 5567 434.9 44.1 25.0 26.5 0.0 2017-2018
## 5568 443.5 40.4 21.0 27.5 0.0 2017-2018
## 5569 436.9 49.7 29.0 26.7 0.0 2017-2018
## 5570 438.7 46.6 27.0 25.4 0.0 2017-2018
## 5571 432.2 49.4 30.0 26.6 0.0 2017-2018
## 5572 435.6 42.8 23.0 25.1 0.0 2017-2018
## 5573 442.6 38.9 19.0 47.1 0.0 2017-2018
## 5574 438.8 48.7 29.0 25.9 0.0 2017-2018
## 5575 440.1 41.5 23.0 25.8 0.0 2017-2018
## 5576 450.2 42.9 22.0 4.5 0.0 2017-2018
## 5577 443.6 48.9 29.0 4.5 0.0 2017-2018
## 5578 433.2 48.9 28.0 25.6 0.0 2017-2018
## 5579 451.6 49.0 29.0 4.2 0.0 2017-2018
## 5580 445.3 46.2 27.0 4.5 0.0 2017-2018
## 5581 438.1 52.1 32.0 4.0 0.0 2017-2018
## 5582 443.7 45.9 26.0 4.6 0.0 2017-2018
## 5583 455.5 43.6 24.0 4.1 0.0 2017-2018
## 5584 440.4 42.0 22.0 4.5 0.0 2017-2018
## 5585 441.8 49.8 32.0 24.3 0.0 2017-2018
## 5586 452.5 41.8 21.0 4.7 0.0 2017-2018
## 5587 431.6 44.1 24.0 44.8 0.0 2017-2018
## 5588 454.5 46.0 26.0 4.3 0.0 2017-2018
## 5589 439.4 44.3 23.0 49.0 0.0 2017-2018
## 5590 445.8 44.0 24.0 4.6 0.0 2017-2018
## 5591 435.8 41.2 23.0 73.6 0.0 2017-2018
## 5592 431.0 40.5 21.0 46.2 0.0 2017-2018
## 5593 445.9 44.6 25.0 47.5 0.0 2017-2018
## 5594 448.1 43.2 23.0 26.9 0.0 2017-2018
## 5595 450.7 48.3 27.0 25.4 0.0 2017-2018
## 5596 452.5 44.9 26.0 27.8 0.0 2017-2018
## 5597 441.4 43.5 24.0 26.2 0.0 2017-2018
## 5598 449.4 43.8 24.0 4.0 0.0 2017-2018
## 5599 460.2 41.4 22.0 4.1 0.0 2017-2018
## 5600 442.6 43.1 24.0 26.8 0.0 2017-2018
## 5601 437.1 50.3 31.0 49.6 0.0 2017-2018
## 5602 463.2 38.0 19.0 4.7 0.0 2017-2018
## 5603 455.4 39.6 20.0 4.4 0.0 2017-2018
## 5604 441.9 49.3 29.0 26.7 0.0 2017-2018
## 5605 450.6 45.8 25.0 48.5 0.0 2017-2018
## 5606 452.8 46.7 27.0 25.8 0.0 2017-2018
## 5607 455.9 47.7 28.0 4.6 0.0 2017-2018
## 5608 435.7 44.5 25.0 49.4 0.0 2017-2018
## 5609 436.6 48.0 30.0 27.4 0.0 2017-2018
## 5610 444.1 44.2 23.0 26.7 0.0 2017-2018
## 5611 446.4 48.6 27.0 26.7 0.0 2017-2018
## 5612 443.7 48.6 27.0 25.8 0.0 2017-2018
## 5613 461.4 48.0 27.0 27.4 0.0 2017-2018
## 5614 463.4 45.9 26.0 26.6 0.0 2017-2018
## 5615 449.8 49.3 28.0 27.1 0.0 2017-2018
## 5616 467.1 43.2 23.0 27.8 0.0 2017-2018
## 5617 465.2 42.9 25.0 27.5 0.0 2017-2018
## 5618 445.0 45.2 24.0 47.5 0.0 2017-2018
## 5619 442.5 55.4 36.0 26.6 0.0 2017-2018
## 5620 436.7 41.4 22.0 49.2 0.0 2017-2018
## 5621 447.5 49.8 31.0 48.0 0.0 2017-2018
## 5622 460.2 52.9 33.0 50.0 0.0 2017-2018
## 5623 454.6 50.1 29.0 27.9 0.0 2017-2018
## 5624 461.4 48.0 27.0 28.2 0.0 2017-2018
## 5625 462.6 49.1 29.0 4.9 0.0 2017-2018
## 5626 468.3 44.3 24.0 5.3 0.0 2017-2018
## 5627 456.1 45.4 25.0 51.9 0.0 2017-2018
## 5628 460.2 46.7 28.0 48.0 0.0 2017-2018
## 5629 476.9 44.0 22.0 4.9 0.0 2017-2018
## 5630 451.9 47.9 28.0 27.2 0.0 2017-2018
## 5631 445.4 56.5 35.0 94.6 0.0 2017-2018
## 5632 452.3 44.8 25.0 26.1 0.0 2017-2018
## 5633 435.9 47.9 27.0 48.2 0.0 2017-2018
## 5634 459.6 42.7 23.0 28.2 0.0 2017-2018
## 5635 478.0 55.7 34.0 28.5 0.0 2017-2018
## 5636 469.7 47.7 27.0 4.8 0.0 2017-2018
## 5637 452.2 45.0 25.0 50.1 0.0 2017-2018
## 5638 470.3 42.8 22.0 50.5 0.0 2017-2018
## 5639 442.4 53.2 35.0 120.2 0.0 2017-2018
## 5640 454.2 46.8 27.0 52.8 0.0 2017-2018
## 5641 445.9 60.0 38.0 50.2 0.0 2017-2018
## 5642 455.3 51.7 30.0 77.0 0.0 2017-2018
## 5643 463.9 42.0 21.0 28.3 0.0 2017-2018
## 5644 481.4 44.5 23.0 5.3 0.0 2017-2018
## 5645 471.0 46.1 25.0 28.3 0.0 2017-2018
## 5646 470.4 52.6 32.0 77.8 0.0 2017-2018
## 5647 450.7 47.2 26.0 100.6 0.0 2017-2018
## 5648 472.4 55.1 33.0 51.4 0.0 2017-2018
## 5649 514.6 49.4 25.0 5.0 0.0 2017-2018
## 5650 510.5 66.4 43.0 29.7 0.0 2017-2018
## 5651 395.5 45.3 28.0 5.6 0.0 2017-2018
## 5652 398.9 40.8 23.0 5.1 0.0 2017-2018
## 5653 411.5 41.0 24.0 5.6 0.0 2017-2018
## 5654 411.1 39.7 20.0 5.3 0.0 2017-2018
## 5655 400.0 41.9 23.0 4.9 0.0 2017-2018
## 5656 404.6 42.7 24.0 4.5 0.0 2017-2018
## 5657 411.5 42.5 25.0 4.1 0.0 2017-2018
## 5658 412.0 45.8 26.0 5.0 0.0 2017-2018
## 5659 400.4 39.5 21.0 48.0 0.0 2017-2018
## 5660 411.6 43.1 23.0 4.4 0.0 2017-2018
## 5661 414.2 46.5 28.0 25.5 0.0 2017-2018
## 5662 404.6 41.5 22.0 50.4 0.0 2017-2018
## 5663 413.0 41.3 23.0 4.7 0.0 2017-2018
## 5664 429.0 46.3 25.0 4.3 0.0 2017-2018
## 5665 404.1 47.4 29.0 24.9 0.0 2017-2018
## 5666 418.4 39.9 19.0 27.1 0.0 2017-2018
## 5667 406.9 40.1 21.0 26.5 0.0 2017-2018
## 5668 408.9 44.0 26.0 70.2 0.0 2017-2018
## 5669 412.2 43.5 25.0 4.6 0.0 2017-2018
## 5670 402.2 40.8 21.0 71.5 0.0 2017-2018
## 5671 426.7 47.6 28.0 29.2 0.0 2017-2018
## 5672 423.2 36.6 17.0 28.7 0.0 2017-2018
## 5673 422.0 43.3 26.0 26.0 0.0 2017-2018
## 5674 418.5 41.3 23.0 48.5 0.0 2017-2018
## 5675 400.7 50.2 31.0 98.1 0.0 2017-2018
## 5676 436.4 45.8 26.0 28.0 0.0 2017-2018
## 5677 440.1 44.3 25.0 70.8 0.0 2017-2018
## 5678 442.3 44.1 23.0 50.6 0.0 2017-2018
## 5679 450.9 45.8 26.0 51.5 0.0 2017-2018
## 5680 443.9 41.2 20.0 55.4 0.0 2017-2018
## 5681 357.9 39.8 22.0 5.8 0.0 2017-2018
## 5682 350.1 40.9 22.0 28.9 0.0 2017-2018
## 5683 362.3 40.5 22.0 27.2 0.0 2017-2018
## 5684 355.5 40.6 21.0 5.1 0.0 2017-2018
## 5685 359.1 42.4 23.0 4.4 0.0 2017-2018
## 5686 366.0 41.7 23.0 25.4 0.0 2017-2018
## 5687 354.4 45.0 27.0 24.6 0.0 2017-2018
## 5688 361.5 46.3 28.0 25.8 0.0 2017-2018
## 5689 356.3 41.4 20.0 5.0 0.0 2017-2018
## 5690 357.2 44.0 24.0 26.3 0.0 2017-2018
## 5691 364.2 42.9 25.0 4.5 0.0 2017-2018
## 5692 364.6 39.7 22.0 4.6 0.0 2017-2018
## 5693 356.8 46.8 26.0 24.9 0.0 2017-2018
## 5694 370.6 45.6 24.0 4.6 0.0 2017-2018
## 5695 356.7 40.9 22.0 25.3 0.0 2017-2018
## 5696 361.7 43.8 26.0 28.5 0.0 2017-2018
## 5697 369.9 41.6 22.0 4.7 0.0 2017-2018
## 5698 368.6 45.8 28.0 4.3 0.0 2017-2018
## 5699 357.0 52.5 35.0 26.9 0.0 2017-2018
## 5700 367.9 42.4 24.0 4.2 0.0 2017-2018
## 5701 365.1 45.5 26.0 4.4 0.0 2017-2018
## 5702 368.7 47.4 29.0 5.2 0.0 2017-2018
## 5703 364.8 41.3 23.0 50.4 0.0 2017-2018
## 5704 367.6 45.3 25.0 26.9 0.0 2017-2018
## 5705 375.2 42.7 22.0 26.9 0.0 2017-2018
## 5706 371.9 45.5 26.0 27.9 0.0 2017-2018
## 5707 364.5 44.1 26.0 47.5 0.0 2017-2018
## 5708 367.4 46.4 28.0 49.6 0.0 2017-2018
## 5709 379.5 43.3 23.0 4.6 0.0 2017-2018
## 5710 375.0 42.2 21.0 26.4 0.0 2017-2018
## 5711 378.1 42.1 22.0 28.1 0.0 2017-2018
## 5712 364.1 42.1 24.0 29.4 0.0 2017-2018
## 5713 382.7 45.9 27.0 5.4 0.0 2017-2018
## 5714 375.7 43.4 21.0 4.8 0.0 2017-2018
## 5715 374.3 44.4 24.0 4.6 0.0 2017-2018
## 5716 376.3 46.0 26.0 28.0 0.0 2017-2018
## 5717 377.9 44.8 25.0 4.6 0.0 2017-2018
## 5718 368.6 47.3 28.0 28.5 0.0 2017-2018
## 5719 383.6 48.2 27.0 27.6 0.0 2017-2018
## 5720 373.5 45.9 24.0 28.7 0.0 2017-2018
## 5721 370.2 39.3 18.0 27.7 0.0 2017-2018
## 5722 380.6 46.1 27.0 52.6 0.0 2017-2018
## 5723 370.8 42.3 21.0 28.9 0.0 2017-2018
## 5724 368.5 50.9 31.0 27.5 0.0 2017-2018
## 5725 379.3 43.5 20.0 5.2 0.0 2017-2018
## 5726 374.0 47.7 29.0 78.1 0.0 2017-2018
## 5727 371.9 44.0 23.0 27.1 0.0 2017-2018
## 5728 374.6 42.5 24.0 81.3 0.0 2017-2018
## 5729 373.0 50.2 29.0 75.1 0.0 2017-2018
## 5730 367.4 51.2 31.0 50.9 0.0 2017-2018
## 5731 381.1 49.1 28.0 29.1 0.0 2017-2018
## 5732 390.9 39.2 19.0 5.0 0.0 2017-2018
## 5733 381.8 48.3 28.0 81.9 0.0 2017-2018
## 5734 389.8 44.9 25.0 29.3 0.0 2017-2018
## 5735 387.1 49.5 28.0 54.6 0.0 2017-2018
## 5736 385.6 51.8 31.0 50.2 0.0 2017-2018
## 5737 386.6 43.3 24.0 4.5 0.0 2017-2018
## 5738 412.6 40.9 22.0 8.7 0.0 2017-2018
## 5739 428.2 39.4 21.0 8.1 0.0 2017-2018
## 5740 441.1 47.4 29.0 8.5 0.0 2017-2018
## 5741 431.0 44.1 23.0 30.4 0.0 2017-2018
## 5742 441.1 43.8 24.0 8.5 0.0 2017-2018
## 5743 449.4 41.0 23.0 7.9 0.0 2017-2018
## 5744 442.2 42.9 25.0 53.5 0.0 2017-2018
## 5745 457.1 43.3 24.0 8.6 0.0 2017-2018
## 5746 449.1 46.4 26.0 30.2 0.0 2017-2018
## 5747 457.1 45.5 26.0 8.9 0.0 2017-2018
## 5748 438.4 44.6 27.0 50.6 0.0 2017-2018
## 5749 463.2 47.8 31.0 8.1 0.0 2017-2018
## 5750 432.9 46.3 29.0 31.0 0.0 2017-2018
## 5751 443.3 53.3 35.0 52.4 0.0 2017-2018
## 5752 435.5 46.6 28.0 30.3 0.0 2017-2018
## 5753 438.9 51.2 32.0 33.0 0.0 2017-2018
## 5754 437.4 43.9 30.0 7.4 0.0 2017-2018
## 5755 456.5 44.9 27.0 52.3 0.0 2017-2018
## 5756 441.5 54.6 38.0 51.0 0.0 2017-2018
## 5757 437.6 46.6 29.0 28.8 0.0 2017-2018
## 5758 461.2 56.6 37.0 8.3 0.0 2017-2018
## 5759 442.5 48.1 30.0 51.9 0.0 2017-2018
## 5760 451.1 42.0 22.0 31.9 0.0 2017-2018
## 5761 453.8 50.9 33.0 29.4 0.0 2017-2018
## 5762 460.5 44.6 26.0 8.8 0.0 2017-2018
## 5763 431.8 42.8 24.0 54.1 0.0 2017-2018
## 5764 437.8 43.0 25.0 28.9 0.0 2017-2018
## 5765 445.1 47.4 28.0 31.6 0.0 2017-2018
## 5766 450.6 48.6 29.0 55.7 0.0 2017-2018
## 5767 449.1 46.4 27.0 8.6 0.0 2017-2018
## 5768 457.4 42.4 24.0 55.6 0.0 2017-2018
## 5769 446.9 44.3 26.0 54.9 0.0 2017-2018
## 5770 451.3 51.7 33.0 30.5 0.0 2017-2018
## 5771 447.9 49.9 29.0 30.9 0.0 2017-2018
## 5772 450.6 50.0 31.0 30.7 0.0 2017-2018
## 5773 447.9 54.4 36.0 73.2 0.0 2017-2018
## 5774 444.7 50.7 31.0 31.4 0.0 2017-2018
## 5775 456.2 57.0 36.0 30.5 0.0 2017-2018
## 5776 447.3 49.3 30.0 31.7 0.0 2017-2018
## 5777 461.5 46.5 27.0 54.9 0.0 2017-2018
## 5778 460.7 46.5 26.0 33.1 0.0 2017-2018
## 5779 452.2 47.1 25.0 53.7 0.0 2017-2018
## 5780 451.2 45.7 27.0 53.8 0.0 2017-2018
## 5781 442.4 44.9 25.0 53.4 0.0 2017-2018
## 5782 455.9 50.2 32.0 31.5 0.0 2017-2018
## 5783 455.9 64.2 47.0 30.3 0.0 2017-2018
## 5784 460.9 49.2 29.0 34.4 0.0 2017-2018
## 5785 452.8 43.8 24.0 8.5 0.0 2017-2018
## 5786 458.7 50.6 33.0 56.0 0.0 2017-2018
## 5787 459.5 41.9 22.0 33.0 0.0 2017-2018
## 5788 458.7 47.5 27.0 56.7 0.0 2017-2018
## 5789 451.0 48.6 27.0 33.1 0.0 2017-2018
## 5790 451.1 51.3 31.0 56.2 0.0 2017-2018
## 5791 455.1 45.9 26.0 56.6 0.0 2017-2018
## 5792 456.0 63.8 46.0 53.9 0.0 2017-2018
## 5793 470.7 46.4 27.0 33.1 0.0 2017-2018
## 5794 462.1 48.3 29.0 31.5 0.0 2017-2018
## 5795 442.6 54.4 31.0 101.4 0.0 2017-2018
## 5796 465.1 51.4 32.0 31.6 0.0 2017-2018
## 5797 455.1 43.8 23.0 80.0 0.0 2017-2018
## 5798 444.8 47.9 29.0 79.9 0.0 2017-2018
## 5799 447.1 48.2 29.0 50.9 0.0 2017-2018
## 5800 460.7 73.3 55.0 30.8 0.0 2017-2018
## 5801 447.2 80.1 60.0 54.3 0.0 2017-2018
## 5802 478.5 84.6 66.0 8.2 0.0 2017-2018
## 5803 457.9 54.9 33.0 57.1 0.0 2017-2018
## 5804 477.7 47.2 30.0 8.7 0.0 2017-2018
## 5805 461.8 46.2 25.0 29.7 0.0 2017-2018
## 5806 460.9 52.2 31.0 31.7 0.0 2017-2018
## 5807 458.0 63.0 44.0 55.6 0.0 2017-2018
## 5808 471.3 53.3 33.0 32.8 0.0 2017-2018
## 5809 473.9 47.4 26.0 34.1 0.0 2017-2018
## 5810 458.8 46.3 27.0 32.2 0.0 2017-2018
## 5811 474.1 47.6 29.0 31.1 0.0 2017-2018
## 5812 462.2 47.4 29.0 31.6 0.0 2017-2018
## 5813 476.7 44.2 25.0 9.2 0.0 2017-2018
## 5814 451.2 51.0 29.0 54.8 0.0 2017-2018
## 5815 465.3 56.3 36.0 54.4 0.0 2017-2018
## 5816 469.1 47.3 27.0 60.1 0.0 2017-2018
## 5817 462.3 47.4 28.0 8.6 0.0 2017-2018
## 5818 478.6 44.5 23.0 8.6 0.0 2017-2018
## 5819 491.6 39.8 20.0 9.2 0.0 2017-2018
## 5820 452.4 68.3 48.0 107.3 0.0 2017-2018
## 5821 459.4 53.7 32.0 81.6 0.0 2017-2018
## 5822 474.3 44.6 24.0 35.1 0.0 2017-2018
## 5823 479.3 47.6 28.0 32.4 0.0 2017-2018
## 5824 467.0 55.3 35.0 57.9 0.0 2017-2018
## 5825 463.8 54.4 34.0 104.2 0.0 2017-2018
## 5826 492.8 53.3 30.0 33.3 0.0 2017-2018
## 5827 461.3 48.4 28.0 30.9 0.0 2017-2018
## 5828 467.8 55.9 34.0 56.2 0.0 2017-2018
## 5829 447.9 58.6 38.0 79.3 0.0 2017-2018
## 5830 465.2 58.5 38.0 55.4 0.0 2017-2018
## 5831 490.9 46.9 27.0 33.6 0.0 2017-2018
## 5832 464.6 50.2 31.0 57.8 0.0 2017-2018
## 5833 488.5 67.6 48.0 31.8 0.0 2017-2018
## 5834 472.0 60.0 38.0 85.5 0.0 2017-2018
## 5835 489.9 71.3 52.0 81.6 0.0 2017-2018
## 5836 476.7 55.9 36.0 83.4 0.0 2017-2018
## 5837 481.1 49.7 28.0 89.3 0.0 2017-2018
## 5838 465.1 56.3 33.0 106.6 0.0 2017-2018
## 5839 462.9 56.0 37.0 109.3 0.0 2017-2018
## 5840 487.1 46.6 26.0 32.8 0.0 2017-2018
## 5841 493.1 58.9 37.0 33.1 0.0 2017-2018
## 5842 482.3 60.0 37.0 33.8 0.0 2017-2018
## 5843 478.3 57.5 35.0 86.9 0.0 2017-2018
## 5844 481.0 52.0 29.0 64.0 0.0 2017-2018
## 5845 474.8 65.8 40.0 83.1 0.0 2017-2018
## 5846 540.4 53.6 29.0 63.3 0.0 2017-2018
## 5847 424.8 42.3 23.0 33.1 0.0 2017-2018
## 5848 428.4 48.4 28.0 30.1 0.0 2017-2018
## 5849 426.6 49.4 29.0 30.4 0.0 2017-2018
## 5850 433.3 47.9 31.0 30.6 0.0 2017-2018
## 5851 435.0 46.8 27.0 7.8 0.0 2017-2018
## 5852 424.4 41.2 21.0 32.6 0.0 2017-2018
## 5853 440.4 41.7 22.0 32.7 0.0 2017-2018
## 5854 430.3 45.9 29.0 49.6 0.0 2017-2018
## 5855 446.5 43.0 23.0 32.8 0.0 2017-2018
## 5856 439.9 45.3 26.0 29.8 0.0 2017-2018
## 5857 434.6 47.2 28.0 31.7 0.0 2017-2018
## 5858 447.4 51.5 31.0 31.7 0.0 2017-2018
## 5859 438.8 47.8 28.0 31.9 0.0 2017-2018
## 5860 446.2 44.8 24.0 9.2 0.0 2017-2018
## 5861 440.2 43.3 21.0 8.9 0.0 2017-2018
## 5862 442.0 48.3 27.0 30.0 0.0 2017-2018
## 5863 434.7 44.9 24.0 54.9 0.0 2017-2018
## 5864 439.7 45.8 25.0 31.7 0.0 2017-2018
## 5865 446.1 47.6 30.0 31.3 0.0 2017-2018
## 5866 439.3 43.0 23.0 31.2 0.0 2017-2018
## 5867 423.6 42.8 23.0 31.7 0.0 2017-2018
## 5868 434.3 45.2 26.0 31.4 0.0 2017-2018
## 5869 427.6 41.2 20.0 57.6 0.0 2017-2018
## 5870 450.9 49.7 30.0 33.5 0.0 2017-2018
## 5871 443.0 46.0 26.0 30.7 0.0 2017-2018
## 5872 444.4 48.3 28.0 33.9 0.0 2017-2018
## 5873 434.0 47.7 27.0 105.7 0.0 2017-2018
## 5874 438.7 47.9 26.0 84.6 0.0 2017-2018
## 5875 441.7 44.6 25.0 105.4 0.0 2017-2018
## 5876 461.3 47.9 28.0 60.4 0.0 2017-2018
## 5877 330.0 40.0 23.0 10.6 0.0 2017-2018
## 5878 331.4 40.8 22.0 10.9 0.0 2017-2018
## 5879 333.6 43.1 24.0 10.4 0.0 2017-2018
## 5880 335.6 43.6 28.0 8.3 0.0 2017-2018
## 5881 332.8 46.3 26.0 8.8 0.0 2017-2018
## 5882 342.7 40.4 23.0 31.3 0.0 2017-2018
## 5883 337.4 40.8 23.0 30.0 0.0 2017-2018
## 5884 338.3 47.3 27.0 28.8 0.0 2017-2018
## 5885 338.4 39.5 19.0 29.6 0.0 2017-2018
## 5886 332.8 39.3 20.0 7.8 0.0 2017-2018
## 5887 331.5 46.5 26.0 28.3 0.0 2017-2018
## 5888 337.6 43.4 24.0 51.1 0.0 2017-2018
## 5889 339.8 40.6 21.0 51.4 0.0 2017-2018
## 5890 342.4 49.4 30.0 9.3 0.0 2017-2018
## 5891 331.6 46.6 26.0 9.0 0.0 2017-2018
## 5892 332.0 47.1 29.0 28.6 0.0 2017-2018
## 5893 329.2 42.2 25.0 28.3 0.0 2017-2018
## 5894 326.9 42.0 24.0 27.9 0.0 2017-2018
## 5895 332.0 44.2 24.0 30.4 0.0 2017-2018
## 5896 333.5 43.4 24.0 28.5 0.0 2017-2018
## 5897 339.5 44.6 26.0 28.2 0.0 2017-2018
## 5898 328.8 45.9 26.0 29.7 0.0 2017-2018
## 5899 335.7 44.3 24.0 10.7 0.0 2017-2018
## 5900 330.7 45.6 28.0 29.2 0.0 2017-2018
## 5901 353.2 41.8 22.0 28.8 0.0 2017-2018
## 5902 336.6 46.0 27.0 29.9 0.0 2017-2018
## 5903 334.1 47.3 29.0 31.0 0.0 2017-2018
## 5904 341.1 49.6 32.0 28.4 0.0 2017-2018
## 5905 336.2 42.9 24.0 73.4 0.0 2017-2018
## 5906 340.7 49.0 31.0 9.1 0.0 2017-2018
## 5907 344.1 47.8 28.0 9.2 0.0 2017-2018
## 5908 338.1 40.9 22.0 54.6 0.0 2017-2018
## 5909 345.3 44.8 26.0 34.4 0.0 2017-2018
## 5910 338.2 48.0 28.0 8.5 0.0 2017-2018
## 5911 347.3 49.3 29.0 33.1 0.0 2017-2018
## 5912 332.4 45.7 28.0 7.9 0.0 2017-2018
## 5913 333.1 47.7 27.0 54.3 0.0 2017-2018
## 5914 341.6 41.9 21.0 31.1 0.0 2017-2018
## 5915 336.1 45.9 26.0 32.3 0.0 2017-2018
## 5916 336.3 45.9 25.0 32.1 0.0 2017-2018
## 5917 350.6 49.7 31.0 31.0 0.0 2017-2018
## 5918 343.6 47.0 29.0 32.4 0.0 2017-2018
## 5919 343.9 43.0 23.0 8.5 0.0 2017-2018
## 5920 356.2 37.8 17.0 8.7 0.0 2017-2018
## 5921 336.8 44.0 24.0 31.4 0.0 2017-2018
## 5922 342.8 44.5 23.0 29.2 0.0 2017-2018
## 5923 334.5 50.8 31.0 31.2 0.0 2017-2018
## 5924 348.9 45.7 24.0 30.2 0.0 2017-2018
## 5925 345.6 53.9 32.0 79.7 0.0 2017-2018
## 5926 337.1 48.5 26.0 82.2 0.0 2017-2018
## 5927 358.1 43.8 24.0 31.2 0.0 2017-2018
## 5928 358.4 45.8 25.0 58.4 0.0 2017-2018
## 5929 451.9 50.2 24.0 4.4 0.0 2017-2018
## 5930 460.8 50.4 23.0 4.4 0.0 2017-2018
## 5931 466.9 51.6 25.0 4.4 0.0 2017-2018
## 5932 466.3 54.7 31.0 25.5 0.0 2017-2018
## 5933 471.6 55.1 26.0 4.6 0.0 2017-2018
## 5934 474.0 53.3 26.0 4.4 0.0 2017-2018
## 5935 466.9 54.0 28.0 4.9 0.0 2017-2018
## 5936 468.3 51.1 24.0 4.2 0.0 2017-2018
## 5937 467.8 49.5 21.0 4.3 0.0 2017-2018
## 5938 473.6 50.4 25.0 4.4 0.0 2017-2018
## 5939 475.1 50.9 23.0 4.4 0.0 2017-2018
## 5940 476.3 50.0 23.0 27.9 0.0 2017-2018
## 5941 473.6 50.7 21.0 26.5 0.0 2017-2018
## 5942 478.6 51.2 24.0 25.1 0.0 2017-2018
## 5943 465.3 48.5 22.0 24.5 0.0 2017-2018
## 5944 477.7 50.7 22.0 28.6 0.0 2017-2018
## 5945 474.6 46.7 21.0 26.5 0.0 2017-2018
## 5946 465.2 58.3 30.0 26.9 0.0 2017-2018
## 5947 491.0 49.6 24.0 4.5 0.0 2017-2018
## 5948 480.9 53.3 27.0 27.6 0.0 2017-2018
## 5949 470.0 54.6 28.0 4.3 0.0 2017-2018
## 5950 470.7 54.5 24.0 4.8 0.0 2017-2018
## 5951 487.1 51.9 24.0 4.7 0.0 2017-2018
## 5952 472.4 57.4 31.0 24.8 0.0 2017-2018
## 5953 476.9 56.0 28.0 26.1 0.0 2017-2018
## 5954 478.7 59.6 32.0 4.1 0.0 2017-2018
## 5955 487.7 59.2 32.0 25.6 0.0 2017-2018
## 5956 485.0 50.3 23.0 27.4 0.0 2017-2018
## 5957 473.6 54.1 28.0 27.4 0.0 2017-2018
## 5958 495.6 54.6 28.0 4.8 0.0 2017-2018
## 5959 490.4 56.8 27.0 4.4 0.0 2017-2018
## 5960 479.0 55.6 26.0 51.3 0.0 2017-2018
## 5961 482.3 51.9 23.0 28.2 0.0 2017-2018
## 5962 478.4 51.1 22.0 26.8 0.0 2017-2018
## 5963 479.1 53.3 25.0 28.4 0.0 2017-2018
## 5964 485.3 51.3 25.0 4.4 0.0 2017-2018
## 5965 507.0 53.2 28.0 4.5 0.0 2017-2018
## 5966 474.2 54.3 26.0 53.2 0.0 2017-2018
## 5967 474.0 51.3 24.0 47.8 0.0 2017-2018
## 5968 496.7 48.4 21.0 28.4 0.0 2017-2018
## 5969 472.6 55.7 30.0 50.2 0.0 2017-2018
## 5970 484.7 62.8 33.0 28.1 0.0 2017-2018
## 5971 480.9 52.5 25.0 26.8 0.0 2017-2018
## 5972 476.4 60.4 31.0 71.1 0.0 2017-2018
## 5973 497.6 53.9 26.0 29.0 0.0 2017-2018
## 5974 474.1 65.8 37.0 48.4 0.0 2017-2018
## 5975 466.8 53.3 27.0 27.0 0.0 2017-2018
## 5976 494.9 55.3 27.0 29.2 0.0 2017-2018
## 5977 492.9 66.8 36.0 30.1 0.0 2017-2018
## 5978 486.0 54.7 28.0 50.4 0.0 2017-2018
## 5979 479.7 57.7 29.0 49.7 0.0 2017-2018
## 5980 491.6 56.3 30.0 27.1 0.0 2017-2018
## 5981 489.0 54.1 24.0 4.7 0.0 2017-2018
## 5982 504.1 64.8 36.0 4.8 0.0 2017-2018
## 5983 484.2 54.7 27.0 49.9 0.0 2017-2018
## 5984 501.5 59.8 31.0 28.0 0.0 2017-2018
## 5985 486.5 51.3 23.0 29.1 0.0 2017-2018
## 5986 489.2 54.7 27.0 27.4 0.0 2017-2018
## 5987 488.2 59.9 30.0 52.3 0.0 2017-2018
## 5988 489.4 54.4 26.0 28.6 0.0 2017-2018
## 5989 503.4 59.2 30.0 28.4 0.0 2017-2018
## 5990 485.8 55.0 23.0 52.7 0.0 2017-2018
## 5991 476.1 52.5 25.0 28.6 0.0 2017-2018
## 5992 500.3 54.3 24.0 4.7 0.0 2017-2018
## 5993 497.7 63.2 34.0 28.6 0.0 2017-2018
## 5994 479.9 52.8 20.0 52.9 0.0 2017-2018
## 5995 514.6 54.2 26.0 4.4 0.0 2017-2018
## 5996 495.4 54.3 26.0 4.4 0.0 2017-2018
## 5997 493.2 57.0 30.0 29.8 0.0 2017-2018
## 5998 505.3 57.5 29.0 27.9 0.0 2017-2018
## 5999 495.6 58.3 29.0 4.8 0.0 2017-2018
## 6000 480.6 54.7 26.0 27.5 0.0 2017-2018
## 6001 509.3 58.9 29.0 26.7 0.0 2017-2018
## 6002 492.7 57.4 28.0 49.3 0.0 2017-2018
## 6003 484.8 54.8 26.0 53.2 0.0 2017-2018
## 6004 487.7 55.9 26.0 51.1 0.0 2017-2018
## 6005 479.5 61.0 31.0 54.3 0.0 2017-2018
## 6006 494.4 62.6 35.0 30.4 0.0 2017-2018
## 6007 481.2 52.0 22.0 29.0 0.0 2017-2018
## 6008 454.7 54.1 28.0 92.8 0.0 2017-2018
## 6009 496.0 55.7 25.0 53.5 0.0 2017-2018
## 6010 491.5 55.8 27.0 4.9 0.0 2017-2018
## 6011 470.9 54.1 25.0 28.2 0.0 2017-2018
## 6012 495.3 59.2 30.0 29.4 0.0 2017-2018
## 6013 510.5 49.2 22.0 4.6 0.0 2017-2018
## 6014 496.8 59.5 28.0 78.4 0.0 2017-2018
## 6015 515.5 55.0 23.0 31.3 0.0 2017-2018
## 6016 500.7 62.2 33.0 4.7 0.0 2017-2018
## 6017 505.6 55.7 27.0 56.8 0.0 2017-2018
## 6018 507.0 54.8 26.0 30.5 0.0 2017-2018
## 6019 474.9 53.2 27.0 75.4 0.0 2017-2018
## 6020 496.9 52.7 26.0 96.8 0.0 2017-2018
## 6021 500.0 60.2 32.0 76.1 0.0 2017-2018
## 6022 480.7 65.4 31.0 51.9 0.0 2017-2018
## 6023 499.0 51.3 24.0 29.7 0.0 2017-2018
## 6024 517.9 55.1 28.0 29.6 0.0 2017-2018
## 6025 483.5 60.3 32.0 96.8 0.0 2017-2018
## 6026 495.7 52.0 23.0 81.7 0.0 2017-2018
## 6027 498.5 58.1 29.0 28.9 0.0 2017-2018
## 6028 503.2 60.3 32.0 79.5 0.0 2017-2018
## 6029 520.6 55.2 24.0 5.5 0.0 2017-2018
## 6030 511.3 60.8 30.0 57.3 0.0 2017-2018
## 6031 499.1 58.8 29.0 53.3 0.0 2017-2018
## 6032 519.7 53.6 25.0 5.6 0.0 2017-2018
## 6033 516.7 66.3 33.0 28.4 0.0 2017-2018
## 6034 492.7 60.1 32.0 51.7 0.0 2017-2018
## 6035 543.5 59.2 27.0 56.7 0.0 2017-2018
## 6036 516.3 69.0 39.0 83.0 0.0 2017-2018
## 6037 381.7 46.6 20.0 5.9 0.0 2017-2018
## 6038 392.2 54.9 27.0 5.7 0.0 2017-2018
## 6039 387.6 56.2 31.0 75.6 0.0 2017-2018
## 6040 378.5 52.8 26.0 5.1 0.0 2017-2018
## 6041 378.9 53.2 26.0 5.2 0.0 2017-2018
## 6042 389.7 61.1 35.0 5.6 0.0 2017-2018
## 6043 376.8 55.3 28.0 27.0 0.0 2017-2018
## 6044 377.2 51.6 24.0 30.4 0.0 2017-2018
## 6045 394.3 48.9 22.0 5.5 0.0 2017-2018
## 6046 384.2 53.4 24.0 28.0 0.0 2017-2018
## 6047 390.6 55.9 28.0 28.8 0.0 2017-2018
## 6048 377.5 54.0 26.0 52.8 0.0 2017-2018
## 6049 385.4 57.3 30.0 5.6 0.0 2017-2018
## 6050 390.2 55.2 28.0 27.3 0.0 2017-2018
## 6051 388.1 47.4 22.0 30.5 0.0 2017-2018
## 6052 394.6 51.7 24.0 5.0 0.0 2017-2018
## 6053 395.1 51.0 25.0 5.3 0.0 2017-2018
## 6054 388.0 49.5 23.0 29.3 0.0 2017-2018
## 6055 395.7 52.8 24.0 31.9 0.0 2017-2018
## 6056 396.2 57.1 31.0 31.5 0.0 2017-2018
## 6057 381.4 53.1 25.0 5.9 0.0 2017-2018
## 6058 388.8 48.9 22.0 29.7 0.0 2017-2018
## 6059 382.7 57.7 31.0 51.0 0.0 2017-2018
## 6060 384.9 54.7 29.0 5.6 0.0 2017-2018
## 6061 395.4 54.6 29.0 28.9 0.0 2017-2018
## 6062 381.7 51.8 26.0 28.9 0.0 2017-2018
## 6063 381.8 52.7 24.0 5.1 0.0 2017-2018
## 6064 391.3 49.7 22.0 6.3 0.0 2017-2018
## 6065 385.2 59.5 34.0 5.2 0.0 2017-2018
## 6066 384.5 52.0 26.0 76.2 0.0 2017-2018
## 6067 403.5 54.6 27.0 28.8 0.0 2017-2018
## 6068 410.2 47.8 19.0 6.9 0.0 2017-2018
## 6069 392.1 54.9 28.0 29.9 0.0 2017-2018
## 6070 390.4 54.9 25.0 5.2 0.0 2017-2018
## 6071 393.4 58.2 31.0 51.7 0.0 2017-2018
## 6072 392.7 59.9 30.0 5.6 0.0 2017-2018
## 6073 387.1 75.6 45.0 5.4 0.0 2017-2018
## 6074 397.6 59.9 30.0 31.9 0.0 2017-2018
## 6075 396.8 63.3 33.0 5.9 0.0 2017-2018
## 6076 392.9 61.6 31.0 30.9 0.0 2017-2018
## 6077 383.7 63.6 34.0 51.7 0.0 2017-2018
## 6078 385.8 58.2 28.0 54.2 0.0 2017-2018
## 6079 400.9 49.4 22.0 30.6 0.0 2017-2018
## 6080 385.0 58.0 32.0 81.1 0.0 2017-2018
## 6081 409.0 50.9 21.0 31.8 0.0 2017-2018
## 6082 405.6 46.3 20.0 5.3 0.0 2017-2018
## 6083 390.0 51.1 24.0 31.0 0.0 2017-2018
## 6084 388.9 54.8 26.0 55.3 0.0 2017-2018
## 6085 408.6 53.9 27.0 57.1 0.0 2017-2018
## 6086 400.9 58.9 30.0 29.7 0.0 2017-2018
## 6087 407.1 58.8 30.0 30.0 0.0 2017-2018
## 6088 406.7 63.8 37.0 54.0 0.0 2017-2018
## 6089 407.0 84.0 58.0 31.3 0.0 2017-2018
## 6090 403.7 56.3 28.0 56.6 0.0 2017-2018
## 6091 410.5 52.2 25.0 82.6 0.0 2017-2018
## 6092 414.3 57.1 26.0 32.7 0.0 2017-2018
## 6093 426.5 49.7 23.0 31.5 0.0 2017-2018
## 6094 454.6 44.8 27.4 6.3 0.0 2017-2018
## 6095 456.4 50.6 30.2 6.6 0.0 2017-2018
## 6096 452.4 48.2 27.3 7.2 0.0 2017-2018
## 6097 448.2 38.3 20.3 48.3 0.0 2017-2018
## 6098 457.1 48.7 31.7 27.6 0.0 2017-2018
## 6099 462.0 49.1 32.1 6.3 0.0 2017-2018
## 6100 463.8 44.3 24.0 28.8 0.0 2017-2018
## 6101 455.3 43.1 25.7 28.4 0.0 2017-2018
## 6102 462.5 51.1 31.3 26.3 0.0 2017-2018
## 6103 458.6 42.6 25.2 27.6 0.0 2017-2018
## 6104 458.3 51.2 30.0 28.2 0.0 2017-2018
## 6105 467.8 42.2 24.1 6.9 0.0 2017-2018
## 6106 468.4 49.0 28.7 7.1 0.0 2017-2018
## 6107 469.7 40.2 18.8 6.8 0.0 2017-2018
## 6108 466.1 41.3 23.7 30.5 0.0 2017-2018
## 6109 459.7 48.2 26.1 29.8 0.0 2017-2018
## 6110 459.9 44.5 24.7 29.3 0.0 2017-2018
## 6111 463.9 48.4 28.0 7.4 0.0 2017-2018
## 6112 457.9 47.1 26.3 52.5 0.0 2017-2018
## 6113 461.4 45.1 25.5 30.3 0.0 2017-2018
## 6114 465.8 48.3 26.4 27.9 0.0 2017-2018
## 6115 471.9 47.1 25.2 7.4 0.0 2017-2018
## 6116 450.1 44.8 26.8 52.5 0.0 2017-2018
## 6117 469.9 47.8 26.1 7.0 0.0 2017-2018
## 6118 464.4 47.7 27.0 28.1 0.0 2017-2018
## 6119 467.9 43.0 22.3 7.0 0.0 2017-2018
## 6120 478.5 51.9 31.7 7.3 0.0 2017-2018
## 6121 446.2 41.0 21.5 50.2 0.0 2017-2018
## 6122 474.9 46.6 28.7 30.0 0.0 2017-2018
## 6123 473.8 51.5 34.4 29.2 0.0 2017-2018
## 6124 472.0 47.8 25.7 7.5 0.0 2017-2018
## 6125 479.5 51.2 27.5 6.9 0.0 2017-2018
## 6126 467.9 44.6 25.9 28.9 0.0 2017-2018
## 6127 481.2 47.4 27.0 7.1 0.0 2017-2018
## 6128 458.2 44.8 25.1 51.9 0.0 2017-2018
## 6129 474.1 46.5 26.6 50.6 0.0 2017-2018
## 6130 483.7 46.0 25.9 7.2 0.0 2017-2018
## 6131 469.5 47.2 27.7 51.1 0.0 2017-2018
## 6132 482.4 55.7 34.1 29.1 0.0 2017-2018
## 6133 486.3 42.9 24.0 30.8 0.0 2017-2018
## 6134 462.9 41.7 21.3 31.0 0.0 2017-2018
## 6135 473.6 50.2 29.1 30.4 0.0 2017-2018
## 6136 475.0 64.3 42.5 7.7 0.0 2017-2018
## 6137 465.0 48.6 25.5 53.8 0.0 2017-2018
## 6138 474.4 48.3 26.6 29.3 0.0 2017-2018
## 6139 465.1 46.8 25.5 54.9 0.0 2017-2018
## 6140 465.3 48.5 27.7 29.6 0.0 2017-2018
## 6141 478.3 51.5 29.7 7.8 0.0 2017-2018
## 6142 475.0 44.3 26.6 28.0 0.0 2017-2018
## 6143 475.8 50.0 28.0 31.4 0.0 2017-2018
## 6144 482.4 54.1 31.6 32.4 0.0 2017-2018
## 6145 492.2 48.0 28.4 31.3 0.0 2017-2018
## 6146 480.3 44.5 23.9 6.8 0.0 2017-2018
## 6147 457.5 49.4 27.9 29.8 0.0 2017-2018
## 6148 490.6 49.4 30.3 7.5 0.0 2017-2018
## 6149 476.9 48.6 26.2 30.5 0.0 2017-2018
## 6150 465.0 49.8 27.5 52.7 0.0 2017-2018
## 6151 486.5 53.4 30.9 32.8 0.0 2017-2018
## 6152 487.4 48.8 29.2 6.9 0.0 2017-2018
## 6153 480.2 49.5 29.6 31.0 0.0 2017-2018
## 6154 453.3 47.4 22.2 76.2 0.0 2017-2018
## 6155 476.5 45.3 26.2 53.1 0.0 2017-2018
## 6156 477.7 54.6 31.6 53.2 0.0 2017-2018
## 6157 475.7 47.8 25.0 55.4 0.0 2017-2018
## 6158 485.5 45.9 24.3 7.6 0.0 2017-2018
## 6159 487.4 51.9 30.8 7.8 0.0 2017-2018
## 6160 474.4 48.6 26.7 53.9 0.0 2017-2018
## 6161 479.8 52.8 32.3 29.5 0.0 2017-2018
## 6162 463.2 51.3 30.7 27.7 0.0 2017-2018
## 6163 487.6 49.8 27.6 53.5 0.0 2017-2018
## 6164 485.1 50.3 29.0 31.7 0.0 2017-2018
## 6165 494.6 47.0 25.2 33.7 0.0 2017-2018
## 6166 476.2 50.8 31.0 52.3 0.0 2017-2018
## 6167 476.2 55.4 35.5 49.5 0.0 2017-2018
## 6168 478.9 53.1 30.9 86.5 0.0 2017-2018
## 6169 473.4 54.4 34.2 77.7 0.0 2017-2018
## 6170 483.7 54.7 32.6 51.6 0.0 2017-2018
## 6171 493.5 49.9 29.5 33.0 0.0 2017-2018
## 6172 496.0 47.8 27.4 32.9 0.0 2017-2018
## 6173 482.0 47.6 25.8 54.3 0.0 2017-2018
## 6174 489.4 47.7 24.7 30.7 0.0 2017-2018
## 6175 491.5 57.0 32.0 30.9 0.0 2017-2018
## 6176 487.3 54.6 30.3 31.0 0.0 2017-2018
## 6177 498.3 51.4 30.4 32.7 0.0 2017-2018
## 6178 496.4 46.7 27.6 29.2 0.0 2017-2018
## 6179 495.6 48.2 26.1 54.3 0.0 2017-2018
## 6180 473.5 46.6 23.4 86.7 0.0 2017-2018
## 6181 477.3 57.4 39.8 98.6 0.0 2017-2018
## 6182 476.4 49.2 28.5 30.7 0.0 2017-2018
## 6183 507.2 49.3 29.6 7.4 0.0 2017-2018
## 6184 502.7 44.3 23.8 7.2 0.0 2017-2018
## 6185 484.6 51.8 30.5 83.1 0.0 2017-2018
## 6186 467.2 63.7 42.0 109.3 0.0 2017-2018
## 6187 499.4 48.9 26.9 55.1 0.0 2017-2018
## 6188 528.0 50.9 28.3 8.8 0.0 2017-2018
## 6189 511.5 52.0 31.4 80.2 0.0 2017-2018
## 6190 517.4 55.0 34.1 82.7 0.0 2017-2018
## 6191 552.3 50.7 29.7 7.8 0.0 2017-2018
## 6192 504.2 56.0 31.6 82.2 0.0 2017-2018
## 6193 531.6 54.3 30.4 34.9 0.0 2017-2018
## 6194 420.8 41.1 22.8 30.4 0.0 2017-2018
## 6195 417.0 42.5 23.6 8.6 0.0 2017-2018
## 6196 422.0 44.1 24.2 7.7 0.0 2017-2018
## 6197 421.3 48.6 30.0 30.4 0.0 2017-2018
## 6198 427.6 45.3 33.1 7.3 0.0 2017-2018
## 6199 423.5 49.0 29.1 51.5 0.0 2017-2018
## 6200 420.9 43.5 24.5 6.5 0.0 2017-2018
## 6201 421.7 53.2 32.8 6.8 0.0 2017-2018
## 6202 434.1 43.9 22.2 8.2 0.0 2017-2018
## 6203 423.0 45.4 23.7 8.1 0.0 2017-2018
## 6204 433.8 40.6 20.2 31.8 0.0 2017-2018
## 6205 434.2 46.6 23.9 28.1 0.0 2017-2018
## 6206 423.4 44.4 26.0 6.7 0.0 2017-2018
## 6207 431.6 47.1 25.2 29.1 0.0 2017-2018
## 6208 436.7 48.3 29.0 7.2 0.0 2017-2018
## 6209 424.4 50.7 32.7 28.9 0.0 2017-2018
## 6210 440.8 48.1 26.2 8.1 0.0 2017-2018
## 6211 422.8 47.9 29.2 29.3 0.0 2017-2018
## 6212 422.1 46.0 39.0 52.0 0.0 2017-2018
## 6213 434.4 46.6 27.7 29.5 0.0 2017-2018
## 6214 446.1 39.2 19.6 6.6 0.0 2017-2018
## 6215 437.5 45.2 25.0 55.0 0.0 2017-2018
## 6216 442.9 45.9 24.3 33.7 0.0 2017-2018
## 6217 452.6 42.5 22.3 7.8 0.0 2017-2018
## 6218 461.1 41.4 19.7 30.9 0.0 2017-2018
## 6219 449.5 44.8 24.3 7.5 0.0 2017-2018
## 6220 459.3 46.4 27.3 31.4 0.0 2017-2018
## 6221 453.6 40.7 22.8 56.6 0.0 2017-2018
## 6222 427.5 52.5 33.9 96.8 0.0 2017-2018
## 6223 461.2 42.2 22.1 31.6 0.0 2017-2018
## 6224 468.1 45.1 25.0 4.0 0.0 2017-2018
## 6225 468.1 49.5 28.0 4.2 0.0 2017-2018
## 6226 458.1 47.6 23.0 4.3 0.0 2017-2018
## 6227 470.2 48.0 26.0 4.0 0.0 2017-2018
## 6228 464.0 53.3 31.0 27.0 0.0 2017-2018
## 6229 472.1 44.8 25.0 3.7 0.0 2017-2018
## 6230 483.3 47.9 25.0 4.1 0.0 2017-2018
## 6231 474.4 56.6 35.0 4.1 0.0 2017-2018
## 6232 476.3 51.5 31.0 27.7 0.0 2017-2018
## 6233 479.4 44.0 22.0 4.2 0.0 2017-2018
## 6234 480.5 44.5 23.0 4.0 0.0 2017-2018
## 6235 478.1 44.3 24.0 27.5 0.0 2017-2018
## 6236 487.1 48.7 26.0 4.0 0.0 2017-2018
## 6237 483.0 41.2 19.0 28.2 0.0 2017-2018
## 6238 483.3 42.2 20.0 4.1 0.0 2017-2018
## 6239 471.7 49.0 25.0 28.8 0.0 2017-2018
## 6240 471.9 51.6 30.0 52.1 0.0 2017-2018
## 6241 471.2 43.8 21.0 28.2 0.0 2017-2018
## 6242 489.9 44.9 22.0 5.0 0.0 2017-2018
## 6243 474.7 54.4 34.0 50.2 0.0 2017-2018
## 6244 491.3 47.0 25.0 4.2 0.0 2017-2018
## 6245 483.6 47.9 28.0 50.0 0.0 2017-2018
## 6246 472.3 47.6 26.0 52.5 0.0 2017-2018
## 6247 483.6 47.5 23.0 28.8 0.0 2017-2018
## 6248 486.9 56.6 32.0 28.9 0.0 2017-2018
## 6249 490.6 45.6 23.0 28.9 0.0 2017-2018
## location race_type ID
## 1 Anterselva Sprint 2
## 2 Anterselva Sprint 2
## 3 Anterselva Sprint 2
## 4 Anterselva Sprint 2
## 5 Anterselva Sprint 2
## 6 Anterselva Sprint 2
## 7 Anterselva Sprint 2
## 8 Anterselva Sprint 2
## 9 Anterselva Sprint 2
## 10 Anterselva Sprint 2
## 11 Anterselva Sprint 2
## 12 Anterselva Sprint 2
## 13 Anterselva Sprint 2
## 14 Anterselva Sprint 2
## 15 Anterselva Sprint 2
## 16 Anterselva Sprint 2
## 17 Anterselva Sprint 2
## 18 Anterselva Sprint 2
## 19 Anterselva Sprint 2
## 20 Anterselva Sprint 2
## 21 Anterselva Sprint 2
## 22 Anterselva Sprint 2
## 23 Anterselva Sprint 2
## 24 Anterselva Sprint 2
## 25 Anterselva Sprint 2
## 26 Anterselva Sprint 2
## 27 Anterselva Sprint 2
## 28 Anterselva Sprint 2
## 29 Anterselva Sprint 2
## 30 Anterselva Sprint 2
## 31 Anterselva Sprint 2
## 32 Anterselva Sprint 2
## 33 Anterselva Sprint 2
## 34 Anterselva Sprint 2
## 35 Anterselva Sprint 2
## 36 Anterselva Sprint 2
## 37 Anterselva Sprint 2
## 38 Anterselva Sprint 2
## 39 Anterselva Sprint 2
## 40 Anterselva Sprint 2
## 41 Anterselva Sprint 2
## 42 Anterselva Sprint 2
## 43 Anterselva Sprint 2
## 44 Anterselva Sprint 2
## 45 Anterselva Sprint 2
## 46 Anterselva Sprint 2
## 47 Anterselva Sprint 2
## 48 Anterselva Sprint 2
## 49 Anterselva Sprint 2
## 50 Anterselva Sprint 2
## 51 Anterselva Sprint 2
## 52 Anterselva Sprint 2
## 53 Anterselva Sprint 2
## 54 Anterselva Sprint 2
## 55 Anterselva Sprint 2
## 56 Anterselva Sprint 2
## 57 Anterselva Sprint 2
## 58 Anterselva Sprint 2
## 59 Anterselva Sprint 2
## 60 Anterselva Sprint 2
## 61 Anterselva Sprint 2
## 62 Anterselva Sprint 2
## 63 Anterselva Sprint 2
## 64 Anterselva Sprint 2
## 65 Anterselva Sprint 2
## 66 Anterselva Sprint 2
## 67 Anterselva Sprint 2
## 68 Anterselva Sprint 2
## 69 Anterselva Sprint 2
## 70 Anterselva Sprint 2
## 71 Anterselva Sprint 2
## 72 Anterselva Sprint 2
## 73 Anterselva Sprint 2
## 74 Anterselva Sprint 2
## 75 Anterselva Sprint 2
## 76 Anterselva Sprint 2
## 77 Anterselva Sprint 2
## 78 Anterselva Sprint 2
## 79 Anterselva Sprint 2
## 80 Anterselva Sprint 2
## 81 Anterselva Sprint 2
## 82 Anterselva Sprint 2
## 83 Anterselva Sprint 2
## 84 Anterselva Sprint 2
## 85 Anterselva Sprint 2
## 86 Anterselva Sprint 2
## 87 Anterselva Sprint 2
## 88 Anterselva Sprint 2
## 89 Anterselva Sprint 2
## 90 Anterselva Sprint 2
## 91 Anterselva Sprint 2
## 92 Anterselva Sprint 2
## 93 Anterselva Sprint 2
## 94 Anterselva Sprint 2
## 95 Anterselva Sprint 2
## 96 Anterselva Sprint 2
## 97 Anterselva Sprint 2
## 98 Anterselva Sprint 2
## 99 Anterselva Sprint 2
## 100 Anterselva Sprint 2
## 101 Anterselva Sprint 2
## 102 Anterselva Pursuit 1
## 103 Anterselva Pursuit 1
## 104 Anterselva Pursuit 1
## 105 Anterselva Pursuit 1
## 106 Anterselva Pursuit 1
## 107 Anterselva Pursuit 1
## 108 Anterselva Pursuit 1
## 109 Anterselva Pursuit 1
## 110 Anterselva Pursuit 1
## 111 Anterselva Pursuit 1
## 112 Anterselva Pursuit 1
## 113 Anterselva Pursuit 1
## 114 Anterselva Pursuit 1
## 115 Anterselva Pursuit 1
## 116 Anterselva Pursuit 1
## 117 Anterselva Pursuit 1
## 118 Anterselva Pursuit 1
## 119 Anterselva Pursuit 1
## 120 Anterselva Pursuit 1
## 121 Anterselva Pursuit 1
## 122 Anterselva Pursuit 1
## 123 Anterselva Pursuit 1
## 124 Anterselva Pursuit 1
## 125 Anterselva Pursuit 1
## 126 Anterselva Pursuit 1
## 127 Anterselva Pursuit 1
## 128 Anterselva Pursuit 1
## 129 Anterselva Pursuit 1
## 130 Anterselva Pursuit 1
## 131 Anterselva Pursuit 1
## 132 Anterselva Pursuit 1
## 133 Anterselva Pursuit 1
## 134 Anterselva Pursuit 1
## 135 Anterselva Pursuit 1
## 136 Anterselva Pursuit 1
## 137 Anterselva Pursuit 1
## 138 Anterselva Pursuit 1
## 139 Anterselva Pursuit 1
## 140 Anterselva Pursuit 1
## 141 Anterselva Pursuit 1
## 142 Anterselva Pursuit 1
## 143 Anterselva Pursuit 1
## 144 Anterselva Pursuit 1
## 145 Anterselva Pursuit 1
## 146 Anterselva Pursuit 1
## 147 Anterselva Pursuit 1
## 148 Anterselva Pursuit 1
## 149 Anterselva Pursuit 1
## 150 Anterselva Pursuit 1
## 151 Anterselva Pursuit 1
## 152 Anterselva Pursuit 1
## 153 Anterselva Pursuit 1
## 154 Anterselva Pursuit 1
## 155 Hochfilzen Sprint 4
## 156 Hochfilzen Sprint 4
## 157 Hochfilzen Sprint 4
## 158 Hochfilzen Sprint 4
## 159 Hochfilzen Sprint 4
## 160 Hochfilzen Sprint 4
## 161 Hochfilzen Sprint 4
## 162 Hochfilzen Sprint 4
## 163 Hochfilzen Sprint 4
## 164 Hochfilzen Sprint 4
## 165 Hochfilzen Sprint 4
## 166 Hochfilzen Sprint 4
## 167 Hochfilzen Sprint 4
## 168 Hochfilzen Sprint 4
## 169 Hochfilzen Sprint 4
## 170 Hochfilzen Sprint 4
## 171 Hochfilzen Sprint 4
## 172 Hochfilzen Sprint 4
## 173 Hochfilzen Sprint 4
## 174 Hochfilzen Sprint 4
## 175 Hochfilzen Sprint 4
## 176 Hochfilzen Sprint 4
## 177 Hochfilzen Sprint 4
## 178 Hochfilzen Sprint 4
## 179 Hochfilzen Sprint 4
## 180 Hochfilzen Sprint 4
## 181 Hochfilzen Sprint 4
## 182 Hochfilzen Sprint 4
## 183 Hochfilzen Sprint 4
## 184 Hochfilzen Sprint 4
## 185 Hochfilzen Sprint 4
## 186 Hochfilzen Sprint 4
## 187 Hochfilzen Sprint 4
## 188 Hochfilzen Sprint 4
## 189 Hochfilzen Sprint 4
## 190 Hochfilzen Sprint 4
## 191 Hochfilzen Sprint 4
## 192 Hochfilzen Sprint 4
## 193 Hochfilzen Sprint 4
## 194 Hochfilzen Sprint 4
## 195 Hochfilzen Sprint 4
## 196 Hochfilzen Sprint 4
## 197 Hochfilzen Sprint 4
## 198 Hochfilzen Sprint 4
## 199 Hochfilzen Sprint 4
## 200 Hochfilzen Sprint 4
## 201 Hochfilzen Sprint 4
## 202 Hochfilzen Sprint 4
## 203 Hochfilzen Sprint 4
## 204 Hochfilzen Sprint 4
## 205 Hochfilzen Sprint 4
## 206 Hochfilzen Sprint 4
## 207 Hochfilzen Sprint 4
## 208 Hochfilzen Sprint 4
## 209 Hochfilzen Sprint 4
## 210 Hochfilzen Sprint 4
## 211 Hochfilzen Sprint 4
## 212 Hochfilzen Sprint 4
## 213 Hochfilzen Sprint 4
## 214 Hochfilzen Sprint 4
## 215 Hochfilzen Sprint 4
## 216 Hochfilzen Sprint 4
## 217 Hochfilzen Sprint 4
## 218 Hochfilzen Sprint 4
## 219 Hochfilzen Sprint 4
## 220 Hochfilzen Sprint 4
## 221 Hochfilzen Sprint 4
## 222 Hochfilzen Sprint 4
## 223 Hochfilzen Sprint 4
## 224 Hochfilzen Sprint 4
## 225 Hochfilzen Sprint 4
## 226 Hochfilzen Sprint 4
## 227 Hochfilzen Sprint 4
## 228 Hochfilzen Sprint 4
## 229 Hochfilzen Sprint 4
## 230 Hochfilzen Sprint 4
## 231 Hochfilzen Sprint 4
## 232 Hochfilzen Sprint 4
## 233 Hochfilzen Sprint 4
## 234 Hochfilzen Sprint 4
## 235 Hochfilzen Sprint 4
## 236 Hochfilzen Sprint 4
## 237 Hochfilzen Sprint 4
## 238 Hochfilzen Sprint 4
## 239 Hochfilzen Sprint 4
## 240 Hochfilzen Sprint 4
## 241 Hochfilzen Sprint 4
## 242 Hochfilzen Sprint 4
## 243 Hochfilzen Sprint 4
## 244 Hochfilzen Sprint 4
## 245 Hochfilzen Sprint 4
## 246 Hochfilzen Sprint 4
## 247 Hochfilzen Sprint 4
## 248 Hochfilzen Sprint 4
## 249 Hochfilzen Sprint 4
## 250 Hochfilzen Sprint 4
## 251 Hochfilzen Sprint 4
## 252 Hochfilzen Sprint 4
## 253 Hochfilzen Sprint 4
## 254 Hochfilzen Sprint 4
## 255 Hochfilzen Sprint 4
## 256 Hochfilzen Sprint 4
## 257 Hochfilzen Sprint 4
## 258 Hochfilzen Sprint 4
## 259 Hochfilzen Pursuit 3
## 260 Hochfilzen Pursuit 3
## 261 Hochfilzen Pursuit 3
## 262 Hochfilzen Pursuit 3
## 263 Hochfilzen Pursuit 3
## 264 Hochfilzen Pursuit 3
## 265 Hochfilzen Pursuit 3
## 266 Hochfilzen Pursuit 3
## 267 Hochfilzen Pursuit 3
## 268 Hochfilzen Pursuit 3
## 269 Hochfilzen Pursuit 3
## 270 Hochfilzen Pursuit 3
## 271 Hochfilzen Pursuit 3
## 272 Hochfilzen Pursuit 3
## 273 Hochfilzen Pursuit 3
## 274 Hochfilzen Pursuit 3
## 275 Hochfilzen Pursuit 3
## 276 Hochfilzen Pursuit 3
## 277 Hochfilzen Pursuit 3
## 278 Hochfilzen Pursuit 3
## 279 Hochfilzen Pursuit 3
## 280 Hochfilzen Pursuit 3
## 281 Hochfilzen Pursuit 3
## 282 Hochfilzen Pursuit 3
## 283 Hochfilzen Pursuit 3
## 284 Hochfilzen Pursuit 3
## 285 Hochfilzen Pursuit 3
## 286 Hochfilzen Pursuit 3
## 287 Hochfilzen Pursuit 3
## 288 Hochfilzen Pursuit 3
## 289 Hochfilzen Pursuit 3
## 290 Hochfilzen Pursuit 3
## 291 Hochfilzen Pursuit 3
## 292 Hochfilzen Pursuit 3
## 293 Hochfilzen Pursuit 3
## 294 Hochfilzen Pursuit 3
## 295 Hochfilzen Pursuit 3
## 296 Hochfilzen Pursuit 3
## 297 Hochfilzen Pursuit 3
## 298 Hochfilzen Pursuit 3
## 299 Hochfilzen Pursuit 3
## 300 Hochfilzen Pursuit 3
## 301 Hochfilzen Pursuit 3
## 302 Hochfilzen Pursuit 3
## 303 Hochfilzen Pursuit 3
## 304 Hochfilzen Pursuit 3
## 305 Hochfilzen Pursuit 3
## 306 Hochfilzen Pursuit 3
## 307 Hochfilzen Pursuit 3
## 308 Hochfilzen Pursuit 3
## 309 Hochfilzen Pursuit 3
## 310 Hochfilzen Pursuit 3
## 311 Hochfilzen Pursuit 3
## 312 Hochfilzen Pursuit 3
## 313 Hochfilzen Pursuit 3
## 314 Hochfilzen Pursuit 3
## 315 Khanty-Mansiysk Sprint 7
## 316 Khanty-Mansiysk Sprint 7
## 317 Khanty-Mansiysk Sprint 7
## 318 Khanty-Mansiysk Sprint 7
## 319 Khanty-Mansiysk Sprint 7
## 320 Khanty-Mansiysk Sprint 7
## 321 Khanty-Mansiysk Sprint 7
## 322 Khanty-Mansiysk Sprint 7
## 323 Khanty-Mansiysk Sprint 7
## 324 Khanty-Mansiysk Sprint 7
## 325 Khanty-Mansiysk Sprint 7
## 326 Khanty-Mansiysk Sprint 7
## 327 Khanty-Mansiysk Sprint 7
## 328 Khanty-Mansiysk Sprint 7
## 329 Khanty-Mansiysk Sprint 7
## 330 Khanty-Mansiysk Sprint 7
## 331 Khanty-Mansiysk Sprint 7
## 332 Khanty-Mansiysk Sprint 7
## 333 Khanty-Mansiysk Sprint 7
## 334 Khanty-Mansiysk Sprint 7
## 335 Khanty-Mansiysk Sprint 7
## 336 Khanty-Mansiysk Sprint 7
## 337 Khanty-Mansiysk Sprint 7
## 338 Khanty-Mansiysk Sprint 7
## 339 Khanty-Mansiysk Sprint 7
## 340 Khanty-Mansiysk Sprint 7
## 341 Khanty-Mansiysk Sprint 7
## 342 Khanty-Mansiysk Sprint 7
## 343 Khanty-Mansiysk Sprint 7
## 344 Khanty-Mansiysk Sprint 7
## 345 Khanty-Mansiysk Sprint 7
## 346 Khanty-Mansiysk Sprint 7
## 347 Khanty-Mansiysk Sprint 7
## 348 Khanty-Mansiysk Sprint 7
## 349 Khanty-Mansiysk Sprint 7
## 350 Khanty-Mansiysk Sprint 7
## 351 Khanty-Mansiysk Sprint 7
## 352 Khanty-Mansiysk Sprint 7
## 353 Khanty-Mansiysk Sprint 7
## 354 Khanty-Mansiysk Sprint 7
## 355 Khanty-Mansiysk Sprint 7
## 356 Khanty-Mansiysk Sprint 7
## 357 Khanty-Mansiysk Sprint 7
## 358 Khanty-Mansiysk Sprint 7
## 359 Khanty-Mansiysk Sprint 7
## 360 Khanty-Mansiysk Sprint 7
## 361 Khanty-Mansiysk Sprint 7
## 362 Khanty-Mansiysk Sprint 7
## 363 Khanty-Mansiysk Sprint 7
## 364 Khanty-Mansiysk Sprint 7
## 365 Khanty-Mansiysk Sprint 7
## 366 Khanty-Mansiysk Sprint 7
## 367 Khanty-Mansiysk Sprint 7
## 368 Khanty-Mansiysk Sprint 7
## 369 Khanty-Mansiysk Sprint 7
## 370 Khanty-Mansiysk Sprint 7
## 371 Khanty-Mansiysk Sprint 7
## 372 Khanty-Mansiysk Sprint 7
## 373 Khanty-Mansiysk Sprint 7
## 374 Khanty-Mansiysk Sprint 7
## 375 Khanty-Mansiysk Sprint 7
## 376 Khanty-Mansiysk Sprint 7
## 377 Khanty-Mansiysk Sprint 7
## 378 Khanty-Mansiysk Sprint 7
## 379 Khanty-Mansiysk Sprint 7
## 380 Khanty-Mansiysk Sprint 7
## 381 Khanty-Mansiysk Sprint 7
## 382 Khanty-Mansiysk Sprint 7
## 383 Khanty-Mansiysk Sprint 7
## 384 Khanty-Mansiysk Sprint 7
## 385 Khanty-Mansiysk Sprint 7
## 386 Khanty-Mansiysk Sprint 7
## 387 Khanty-Mansiysk Sprint 7
## 388 Khanty-Mansiysk Sprint 7
## 389 Khanty-Mansiysk Sprint 7
## 390 Khanty-Mansiysk Sprint 7
## 391 Khanty-Mansiysk Sprint 7
## 392 Khanty-Mansiysk Sprint 7
## 393 Khanty-Mansiysk Sprint 7
## 394 Khanty-Mansiysk Sprint 7
## 395 Khanty-Mansiysk Sprint 7
## 396 Khanty-Mansiysk Sprint 7
## 397 Khanty-Mansiysk Sprint 7
## 398 Khanty-Mansiysk Sprint 7
## 399 Khanty-Mansiysk Sprint 7
## 400 Khanty-Mansiysk Sprint 7
## 401 Khanty-Mansiysk Sprint 7
## 402 Khanty-Mansiysk Sprint 7
## 403 Khanty-Mansiysk Mass start 5
## 404 Khanty-Mansiysk Mass start 5
## 405 Khanty-Mansiysk Mass start 5
## 406 Khanty-Mansiysk Mass start 5
## 407 Khanty-Mansiysk Mass start 5
## 408 Khanty-Mansiysk Mass start 5
## 409 Khanty-Mansiysk Mass start 5
## 410 Khanty-Mansiysk Mass start 5
## 411 Khanty-Mansiysk Mass start 5
## 412 Khanty-Mansiysk Mass start 5
## 413 Khanty-Mansiysk Mass start 5
## 414 Khanty-Mansiysk Mass start 5
## 415 Khanty-Mansiysk Mass start 5
## 416 Khanty-Mansiysk Mass start 5
## 417 Khanty-Mansiysk Mass start 5
## 418 Khanty-Mansiysk Mass start 5
## 419 Khanty-Mansiysk Mass start 5
## 420 Khanty-Mansiysk Mass start 5
## 421 Khanty-Mansiysk Mass start 5
## 422 Khanty-Mansiysk Mass start 5
## 423 Khanty-Mansiysk Mass start 5
## 424 Khanty-Mansiysk Mass start 5
## 425 Khanty-Mansiysk Mass start 5
## 426 Khanty-Mansiysk Mass start 5
## 427 Khanty-Mansiysk Mass start 5
## 428 Khanty-Mansiysk Mass start 5
## 429 Khanty-Mansiysk Mass start 5
## 430 Khanty-Mansiysk Mass start 5
## 431 Khanty-Mansiysk Mass start 5
## 432 Khanty-Mansiysk Mass start 5
## 433 Khanty-Mansiysk Pursuit 6
## 434 Khanty-Mansiysk Pursuit 6
## 435 Khanty-Mansiysk Pursuit 6
## 436 Khanty-Mansiysk Pursuit 6
## 437 Khanty-Mansiysk Pursuit 6
## 438 Khanty-Mansiysk Pursuit 6
## 439 Khanty-Mansiysk Pursuit 6
## 440 Khanty-Mansiysk Pursuit 6
## 441 Khanty-Mansiysk Pursuit 6
## 442 Khanty-Mansiysk Pursuit 6
## 443 Khanty-Mansiysk Pursuit 6
## 444 Khanty-Mansiysk Pursuit 6
## 445 Khanty-Mansiysk Pursuit 6
## 446 Khanty-Mansiysk Pursuit 6
## 447 Khanty-Mansiysk Pursuit 6
## 448 Khanty-Mansiysk Pursuit 6
## 449 Khanty-Mansiysk Pursuit 6
## 450 Khanty-Mansiysk Pursuit 6
## 451 Khanty-Mansiysk Pursuit 6
## 452 Khanty-Mansiysk Pursuit 6
## 453 Khanty-Mansiysk Pursuit 6
## 454 Khanty-Mansiysk Pursuit 6
## 455 Khanty-Mansiysk Pursuit 6
## 456 Khanty-Mansiysk Pursuit 6
## 457 Khanty-Mansiysk Pursuit 6
## 458 Khanty-Mansiysk Pursuit 6
## 459 Khanty-Mansiysk Pursuit 6
## 460 Khanty-Mansiysk Pursuit 6
## 461 Khanty-Mansiysk Pursuit 6
## 462 Khanty-Mansiysk Pursuit 6
## 463 Khanty-Mansiysk Pursuit 6
## 464 Khanty-Mansiysk Pursuit 6
## 465 Khanty-Mansiysk Pursuit 6
## 466 Khanty-Mansiysk Pursuit 6
## 467 Khanty-Mansiysk Pursuit 6
## 468 Khanty-Mansiysk Pursuit 6
## 469 Khanty-Mansiysk Pursuit 6
## 470 Khanty-Mansiysk Pursuit 6
## 471 Khanty-Mansiysk Pursuit 6
## 472 Khanty-Mansiysk Pursuit 6
## 473 Khanty-Mansiysk Pursuit 6
## 474 Khanty-Mansiysk Pursuit 6
## 475 Khanty-Mansiysk Pursuit 6
## 476 Khanty-Mansiysk Pursuit 6
## 477 Khanty-Mansiysk Pursuit 6
## 478 Khanty-Mansiysk Pursuit 6
## 479 Khanty-Mansiysk Pursuit 6
## 480 Khanty-Mansiysk Pursuit 6
## 481 Khanty-Mansiysk Pursuit 6
## 482 Khanty-Mansiysk Pursuit 6
## 483 Khanty-Mansiysk Pursuit 6
## 484 Khanty-Mansiysk Pursuit 6
## 485 Khanty-Mansiysk Pursuit 6
## 486 Khanty-Mansiysk Pursuit 6
## 487 Khanty-Mansiysk Pursuit 6
## 488 Kontiolahti Sprint 11
## 489 Kontiolahti Sprint 11
## 490 Kontiolahti Sprint 11
## 491 Kontiolahti Sprint 11
## 492 Kontiolahti Sprint 11
## 493 Kontiolahti Sprint 11
## 494 Kontiolahti Sprint 11
## 495 Kontiolahti Sprint 11
## 496 Kontiolahti Sprint 11
## 497 Kontiolahti Sprint 11
## 498 Kontiolahti Sprint 11
## 499 Kontiolahti Sprint 11
## 500 Kontiolahti Sprint 11
## 501 Kontiolahti Sprint 11
## 502 Kontiolahti Sprint 11
## 503 Kontiolahti Sprint 11
## 504 Kontiolahti Sprint 11
## 505 Kontiolahti Sprint 11
## 506 Kontiolahti Sprint 11
## 507 Kontiolahti Sprint 11
## 508 Kontiolahti Sprint 11
## 509 Kontiolahti Sprint 11
## 510 Kontiolahti Sprint 11
## 511 Kontiolahti Sprint 11
## 512 Kontiolahti Sprint 11
## 513 Kontiolahti Sprint 11
## 514 Kontiolahti Sprint 11
## 515 Kontiolahti Sprint 11
## 516 Kontiolahti Sprint 11
## 517 Kontiolahti Sprint 11
## 518 Kontiolahti Sprint 11
## 519 Kontiolahti Sprint 11
## 520 Kontiolahti Sprint 11
## 521 Kontiolahti Sprint 11
## 522 Kontiolahti Sprint 11
## 523 Kontiolahti Sprint 11
## 524 Kontiolahti Sprint 11
## 525 Kontiolahti Sprint 11
## 526 Kontiolahti Sprint 11
## 527 Kontiolahti Sprint 11
## 528 Kontiolahti Sprint 11
## 529 Kontiolahti Sprint 11
## 530 Kontiolahti Sprint 11
## 531 Kontiolahti Sprint 11
## 532 Kontiolahti Sprint 11
## 533 Kontiolahti Sprint 11
## 534 Kontiolahti Sprint 11
## 535 Kontiolahti Sprint 11
## 536 Kontiolahti Sprint 11
## 537 Kontiolahti Sprint 11
## 538 Kontiolahti Sprint 11
## 539 Kontiolahti Sprint 11
## 540 Kontiolahti Sprint 11
## 541 Kontiolahti Sprint 11
## 542 Kontiolahti Sprint 11
## 543 Kontiolahti Sprint 11
## 544 Kontiolahti Sprint 11
## 545 Kontiolahti Sprint 11
## 546 Kontiolahti Sprint 11
## 547 Kontiolahti Sprint 11
## 548 Kontiolahti Sprint 11
## 549 Kontiolahti Sprint 11
## 550 Kontiolahti Sprint 11
## 551 Kontiolahti Sprint 11
## 552 Kontiolahti Sprint 11
## 553 Kontiolahti Sprint 11
## 554 Kontiolahti Sprint 11
## 555 Kontiolahti Sprint 11
## 556 Kontiolahti Sprint 11
## 557 Kontiolahti Sprint 11
## 558 Kontiolahti Sprint 11
## 559 Kontiolahti Sprint 11
## 560 Kontiolahti Sprint 11
## 561 Kontiolahti Sprint 11
## 562 Kontiolahti Sprint 11
## 563 Kontiolahti Sprint 11
## 564 Kontiolahti Sprint 11
## 565 Kontiolahti Sprint 11
## 566 Kontiolahti Sprint 11
## 567 Kontiolahti Sprint 11
## 568 Kontiolahti Sprint 11
## 569 Kontiolahti Sprint 11
## 570 Kontiolahti Sprint 11
## 571 Kontiolahti Sprint 11
## 572 Kontiolahti Sprint 11
## 573 Kontiolahti Sprint 11
## 574 Kontiolahti Sprint 11
## 575 Kontiolahti Sprint 11
## 576 Kontiolahti Sprint 11
## 577 Kontiolahti Sprint 11
## 578 Kontiolahti Sprint 11
## 579 Kontiolahti Sprint 11
## 580 Kontiolahti Sprint 11
## 581 Kontiolahti Sprint 11
## 582 Kontiolahti Sprint 11
## 583 Kontiolahti Sprint 11
## 584 Kontiolahti Sprint 11
## 585 Kontiolahti Sprint 11
## 586 Kontiolahti Sprint 11
## 587 Kontiolahti Sprint 11
## 588 Kontiolahti Sprint 11
## 589 Kontiolahti Sprint 11
## 590 Kontiolahti Sprint 11
## 591 Kontiolahti Sprint 11
## 592 Kontiolahti Sprint 11
## 593 Kontiolahti Sprint 11
## 594 Kontiolahti Sprint 11
## 595 Kontiolahti Sprint 11
## 596 Kontiolahti Sprint 11
## 597 Kontiolahti Sprint 11
## 598 Kontiolahti Sprint 11
## 599 Kontiolahti Sprint 11
## 600 Kontiolahti Sprint 11
## 601 Kontiolahti Sprint 11
## 602 Kontiolahti Sprint 11
## 603 Kontiolahti Sprint 11
## 604 Kontiolahti Sprint 11
## 605 Kontiolahti Sprint 11
## 606 Kontiolahti Sprint 11
## 607 Kontiolahti Sprint 11
## 608 Kontiolahti Individual 8
## 609 Kontiolahti Individual 8
## 610 Kontiolahti Individual 8
## 611 Kontiolahti Individual 8
## 612 Kontiolahti Individual 8
## 613 Kontiolahti Individual 8
## 614 Kontiolahti Individual 8
## 615 Kontiolahti Individual 8
## 616 Kontiolahti Individual 8
## 617 Kontiolahti Individual 8
## 618 Kontiolahti Individual 8
## 619 Kontiolahti Individual 8
## 620 Kontiolahti Individual 8
## 621 Kontiolahti Individual 8
## 622 Kontiolahti Individual 8
## 623 Kontiolahti Individual 8
## 624 Kontiolahti Individual 8
## 625 Kontiolahti Individual 8
## 626 Kontiolahti Individual 8
## 627 Kontiolahti Individual 8
## 628 Kontiolahti Individual 8
## 629 Kontiolahti Individual 8
## 630 Kontiolahti Individual 8
## 631 Kontiolahti Individual 8
## 632 Kontiolahti Individual 8
## 633 Kontiolahti Individual 8
## 634 Kontiolahti Individual 8
## 635 Kontiolahti Individual 8
## 636 Kontiolahti Individual 8
## 637 Kontiolahti Individual 8
## 638 Kontiolahti Individual 8
## 639 Kontiolahti Individual 8
## 640 Kontiolahti Individual 8
## 641 Kontiolahti Individual 8
## 642 Kontiolahti Individual 8
## 643 Kontiolahti Individual 8
## 644 Kontiolahti Individual 8
## 645 Kontiolahti Individual 8
## 646 Kontiolahti Individual 8
## 647 Kontiolahti Individual 8
## 648 Kontiolahti Individual 8
## 649 Kontiolahti Individual 8
## 650 Kontiolahti Individual 8
## 651 Kontiolahti Individual 8
## 652 Kontiolahti Individual 8
## 653 Kontiolahti Individual 8
## 654 Kontiolahti Individual 8
## 655 Kontiolahti Individual 8
## 656 Kontiolahti Individual 8
## 657 Kontiolahti Individual 8
## 658 Kontiolahti Individual 8
## 659 Kontiolahti Individual 8
## 660 Kontiolahti Individual 8
## 661 Kontiolahti Individual 8
## 662 Kontiolahti Individual 8
## 663 Kontiolahti Individual 8
## 664 Kontiolahti Individual 8
## 665 Kontiolahti Individual 8
## 666 Kontiolahti Individual 8
## 667 Kontiolahti Individual 8
## 668 Kontiolahti Individual 8
## 669 Kontiolahti Individual 8
## 670 Kontiolahti Individual 8
## 671 Kontiolahti Individual 8
## 672 Kontiolahti Individual 8
## 673 Kontiolahti Individual 8
## 674 Kontiolahti Individual 8
## 675 Kontiolahti Individual 8
## 676 Kontiolahti Individual 8
## 677 Kontiolahti Individual 8
## 678 Kontiolahti Individual 8
## 679 Kontiolahti Individual 8
## 680 Kontiolahti Individual 8
## 681 Kontiolahti Individual 8
## 682 Kontiolahti Individual 8
## 683 Kontiolahti Individual 8
## 684 Kontiolahti Individual 8
## 685 Kontiolahti Individual 8
## 686 Kontiolahti Individual 8
## 687 Kontiolahti Individual 8
## 688 Kontiolahti Individual 8
## 689 Kontiolahti Individual 8
## 690 Kontiolahti Individual 8
## 691 Kontiolahti Individual 8
## 692 Kontiolahti Individual 8
## 693 Kontiolahti Individual 8
## 694 Kontiolahti Individual 8
## 695 Kontiolahti Individual 8
## 696 Kontiolahti Individual 8
## 697 Kontiolahti Individual 8
## 698 Kontiolahti Individual 8
## 699 Kontiolahti Individual 8
## 700 Kontiolahti Individual 8
## 701 Kontiolahti Individual 8
## 702 Kontiolahti Individual 8
## 703 Kontiolahti Individual 8
## 704 Kontiolahti Individual 8
## 705 Kontiolahti Individual 8
## 706 Kontiolahti Individual 8
## 707 Kontiolahti Individual 8
## 708 Kontiolahti Individual 8
## 709 Kontiolahti Individual 8
## 710 Kontiolahti Individual 8
## 711 Kontiolahti Individual 8
## 712 Kontiolahti Individual 8
## 713 Kontiolahti Individual 8
## 714 Kontiolahti Individual 8
## 715 Kontiolahti Individual 8
## 716 Kontiolahti Individual 8
## 717 Kontiolahti Individual 8
## 718 Kontiolahti Individual 8
## 719 Kontiolahti Individual 8
## 720 Kontiolahti Individual 8
## 721 Kontiolahti Individual 8
## 722 Kontiolahti Individual 8
## 723 Kontiolahti Individual 8
## 724 Kontiolahti Individual 8
## 725 Kontiolahti Individual 8
## 726 Kontiolahti Individual 8
## 727 Kontiolahti Individual 8
## 728 Kontiolahti Mass start 9
## 729 Kontiolahti Mass start 9
## 730 Kontiolahti Mass start 9
## 731 Kontiolahti Mass start 9
## 732 Kontiolahti Mass start 9
## 733 Kontiolahti Mass start 9
## 734 Kontiolahti Mass start 9
## 735 Kontiolahti Mass start 9
## 736 Kontiolahti Mass start 9
## 737 Kontiolahti Mass start 9
## 738 Kontiolahti Mass start 9
## 739 Kontiolahti Mass start 9
## 740 Kontiolahti Mass start 9
## 741 Kontiolahti Mass start 9
## 742 Kontiolahti Mass start 9
## 743 Kontiolahti Mass start 9
## 744 Kontiolahti Mass start 9
## 745 Kontiolahti Mass start 9
## 746 Kontiolahti Mass start 9
## 747 Kontiolahti Mass start 9
## 748 Kontiolahti Mass start 9
## 749 Kontiolahti Mass start 9
## 750 Kontiolahti Mass start 9
## 751 Kontiolahti Mass start 9
## 752 Kontiolahti Mass start 9
## 753 Kontiolahti Mass start 9
## 754 Kontiolahti Mass start 9
## 755 Kontiolahti Mass start 9
## 756 Kontiolahti Mass start 9
## 757 Kontiolahti Mass start 9
## 758 Kontiolahti Pursuit 10
## 759 Kontiolahti Pursuit 10
## 760 Kontiolahti Pursuit 10
## 761 Kontiolahti Pursuit 10
## 762 Kontiolahti Pursuit 10
## 763 Kontiolahti Pursuit 10
## 764 Kontiolahti Pursuit 10
## 765 Kontiolahti Pursuit 10
## 766 Kontiolahti Pursuit 10
## 767 Kontiolahti Pursuit 10
## 768 Kontiolahti Pursuit 10
## 769 Kontiolahti Pursuit 10
## 770 Kontiolahti Pursuit 10
## 771 Kontiolahti Pursuit 10
## 772 Kontiolahti Pursuit 10
## 773 Kontiolahti Pursuit 10
## 774 Kontiolahti Pursuit 10
## 775 Kontiolahti Pursuit 10
## 776 Kontiolahti Pursuit 10
## 777 Kontiolahti Pursuit 10
## 778 Kontiolahti Pursuit 10
## 779 Kontiolahti Pursuit 10
## 780 Kontiolahti Pursuit 10
## 781 Kontiolahti Pursuit 10
## 782 Kontiolahti Pursuit 10
## 783 Kontiolahti Pursuit 10
## 784 Kontiolahti Pursuit 10
## 785 Kontiolahti Pursuit 10
## 786 Kontiolahti Pursuit 10
## 787 Kontiolahti Pursuit 10
## 788 Kontiolahti Pursuit 10
## 789 Kontiolahti Pursuit 10
## 790 Kontiolahti Pursuit 10
## 791 Kontiolahti Pursuit 10
## 792 Kontiolahti Pursuit 10
## 793 Kontiolahti Pursuit 10
## 794 Kontiolahti Pursuit 10
## 795 Kontiolahti Pursuit 10
## 796 Kontiolahti Pursuit 10
## 797 Kontiolahti Pursuit 10
## 798 Kontiolahti Pursuit 10
## 799 Kontiolahti Pursuit 10
## 800 Kontiolahti Pursuit 10
## 801 Kontiolahti Pursuit 10
## 802 Kontiolahti Pursuit 10
## 803 Kontiolahti Pursuit 10
## 804 Kontiolahti Pursuit 10
## 805 Kontiolahti Pursuit 10
## 806 Kontiolahti Pursuit 10
## 807 Kontiolahti Pursuit 10
## 808 Kontiolahti Pursuit 10
## 809 Kontiolahti Pursuit 10
## 810 Kontiolahti Pursuit 10
## 811 Kontiolahti Pursuit 10
## 812 Kontiolahti Pursuit 10
## 813 Kontiolahti Pursuit 10
## 814 Kontiolahti Pursuit 10
## 815 Kontiolahti Pursuit 10
## 816 Kontiolahti Pursuit 10
## 817 Kontiolahti Pursuit 10
## 818 Nove_Mesto Sprint 13
## 819 Nove_Mesto Sprint 13
## 820 Nove_Mesto Sprint 13
## 821 Nove_Mesto Sprint 13
## 822 Nove_Mesto Sprint 13
## 823 Nove_Mesto Sprint 13
## 824 Nove_Mesto Sprint 13
## 825 Nove_Mesto Sprint 13
## 826 Nove_Mesto Sprint 13
## 827 Nove_Mesto Sprint 13
## 828 Nove_Mesto Sprint 13
## 829 Nove_Mesto Sprint 13
## 830 Nove_Mesto Sprint 13
## 831 Nove_Mesto Sprint 13
## 832 Nove_Mesto Sprint 13
## 833 Nove_Mesto Sprint 13
## 834 Nove_Mesto Sprint 13
## 835 Nove_Mesto Sprint 13
## 836 Nove_Mesto Sprint 13
## 837 Nove_Mesto Sprint 13
## 838 Nove_Mesto Sprint 13
## 839 Nove_Mesto Sprint 13
## 840 Nove_Mesto Sprint 13
## 841 Nove_Mesto Sprint 13
## 842 Nove_Mesto Sprint 13
## 843 Nove_Mesto Sprint 13
## 844 Nove_Mesto Sprint 13
## 845 Nove_Mesto Sprint 13
## 846 Nove_Mesto Sprint 13
## 847 Nove_Mesto Sprint 13
## 848 Nove_Mesto Sprint 13
## 849 Nove_Mesto Sprint 13
## 850 Nove_Mesto Sprint 13
## 851 Nove_Mesto Sprint 13
## 852 Nove_Mesto Sprint 13
## 853 Nove_Mesto Sprint 13
## 854 Nove_Mesto Sprint 13
## 855 Nove_Mesto Sprint 13
## 856 Nove_Mesto Sprint 13
## 857 Nove_Mesto Sprint 13
## 858 Nove_Mesto Sprint 13
## 859 Nove_Mesto Sprint 13
## 860 Nove_Mesto Sprint 13
## 861 Nove_Mesto Sprint 13
## 862 Nove_Mesto Sprint 13
## 863 Nove_Mesto Sprint 13
## 864 Nove_Mesto Sprint 13
## 865 Nove_Mesto Sprint 13
## 866 Nove_Mesto Sprint 13
## 867 Nove_Mesto Sprint 13
## 868 Nove_Mesto Sprint 13
## 869 Nove_Mesto Sprint 13
## 870 Nove_Mesto Sprint 13
## 871 Nove_Mesto Sprint 13
## 872 Nove_Mesto Sprint 13
## 873 Nove_Mesto Sprint 13
## 874 Nove_Mesto Sprint 13
## 875 Nove_Mesto Sprint 13
## 876 Nove_Mesto Sprint 13
## 877 Nove_Mesto Sprint 13
## 878 Nove_Mesto Sprint 13
## 879 Nove_Mesto Sprint 13
## 880 Nove_Mesto Sprint 13
## 881 Nove_Mesto Sprint 13
## 882 Nove_Mesto Sprint 13
## 883 Nove_Mesto Sprint 13
## 884 Nove_Mesto Sprint 13
## 885 Nove_Mesto Sprint 13
## 886 Nove_Mesto Sprint 13
## 887 Nove_Mesto Sprint 13
## 888 Nove_Mesto Sprint 13
## 889 Nove_Mesto Sprint 13
## 890 Nove_Mesto Sprint 13
## 891 Nove_Mesto Sprint 13
## 892 Nove_Mesto Sprint 13
## 893 Nove_Mesto Sprint 13
## 894 Nove_Mesto Sprint 13
## 895 Nove_Mesto Sprint 13
## 896 Nove_Mesto Sprint 13
## 897 Nove_Mesto Sprint 13
## 898 Nove_Mesto Sprint 13
## 899 Nove_Mesto Sprint 13
## 900 Nove_Mesto Sprint 13
## 901 Nove_Mesto Sprint 13
## 902 Nove_Mesto Sprint 13
## 903 Nove_Mesto Sprint 13
## 904 Nove_Mesto Sprint 13
## 905 Nove_Mesto Sprint 13
## 906 Nove_Mesto Sprint 13
## 907 Nove_Mesto Sprint 13
## 908 Nove_Mesto Sprint 13
## 909 Nove_Mesto Sprint 13
## 910 Nove_Mesto Sprint 13
## 911 Nove_Mesto Sprint 13
## 912 Nove_Mesto Pursuit 12
## 913 Nove_Mesto Pursuit 12
## 914 Nove_Mesto Pursuit 12
## 915 Nove_Mesto Pursuit 12
## 916 Nove_Mesto Pursuit 12
## 917 Nove_Mesto Pursuit 12
## 918 Nove_Mesto Pursuit 12
## 919 Nove_Mesto Pursuit 12
## 920 Nove_Mesto Pursuit 12
## 921 Nove_Mesto Pursuit 12
## 922 Nove_Mesto Pursuit 12
## 923 Nove_Mesto Pursuit 12
## 924 Nove_Mesto Pursuit 12
## 925 Nove_Mesto Pursuit 12
## 926 Nove_Mesto Pursuit 12
## 927 Nove_Mesto Pursuit 12
## 928 Nove_Mesto Pursuit 12
## 929 Nove_Mesto Pursuit 12
## 930 Nove_Mesto Pursuit 12
## 931 Nove_Mesto Pursuit 12
## 932 Nove_Mesto Pursuit 12
## 933 Nove_Mesto Pursuit 12
## 934 Nove_Mesto Pursuit 12
## 935 Nove_Mesto Pursuit 12
## 936 Nove_Mesto Pursuit 12
## 937 Nove_Mesto Pursuit 12
## 938 Nove_Mesto Pursuit 12
## 939 Nove_Mesto Pursuit 12
## 940 Nove_Mesto Pursuit 12
## 941 Nove_Mesto Pursuit 12
## 942 Nove_Mesto Pursuit 12
## 943 Nove_Mesto Pursuit 12
## 944 Nove_Mesto Pursuit 12
## 945 Nove_Mesto Pursuit 12
## 946 Nove_Mesto Pursuit 12
## 947 Nove_Mesto Pursuit 12
## 948 Nove_Mesto Pursuit 12
## 949 Nove_Mesto Pursuit 12
## 950 Nove_Mesto Pursuit 12
## 951 Nove_Mesto Pursuit 12
## 952 Nove_Mesto Pursuit 12
## 953 Nove_Mesto Pursuit 12
## 954 Nove_Mesto Pursuit 12
## 955 Nove_Mesto Pursuit 12
## 956 Nove_Mesto Pursuit 12
## 957 Nove_Mesto Pursuit 12
## 958 Nove_Mesto Pursuit 12
## 959 Nove_Mesto Pursuit 12
## 960 Nove_Mesto Pursuit 12
## 961 Nove_Mesto Pursuit 12
## 962 Nove_Mesto Pursuit 12
## 963 Nove_Mesto Pursuit 12
## 964 Nove_Mesto Pursuit 12
## 965 Nove_Mesto Pursuit 12
## 966 Oberhof Sprint 15
## 967 Oberhof Sprint 15
## 968 Oberhof Sprint 15
## 969 Oberhof Sprint 15
## 970 Oberhof Sprint 15
## 971 Oberhof Sprint 15
## 972 Oberhof Sprint 15
## 973 Oberhof Sprint 15
## 974 Oberhof Sprint 15
## 975 Oberhof Sprint 15
## 976 Oberhof Sprint 15
## 977 Oberhof Sprint 15
## 978 Oberhof Sprint 15
## 979 Oberhof Sprint 15
## 980 Oberhof Sprint 15
## 981 Oberhof Sprint 15
## 982 Oberhof Sprint 15
## 983 Oberhof Sprint 15
## 984 Oberhof Sprint 15
## 985 Oberhof Sprint 15
## 986 Oberhof Sprint 15
## 987 Oberhof Sprint 15
## 988 Oberhof Sprint 15
## 989 Oberhof Sprint 15
## 990 Oberhof Sprint 15
## 991 Oberhof Sprint 15
## 992 Oberhof Sprint 15
## 993 Oberhof Sprint 15
## 994 Oberhof Sprint 15
## 995 Oberhof Sprint 15
## 996 Oberhof Sprint 15
## 997 Oberhof Sprint 15
## 998 Oberhof Sprint 15
## 999 Oberhof Sprint 15
## 1000 Oberhof Sprint 15
## 1001 Oberhof Sprint 15
## 1002 Oberhof Sprint 15
## 1003 Oberhof Sprint 15
## 1004 Oberhof Sprint 15
## 1005 Oberhof Sprint 15
## 1006 Oberhof Sprint 15
## 1007 Oberhof Sprint 15
## 1008 Oberhof Sprint 15
## 1009 Oberhof Sprint 15
## 1010 Oberhof Sprint 15
## 1011 Oberhof Sprint 15
## 1012 Oberhof Sprint 15
## 1013 Oberhof Sprint 15
## 1014 Oberhof Sprint 15
## 1015 Oberhof Sprint 15
## 1016 Oberhof Sprint 15
## 1017 Oberhof Sprint 15
## 1018 Oberhof Sprint 15
## 1019 Oberhof Sprint 15
## 1020 Oberhof Sprint 15
## 1021 Oberhof Sprint 15
## 1022 Oberhof Sprint 15
## 1023 Oberhof Sprint 15
## 1024 Oberhof Sprint 15
## 1025 Oberhof Sprint 15
## 1026 Oberhof Sprint 15
## 1027 Oberhof Sprint 15
## 1028 Oberhof Sprint 15
## 1029 Oberhof Sprint 15
## 1030 Oberhof Sprint 15
## 1031 Oberhof Sprint 15
## 1032 Oberhof Sprint 15
## 1033 Oberhof Sprint 15
## 1034 Oberhof Sprint 15
## 1035 Oberhof Sprint 15
## 1036 Oberhof Sprint 15
## 1037 Oberhof Sprint 15
## 1038 Oberhof Sprint 15
## 1039 Oberhof Sprint 15
## 1040 Oberhof Sprint 15
## 1041 Oberhof Sprint 15
## 1042 Oberhof Sprint 15
## 1043 Oberhof Sprint 15
## 1044 Oberhof Sprint 15
## 1045 Oberhof Sprint 15
## 1046 Oberhof Sprint 15
## 1047 Oberhof Sprint 15
## 1048 Oberhof Sprint 15
## 1049 Oberhof Sprint 15
## 1050 Oberhof Sprint 15
## 1051 Oberhof Sprint 15
## 1052 Oberhof Sprint 15
## 1053 Oberhof Sprint 15
## 1054 Oberhof Sprint 15
## 1055 Oberhof Sprint 15
## 1056 Oberhof Sprint 15
## 1057 Oberhof Sprint 15
## 1058 Oberhof Sprint 15
## 1059 Oberhof Sprint 15
## 1060 Oberhof Sprint 15
## 1061 Oberhof Sprint 15
## 1062 Oberhof Sprint 15
## 1063 Oberhof Sprint 15
## 1064 Oberhof Sprint 15
## 1065 Oberhof Mass start 14
## 1066 Oberhof Mass start 14
## 1067 Oberhof Mass start 14
## 1068 Oberhof Mass start 14
## 1069 Oberhof Mass start 14
## 1070 Oberhof Mass start 14
## 1071 Oberhof Mass start 14
## 1072 Oberhof Mass start 14
## 1073 Oberhof Mass start 14
## 1074 Oberhof Mass start 14
## 1075 Oberhof Mass start 14
## 1076 Oberhof Mass start 14
## 1077 Oberhof Mass start 14
## 1078 Oberhof Mass start 14
## 1079 Oberhof Mass start 14
## 1080 Oberhof Mass start 14
## 1081 Oberhof Mass start 14
## 1082 Oberhof Mass start 14
## 1083 Oberhof Mass start 14
## 1084 Oberhof Mass start 14
## 1085 Oberhof Mass start 14
## 1086 Oberhof Mass start 14
## 1087 Oberhof Mass start 14
## 1088 Oberhof Mass start 14
## 1089 Oberhof Mass start 14
## 1090 Oberhof Mass start 14
## 1091 Oberhof Mass start 14
## 1092 Oberhof Mass start 14
## 1093 Oberhof Mass start 14
## 1094 Oestersund Sprint 18
## 1095 Oestersund Sprint 18
## 1096 Oestersund Sprint 18
## 1097 Oestersund Sprint 18
## 1098 Oestersund Sprint 18
## 1099 Oestersund Sprint 18
## 1100 Oestersund Sprint 18
## 1101 Oestersund Sprint 18
## 1102 Oestersund Sprint 18
## 1103 Oestersund Sprint 18
## 1104 Oestersund Sprint 18
## 1105 Oestersund Sprint 18
## 1106 Oestersund Sprint 18
## 1107 Oestersund Sprint 18
## 1108 Oestersund Sprint 18
## 1109 Oestersund Sprint 18
## 1110 Oestersund Sprint 18
## 1111 Oestersund Sprint 18
## 1112 Oestersund Sprint 18
## 1113 Oestersund Sprint 18
## 1114 Oestersund Sprint 18
## 1115 Oestersund Sprint 18
## 1116 Oestersund Sprint 18
## 1117 Oestersund Sprint 18
## 1118 Oestersund Sprint 18
## 1119 Oestersund Sprint 18
## 1120 Oestersund Sprint 18
## 1121 Oestersund Sprint 18
## 1122 Oestersund Sprint 18
## 1123 Oestersund Sprint 18
## 1124 Oestersund Sprint 18
## 1125 Oestersund Sprint 18
## 1126 Oestersund Sprint 18
## 1127 Oestersund Sprint 18
## 1128 Oestersund Sprint 18
## 1129 Oestersund Sprint 18
## 1130 Oestersund Sprint 18
## 1131 Oestersund Sprint 18
## 1132 Oestersund Sprint 18
## 1133 Oestersund Sprint 18
## 1134 Oestersund Sprint 18
## 1135 Oestersund Sprint 18
## 1136 Oestersund Sprint 18
## 1137 Oestersund Sprint 18
## 1138 Oestersund Sprint 18
## 1139 Oestersund Sprint 18
## 1140 Oestersund Sprint 18
## 1141 Oestersund Sprint 18
## 1142 Oestersund Sprint 18
## 1143 Oestersund Sprint 18
## 1144 Oestersund Sprint 18
## 1145 Oestersund Sprint 18
## 1146 Oestersund Sprint 18
## 1147 Oestersund Sprint 18
## 1148 Oestersund Sprint 18
## 1149 Oestersund Sprint 18
## 1150 Oestersund Sprint 18
## 1151 Oestersund Sprint 18
## 1152 Oestersund Sprint 18
## 1153 Oestersund Sprint 18
## 1154 Oestersund Sprint 18
## 1155 Oestersund Sprint 18
## 1156 Oestersund Sprint 18
## 1157 Oestersund Sprint 18
## 1158 Oestersund Sprint 18
## 1159 Oestersund Sprint 18
## 1160 Oestersund Sprint 18
## 1161 Oestersund Sprint 18
## 1162 Oestersund Sprint 18
## 1163 Oestersund Sprint 18
## 1164 Oestersund Sprint 18
## 1165 Oestersund Sprint 18
## 1166 Oestersund Sprint 18
## 1167 Oestersund Sprint 18
## 1168 Oestersund Sprint 18
## 1169 Oestersund Sprint 18
## 1170 Oestersund Sprint 18
## 1171 Oestersund Sprint 18
## 1172 Oestersund Sprint 18
## 1173 Oestersund Sprint 18
## 1174 Oestersund Sprint 18
## 1175 Oestersund Sprint 18
## 1176 Oestersund Sprint 18
## 1177 Oestersund Sprint 18
## 1178 Oestersund Sprint 18
## 1179 Oestersund Sprint 18
## 1180 Oestersund Sprint 18
## 1181 Oestersund Sprint 18
## 1182 Oestersund Sprint 18
## 1183 Oestersund Sprint 18
## 1184 Oestersund Sprint 18
## 1185 Oestersund Sprint 18
## 1186 Oestersund Sprint 18
## 1187 Oestersund Sprint 18
## 1188 Oestersund Sprint 18
## 1189 Oestersund Sprint 18
## 1190 Oestersund Sprint 18
## 1191 Oestersund Sprint 18
## 1192 Oestersund Sprint 18
## 1193 Oestersund Individual 16
## 1194 Oestersund Individual 16
## 1195 Oestersund Individual 16
## 1196 Oestersund Individual 16
## 1197 Oestersund Individual 16
## 1198 Oestersund Individual 16
## 1199 Oestersund Individual 16
## 1200 Oestersund Individual 16
## 1201 Oestersund Individual 16
## 1202 Oestersund Individual 16
## 1203 Oestersund Individual 16
## 1204 Oestersund Individual 16
## 1205 Oestersund Individual 16
## 1206 Oestersund Individual 16
## 1207 Oestersund Individual 16
## 1208 Oestersund Individual 16
## 1209 Oestersund Individual 16
## 1210 Oestersund Individual 16
## 1211 Oestersund Individual 16
## 1212 Oestersund Individual 16
## 1213 Oestersund Individual 16
## 1214 Oestersund Individual 16
## 1215 Oestersund Individual 16
## 1216 Oestersund Individual 16
## 1217 Oestersund Individual 16
## 1218 Oestersund Individual 16
## 1219 Oestersund Individual 16
## 1220 Oestersund Individual 16
## 1221 Oestersund Individual 16
## 1222 Oestersund Individual 16
## 1223 Oestersund Individual 16
## 1224 Oestersund Individual 16
## 1225 Oestersund Individual 16
## 1226 Oestersund Individual 16
## 1227 Oestersund Individual 16
## 1228 Oestersund Individual 16
## 1229 Oestersund Individual 16
## 1230 Oestersund Individual 16
## 1231 Oestersund Individual 16
## 1232 Oestersund Individual 16
## 1233 Oestersund Individual 16
## 1234 Oestersund Individual 16
## 1235 Oestersund Individual 16
## 1236 Oestersund Individual 16
## 1237 Oestersund Individual 16
## 1238 Oestersund Individual 16
## 1239 Oestersund Individual 16
## 1240 Oestersund Individual 16
## 1241 Oestersund Individual 16
## 1242 Oestersund Individual 16
## 1243 Oestersund Individual 16
## 1244 Oestersund Individual 16
## 1245 Oestersund Individual 16
## 1246 Oestersund Individual 16
## 1247 Oestersund Individual 16
## 1248 Oestersund Individual 16
## 1249 Oestersund Individual 16
## 1250 Oestersund Individual 16
## 1251 Oestersund Individual 16
## 1252 Oestersund Individual 16
## 1253 Oestersund Individual 16
## 1254 Oestersund Individual 16
## 1255 Oestersund Individual 16
## 1256 Oestersund Individual 16
## 1257 Oestersund Individual 16
## 1258 Oestersund Individual 16
## 1259 Oestersund Individual 16
## 1260 Oestersund Individual 16
## 1261 Oestersund Individual 16
## 1262 Oestersund Individual 16
## 1263 Oestersund Individual 16
## 1264 Oestersund Individual 16
## 1265 Oestersund Individual 16
## 1266 Oestersund Individual 16
## 1267 Oestersund Individual 16
## 1268 Oestersund Individual 16
## 1269 Oestersund Individual 16
## 1270 Oestersund Individual 16
## 1271 Oestersund Individual 16
## 1272 Oestersund Individual 16
## 1273 Oestersund Individual 16
## 1274 Oestersund Individual 16
## 1275 Oestersund Individual 16
## 1276 Oestersund Individual 16
## 1277 Oestersund Individual 16
## 1278 Oestersund Individual 16
## 1279 Oestersund Individual 16
## 1280 Oestersund Individual 16
## 1281 Oestersund Individual 16
## 1282 Oestersund Individual 16
## 1283 Oestersund Individual 16
## 1284 Oestersund Individual 16
## 1285 Oestersund Individual 16
## 1286 Oestersund Individual 16
## 1287 Oestersund Individual 16
## 1288 Oestersund Individual 16
## 1289 Oestersund Individual 16
## 1290 Oestersund Individual 16
## 1291 Oestersund Individual 16
## 1292 Oestersund Pursuit 17
## 1293 Oestersund Pursuit 17
## 1294 Oestersund Pursuit 17
## 1295 Oestersund Pursuit 17
## 1296 Oestersund Pursuit 17
## 1297 Oestersund Pursuit 17
## 1298 Oestersund Pursuit 17
## 1299 Oestersund Pursuit 17
## 1300 Oestersund Pursuit 17
## 1301 Oestersund Pursuit 17
## 1302 Oestersund Pursuit 17
## 1303 Oestersund Pursuit 17
## 1304 Oestersund Pursuit 17
## 1305 Oestersund Pursuit 17
## 1306 Oestersund Pursuit 17
## 1307 Oestersund Pursuit 17
## 1308 Oestersund Pursuit 17
## 1309 Oestersund Pursuit 17
## 1310 Oestersund Pursuit 17
## 1311 Oestersund Pursuit 17
## 1312 Oestersund Pursuit 17
## 1313 Oestersund Pursuit 17
## 1314 Oestersund Pursuit 17
## 1315 Oestersund Pursuit 17
## 1316 Oestersund Pursuit 17
## 1317 Oestersund Pursuit 17
## 1318 Oestersund Pursuit 17
## 1319 Oestersund Pursuit 17
## 1320 Oestersund Pursuit 17
## 1321 Oestersund Pursuit 17
## 1322 Oestersund Pursuit 17
## 1323 Oestersund Pursuit 17
## 1324 Oestersund Pursuit 17
## 1325 Oestersund Pursuit 17
## 1326 Oestersund Pursuit 17
## 1327 Oestersund Pursuit 17
## 1328 Oestersund Pursuit 17
## 1329 Oestersund Pursuit 17
## 1330 Oestersund Pursuit 17
## 1331 Oestersund Pursuit 17
## 1332 Oestersund Pursuit 17
## 1333 Oestersund Pursuit 17
## 1334 Oestersund Pursuit 17
## 1335 Oestersund Pursuit 17
## 1336 Oestersund Pursuit 17
## 1337 Oestersund Pursuit 17
## 1338 Oestersund Pursuit 17
## 1339 Oestersund Pursuit 17
## 1340 Oestersund Pursuit 17
## 1341 Oestersund Pursuit 17
## 1342 Oestersund Pursuit 17
## 1343 Oestersund Pursuit 17
## 1344 Oestersund Pursuit 17
## 1345 Oestersund Pursuit 17
## 1346 Oestersund Pursuit 17
## 1347 Oestersund Pursuit 17
## 1348 Oestersund Pursuit 17
## 1349 Oestersund Pursuit 17
## 1350 Oestersund Pursuit 17
## 1351 Oslo_Holmenkollen Sprint 20
## 1352 Oslo_Holmenkollen Sprint 20
## 1353 Oslo_Holmenkollen Sprint 20
## 1354 Oslo_Holmenkollen Sprint 20
## 1355 Oslo_Holmenkollen Sprint 20
## 1356 Oslo_Holmenkollen Sprint 20
## 1357 Oslo_Holmenkollen Sprint 20
## 1358 Oslo_Holmenkollen Sprint 20
## 1359 Oslo_Holmenkollen Sprint 20
## 1360 Oslo_Holmenkollen Sprint 20
## 1361 Oslo_Holmenkollen Sprint 20
## 1362 Oslo_Holmenkollen Sprint 20
## 1363 Oslo_Holmenkollen Sprint 20
## 1364 Oslo_Holmenkollen Sprint 20
## 1365 Oslo_Holmenkollen Sprint 20
## 1366 Oslo_Holmenkollen Sprint 20
## 1367 Oslo_Holmenkollen Sprint 20
## 1368 Oslo_Holmenkollen Sprint 20
## 1369 Oslo_Holmenkollen Sprint 20
## 1370 Oslo_Holmenkollen Sprint 20
## 1371 Oslo_Holmenkollen Sprint 20
## 1372 Oslo_Holmenkollen Sprint 20
## 1373 Oslo_Holmenkollen Sprint 20
## 1374 Oslo_Holmenkollen Sprint 20
## 1375 Oslo_Holmenkollen Sprint 20
## 1376 Oslo_Holmenkollen Sprint 20
## 1377 Oslo_Holmenkollen Sprint 20
## 1378 Oslo_Holmenkollen Sprint 20
## 1379 Oslo_Holmenkollen Sprint 20
## 1380 Oslo_Holmenkollen Sprint 20
## 1381 Oslo_Holmenkollen Sprint 20
## 1382 Oslo_Holmenkollen Sprint 20
## 1383 Oslo_Holmenkollen Sprint 20
## 1384 Oslo_Holmenkollen Sprint 20
## 1385 Oslo_Holmenkollen Sprint 20
## 1386 Oslo_Holmenkollen Sprint 20
## 1387 Oslo_Holmenkollen Sprint 20
## 1388 Oslo_Holmenkollen Sprint 20
## 1389 Oslo_Holmenkollen Sprint 20
## 1390 Oslo_Holmenkollen Sprint 20
## 1391 Oslo_Holmenkollen Sprint 20
## 1392 Oslo_Holmenkollen Sprint 20
## 1393 Oslo_Holmenkollen Sprint 20
## 1394 Oslo_Holmenkollen Sprint 20
## 1395 Oslo_Holmenkollen Sprint 20
## 1396 Oslo_Holmenkollen Sprint 20
## 1397 Oslo_Holmenkollen Sprint 20
## 1398 Oslo_Holmenkollen Sprint 20
## 1399 Oslo_Holmenkollen Sprint 20
## 1400 Oslo_Holmenkollen Sprint 20
## 1401 Oslo_Holmenkollen Sprint 20
## 1402 Oslo_Holmenkollen Sprint 20
## 1403 Oslo_Holmenkollen Sprint 20
## 1404 Oslo_Holmenkollen Sprint 20
## 1405 Oslo_Holmenkollen Sprint 20
## 1406 Oslo_Holmenkollen Sprint 20
## 1407 Oslo_Holmenkollen Sprint 20
## 1408 Oslo_Holmenkollen Sprint 20
## 1409 Oslo_Holmenkollen Sprint 20
## 1410 Oslo_Holmenkollen Sprint 20
## 1411 Oslo_Holmenkollen Sprint 20
## 1412 Oslo_Holmenkollen Sprint 20
## 1413 Oslo_Holmenkollen Sprint 20
## 1414 Oslo_Holmenkollen Sprint 20
## 1415 Oslo_Holmenkollen Sprint 20
## 1416 Oslo_Holmenkollen Sprint 20
## 1417 Oslo_Holmenkollen Sprint 20
## 1418 Oslo_Holmenkollen Sprint 20
## 1419 Oslo_Holmenkollen Sprint 20
## 1420 Oslo_Holmenkollen Sprint 20
## 1421 Oslo_Holmenkollen Sprint 20
## 1422 Oslo_Holmenkollen Sprint 20
## 1423 Oslo_Holmenkollen Sprint 20
## 1424 Oslo_Holmenkollen Sprint 20
## 1425 Oslo_Holmenkollen Sprint 20
## 1426 Oslo_Holmenkollen Sprint 20
## 1427 Oslo_Holmenkollen Sprint 20
## 1428 Oslo_Holmenkollen Sprint 20
## 1429 Oslo_Holmenkollen Sprint 20
## 1430 Oslo_Holmenkollen Sprint 20
## 1431 Oslo_Holmenkollen Sprint 20
## 1432 Oslo_Holmenkollen Sprint 20
## 1433 Oslo_Holmenkollen Sprint 20
## 1434 Oslo_Holmenkollen Sprint 20
## 1435 Oslo_Holmenkollen Sprint 20
## 1436 Oslo_Holmenkollen Sprint 20
## 1437 Oslo_Holmenkollen Sprint 20
## 1438 Oslo_Holmenkollen Sprint 20
## 1439 Oslo_Holmenkollen Sprint 20
## 1440 Oslo_Holmenkollen Sprint 20
## 1441 Oslo_Holmenkollen Sprint 20
## 1442 Oslo_Holmenkollen Sprint 20
## 1443 Oslo_Holmenkollen Sprint 20
## 1444 Oslo_Holmenkollen Sprint 20
## 1445 Oslo_Holmenkollen Sprint 20
## 1446 Oslo_Holmenkollen Sprint 20
## 1447 Oslo_Holmenkollen Sprint 20
## 1448 Oslo_Holmenkollen Individual 19
## 1449 Oslo_Holmenkollen Individual 19
## 1450 Oslo_Holmenkollen Individual 19
## 1451 Oslo_Holmenkollen Individual 19
## 1452 Oslo_Holmenkollen Individual 19
## 1453 Oslo_Holmenkollen Individual 19
## 1454 Oslo_Holmenkollen Individual 19
## 1455 Oslo_Holmenkollen Individual 19
## 1456 Oslo_Holmenkollen Individual 19
## 1457 Oslo_Holmenkollen Individual 19
## 1458 Oslo_Holmenkollen Individual 19
## 1459 Oslo_Holmenkollen Individual 19
## 1460 Oslo_Holmenkollen Individual 19
## 1461 Oslo_Holmenkollen Individual 19
## 1462 Oslo_Holmenkollen Individual 19
## 1463 Oslo_Holmenkollen Individual 19
## 1464 Oslo_Holmenkollen Individual 19
## 1465 Oslo_Holmenkollen Individual 19
## 1466 Oslo_Holmenkollen Individual 19
## 1467 Oslo_Holmenkollen Individual 19
## 1468 Oslo_Holmenkollen Individual 19
## 1469 Oslo_Holmenkollen Individual 19
## 1470 Oslo_Holmenkollen Individual 19
## 1471 Oslo_Holmenkollen Individual 19
## 1472 Oslo_Holmenkollen Individual 19
## 1473 Oslo_Holmenkollen Individual 19
## 1474 Oslo_Holmenkollen Individual 19
## 1475 Oslo_Holmenkollen Individual 19
## 1476 Oslo_Holmenkollen Individual 19
## 1477 Oslo_Holmenkollen Individual 19
## 1478 Oslo_Holmenkollen Individual 19
## 1479 Oslo_Holmenkollen Individual 19
## 1480 Oslo_Holmenkollen Individual 19
## 1481 Oslo_Holmenkollen Individual 19
## 1482 Oslo_Holmenkollen Individual 19
## 1483 Oslo_Holmenkollen Individual 19
## 1484 Oslo_Holmenkollen Individual 19
## 1485 Oslo_Holmenkollen Individual 19
## 1486 Oslo_Holmenkollen Individual 19
## 1487 Oslo_Holmenkollen Individual 19
## 1488 Oslo_Holmenkollen Individual 19
## 1489 Oslo_Holmenkollen Individual 19
## 1490 Oslo_Holmenkollen Individual 19
## 1491 Oslo_Holmenkollen Individual 19
## 1492 Oslo_Holmenkollen Individual 19
## 1493 Oslo_Holmenkollen Individual 19
## 1494 Oslo_Holmenkollen Individual 19
## 1495 Oslo_Holmenkollen Individual 19
## 1496 Oslo_Holmenkollen Individual 19
## 1497 Oslo_Holmenkollen Individual 19
## 1498 Oslo_Holmenkollen Individual 19
## 1499 Oslo_Holmenkollen Individual 19
## 1500 Oslo_Holmenkollen Individual 19
## 1501 Oslo_Holmenkollen Individual 19
## 1502 Oslo_Holmenkollen Individual 19
## 1503 Oslo_Holmenkollen Individual 19
## 1504 Oslo_Holmenkollen Individual 19
## 1505 Oslo_Holmenkollen Individual 19
## 1506 Oslo_Holmenkollen Individual 19
## 1507 Oslo_Holmenkollen Individual 19
## 1508 Oslo_Holmenkollen Individual 19
## 1509 Oslo_Holmenkollen Individual 19
## 1510 Oslo_Holmenkollen Individual 19
## 1511 Oslo_Holmenkollen Individual 19
## 1512 Oslo_Holmenkollen Individual 19
## 1513 Oslo_Holmenkollen Individual 19
## 1514 Oslo_Holmenkollen Individual 19
## 1515 Oslo_Holmenkollen Individual 19
## 1516 Oslo_Holmenkollen Individual 19
## 1517 Oslo_Holmenkollen Individual 19
## 1518 Oslo_Holmenkollen Individual 19
## 1519 Oslo_Holmenkollen Individual 19
## 1520 Oslo_Holmenkollen Individual 19
## 1521 Oslo_Holmenkollen Individual 19
## 1522 Oslo_Holmenkollen Individual 19
## 1523 Oslo_Holmenkollen Individual 19
## 1524 Oslo_Holmenkollen Individual 19
## 1525 Oslo_Holmenkollen Individual 19
## 1526 Oslo_Holmenkollen Individual 19
## 1527 Oslo_Holmenkollen Individual 19
## 1528 Oslo_Holmenkollen Individual 19
## 1529 Oslo_Holmenkollen Individual 19
## 1530 Oslo_Holmenkollen Individual 19
## 1531 Oslo_Holmenkollen Individual 19
## 1532 Oslo_Holmenkollen Individual 19
## 1533 Oslo_Holmenkollen Individual 19
## 1534 Oslo_Holmenkollen Individual 19
## 1535 Oslo_Holmenkollen Individual 19
## 1536 Oslo_Holmenkollen Individual 19
## 1537 Oslo_Holmenkollen Individual 19
## 1538 Oslo_Holmenkollen Individual 19
## 1539 Oslo_Holmenkollen Individual 19
## 1540 Oslo_Holmenkollen Individual 19
## 1541 Oslo_Holmenkollen Individual 19
## 1542 Pokljuka Sprint 23
## 1543 Pokljuka Sprint 23
## 1544 Pokljuka Sprint 23
## 1545 Pokljuka Sprint 23
## 1546 Pokljuka Sprint 23
## 1547 Pokljuka Sprint 23
## 1548 Pokljuka Sprint 23
## 1549 Pokljuka Sprint 23
## 1550 Pokljuka Sprint 23
## 1551 Pokljuka Sprint 23
## 1552 Pokljuka Sprint 23
## 1553 Pokljuka Sprint 23
## 1554 Pokljuka Sprint 23
## 1555 Pokljuka Sprint 23
## 1556 Pokljuka Sprint 23
## 1557 Pokljuka Sprint 23
## 1558 Pokljuka Sprint 23
## 1559 Pokljuka Sprint 23
## 1560 Pokljuka Sprint 23
## 1561 Pokljuka Sprint 23
## 1562 Pokljuka Sprint 23
## 1563 Pokljuka Sprint 23
## 1564 Pokljuka Sprint 23
## 1565 Pokljuka Sprint 23
## 1566 Pokljuka Sprint 23
## 1567 Pokljuka Sprint 23
## 1568 Pokljuka Sprint 23
## 1569 Pokljuka Sprint 23
## 1570 Pokljuka Sprint 23
## 1571 Pokljuka Sprint 23
## 1572 Pokljuka Sprint 23
## 1573 Pokljuka Sprint 23
## 1574 Pokljuka Sprint 23
## 1575 Pokljuka Sprint 23
## 1576 Pokljuka Sprint 23
## 1577 Pokljuka Sprint 23
## 1578 Pokljuka Sprint 23
## 1579 Pokljuka Sprint 23
## 1580 Pokljuka Sprint 23
## 1581 Pokljuka Sprint 23
## 1582 Pokljuka Sprint 23
## 1583 Pokljuka Sprint 23
## 1584 Pokljuka Sprint 23
## 1585 Pokljuka Sprint 23
## 1586 Pokljuka Sprint 23
## 1587 Pokljuka Sprint 23
## 1588 Pokljuka Sprint 23
## 1589 Pokljuka Sprint 23
## 1590 Pokljuka Sprint 23
## 1591 Pokljuka Sprint 23
## 1592 Pokljuka Sprint 23
## 1593 Pokljuka Sprint 23
## 1594 Pokljuka Sprint 23
## 1595 Pokljuka Sprint 23
## 1596 Pokljuka Sprint 23
## 1597 Pokljuka Sprint 23
## 1598 Pokljuka Sprint 23
## 1599 Pokljuka Sprint 23
## 1600 Pokljuka Sprint 23
## 1601 Pokljuka Sprint 23
## 1602 Pokljuka Sprint 23
## 1603 Pokljuka Sprint 23
## 1604 Pokljuka Sprint 23
## 1605 Pokljuka Sprint 23
## 1606 Pokljuka Sprint 23
## 1607 Pokljuka Sprint 23
## 1608 Pokljuka Sprint 23
## 1609 Pokljuka Sprint 23
## 1610 Pokljuka Sprint 23
## 1611 Pokljuka Sprint 23
## 1612 Pokljuka Sprint 23
## 1613 Pokljuka Sprint 23
## 1614 Pokljuka Sprint 23
## 1615 Pokljuka Sprint 23
## 1616 Pokljuka Sprint 23
## 1617 Pokljuka Sprint 23
## 1618 Pokljuka Sprint 23
## 1619 Pokljuka Sprint 23
## 1620 Pokljuka Sprint 23
## 1621 Pokljuka Sprint 23
## 1622 Pokljuka Sprint 23
## 1623 Pokljuka Sprint 23
## 1624 Pokljuka Sprint 23
## 1625 Pokljuka Sprint 23
## 1626 Pokljuka Sprint 23
## 1627 Pokljuka Sprint 23
## 1628 Pokljuka Sprint 23
## 1629 Pokljuka Sprint 23
## 1630 Pokljuka Sprint 23
## 1631 Pokljuka Sprint 23
## 1632 Pokljuka Sprint 23
## 1633 Pokljuka Sprint 23
## 1634 Pokljuka Sprint 23
## 1635 Pokljuka Sprint 23
## 1636 Pokljuka Sprint 23
## 1637 Pokljuka Sprint 23
## 1638 Pokljuka Sprint 23
## 1639 Pokljuka Sprint 23
## 1640 Pokljuka Sprint 23
## 1641 Pokljuka Sprint 23
## 1642 Pokljuka Sprint 23
## 1643 Pokljuka Sprint 23
## 1644 Pokljuka Mass start 21
## 1645 Pokljuka Mass start 21
## 1646 Pokljuka Mass start 21
## 1647 Pokljuka Mass start 21
## 1648 Pokljuka Mass start 21
## 1649 Pokljuka Mass start 21
## 1650 Pokljuka Mass start 21
## 1651 Pokljuka Mass start 21
## 1652 Pokljuka Mass start 21
## 1653 Pokljuka Mass start 21
## 1654 Pokljuka Mass start 21
## 1655 Pokljuka Mass start 21
## 1656 Pokljuka Mass start 21
## 1657 Pokljuka Mass start 21
## 1658 Pokljuka Mass start 21
## 1659 Pokljuka Mass start 21
## 1660 Pokljuka Mass start 21
## 1661 Pokljuka Mass start 21
## 1662 Pokljuka Mass start 21
## 1663 Pokljuka Mass start 21
## 1664 Pokljuka Mass start 21
## 1665 Pokljuka Mass start 21
## 1666 Pokljuka Mass start 21
## 1667 Pokljuka Mass start 21
## 1668 Pokljuka Mass start 21
## 1669 Pokljuka Mass start 21
## 1670 Pokljuka Mass start 21
## 1671 Pokljuka Mass start 21
## 1672 Pokljuka Mass start 21
## 1673 Pokljuka Mass start 21
## 1674 Pokljuka Pursuit 22
## 1675 Pokljuka Pursuit 22
## 1676 Pokljuka Pursuit 22
## 1677 Pokljuka Pursuit 22
## 1678 Pokljuka Pursuit 22
## 1679 Pokljuka Pursuit 22
## 1680 Pokljuka Pursuit 22
## 1681 Pokljuka Pursuit 22
## 1682 Pokljuka Pursuit 22
## 1683 Pokljuka Pursuit 22
## 1684 Pokljuka Pursuit 22
## 1685 Pokljuka Pursuit 22
## 1686 Pokljuka Pursuit 22
## 1687 Pokljuka Pursuit 22
## 1688 Pokljuka Pursuit 22
## 1689 Pokljuka Pursuit 22
## 1690 Pokljuka Pursuit 22
## 1691 Pokljuka Pursuit 22
## 1692 Pokljuka Pursuit 22
## 1693 Pokljuka Pursuit 22
## 1694 Pokljuka Pursuit 22
## 1695 Pokljuka Pursuit 22
## 1696 Pokljuka Pursuit 22
## 1697 Pokljuka Pursuit 22
## 1698 Pokljuka Pursuit 22
## 1699 Pokljuka Pursuit 22
## 1700 Pokljuka Pursuit 22
## 1701 Pokljuka Pursuit 22
## 1702 Pokljuka Pursuit 22
## 1703 Pokljuka Pursuit 22
## 1704 Pokljuka Pursuit 22
## 1705 Pokljuka Pursuit 22
## 1706 Pokljuka Pursuit 22
## 1707 Pokljuka Pursuit 22
## 1708 Pokljuka Pursuit 22
## 1709 Pokljuka Pursuit 22
## 1710 Pokljuka Pursuit 22
## 1711 Pokljuka Pursuit 22
## 1712 Pokljuka Pursuit 22
## 1713 Pokljuka Pursuit 22
## 1714 Pokljuka Pursuit 22
## 1715 Pokljuka Pursuit 22
## 1716 Pokljuka Pursuit 22
## 1717 Pokljuka Pursuit 22
## 1718 Pokljuka Pursuit 22
## 1719 Pokljuka Pursuit 22
## 1720 Pokljuka Pursuit 22
## 1721 Pokljuka Pursuit 22
## 1722 Pokljuka Pursuit 22
## 1723 Pokljuka Pursuit 22
## 1724 Pokljuka Pursuit 22
## 1725 Pokljuka Pursuit 22
## 1726 Pokljuka Pursuit 22
## 1727 Pokljuka Pursuit 22
## 1728 Pokljuka Pursuit 22
## 1729 Pokljuka Pursuit 22
## 1730 Pokljuka Pursuit 22
## 1731 Pokljuka Pursuit 22
## 1732 Pokljuka Pursuit 22
## 1733 Ruhpolding Sprint 25
## 1734 Ruhpolding Sprint 25
## 1735 Ruhpolding Sprint 25
## 1736 Ruhpolding Sprint 25
## 1737 Ruhpolding Sprint 25
## 1738 Ruhpolding Sprint 25
## 1739 Ruhpolding Sprint 25
## 1740 Ruhpolding Sprint 25
## 1741 Ruhpolding Sprint 25
## 1742 Ruhpolding Sprint 25
## 1743 Ruhpolding Sprint 25
## 1744 Ruhpolding Sprint 25
## 1745 Ruhpolding Sprint 25
## 1746 Ruhpolding Sprint 25
## 1747 Ruhpolding Sprint 25
## 1748 Ruhpolding Sprint 25
## 1749 Ruhpolding Sprint 25
## 1750 Ruhpolding Sprint 25
## 1751 Ruhpolding Sprint 25
## 1752 Ruhpolding Sprint 25
## 1753 Ruhpolding Sprint 25
## 1754 Ruhpolding Sprint 25
## 1755 Ruhpolding Sprint 25
## 1756 Ruhpolding Sprint 25
## 1757 Ruhpolding Sprint 25
## 1758 Ruhpolding Sprint 25
## 1759 Ruhpolding Sprint 25
## 1760 Ruhpolding Sprint 25
## 1761 Ruhpolding Sprint 25
## 1762 Ruhpolding Sprint 25
## 1763 Ruhpolding Sprint 25
## 1764 Ruhpolding Sprint 25
## 1765 Ruhpolding Sprint 25
## 1766 Ruhpolding Sprint 25
## 1767 Ruhpolding Sprint 25
## 1768 Ruhpolding Sprint 25
## 1769 Ruhpolding Sprint 25
## 1770 Ruhpolding Sprint 25
## 1771 Ruhpolding Sprint 25
## 1772 Ruhpolding Sprint 25
## 1773 Ruhpolding Sprint 25
## 1774 Ruhpolding Sprint 25
## 1775 Ruhpolding Sprint 25
## 1776 Ruhpolding Sprint 25
## 1777 Ruhpolding Sprint 25
## 1778 Ruhpolding Sprint 25
## 1779 Ruhpolding Sprint 25
## 1780 Ruhpolding Sprint 25
## 1781 Ruhpolding Sprint 25
## 1782 Ruhpolding Sprint 25
## 1783 Ruhpolding Sprint 25
## 1784 Ruhpolding Sprint 25
## 1785 Ruhpolding Sprint 25
## 1786 Ruhpolding Sprint 25
## 1787 Ruhpolding Sprint 25
## 1788 Ruhpolding Sprint 25
## 1789 Ruhpolding Sprint 25
## 1790 Ruhpolding Sprint 25
## 1791 Ruhpolding Sprint 25
## 1792 Ruhpolding Sprint 25
## 1793 Ruhpolding Sprint 25
## 1794 Ruhpolding Sprint 25
## 1795 Ruhpolding Sprint 25
## 1796 Ruhpolding Sprint 25
## 1797 Ruhpolding Sprint 25
## 1798 Ruhpolding Sprint 25
## 1799 Ruhpolding Sprint 25
## 1800 Ruhpolding Sprint 25
## 1801 Ruhpolding Sprint 25
## 1802 Ruhpolding Sprint 25
## 1803 Ruhpolding Sprint 25
## 1804 Ruhpolding Sprint 25
## 1805 Ruhpolding Sprint 25
## 1806 Ruhpolding Sprint 25
## 1807 Ruhpolding Sprint 25
## 1808 Ruhpolding Sprint 25
## 1809 Ruhpolding Sprint 25
## 1810 Ruhpolding Sprint 25
## 1811 Ruhpolding Sprint 25
## 1812 Ruhpolding Sprint 25
## 1813 Ruhpolding Sprint 25
## 1814 Ruhpolding Sprint 25
## 1815 Ruhpolding Sprint 25
## 1816 Ruhpolding Sprint 25
## 1817 Ruhpolding Sprint 25
## 1818 Ruhpolding Sprint 25
## 1819 Ruhpolding Sprint 25
## 1820 Ruhpolding Sprint 25
## 1821 Ruhpolding Sprint 25
## 1822 Ruhpolding Sprint 25
## 1823 Ruhpolding Sprint 25
## 1824 Ruhpolding Sprint 25
## 1825 Ruhpolding Sprint 25
## 1826 Ruhpolding Sprint 25
## 1827 Ruhpolding Sprint 25
## 1828 Ruhpolding Sprint 25
## 1829 Ruhpolding Sprint 25
## 1830 Ruhpolding Sprint 25
## 1831 Ruhpolding Sprint 25
## 1832 Ruhpolding Mass start 24
## 1833 Ruhpolding Mass start 24
## 1834 Ruhpolding Mass start 24
## 1835 Ruhpolding Mass start 24
## 1836 Ruhpolding Mass start 24
## 1837 Ruhpolding Mass start 24
## 1838 Ruhpolding Mass start 24
## 1839 Ruhpolding Mass start 24
## 1840 Ruhpolding Mass start 24
## 1841 Ruhpolding Mass start 24
## 1842 Ruhpolding Mass start 24
## 1843 Ruhpolding Mass start 24
## 1844 Ruhpolding Mass start 24
## 1845 Ruhpolding Mass start 24
## 1846 Ruhpolding Mass start 24
## 1847 Ruhpolding Mass start 24
## 1848 Ruhpolding Mass start 24
## 1849 Ruhpolding Mass start 24
## 1850 Ruhpolding Mass start 24
## 1851 Ruhpolding Mass start 24
## 1852 Ruhpolding Mass start 24
## 1853 Ruhpolding Mass start 24
## 1854 Ruhpolding Mass start 24
## 1855 Ruhpolding Mass start 24
## 1856 Ruhpolding Mass start 24
## 1857 Ruhpolding Mass start 24
## 1858 Ruhpolding Mass start 24
## 1859 Ruhpolding Mass start 24
## 1860 Ruhpolding Mass start 24
## 1861 Ruhpolding Mass start 24
## 1862 Anterselva Sprint 27
## 1863 Anterselva Sprint 27
## 1864 Anterselva Sprint 27
## 1865 Anterselva Sprint 27
## 1866 Anterselva Sprint 27
## 1867 Anterselva Sprint 27
## 1868 Anterselva Sprint 27
## 1869 Anterselva Sprint 27
## 1870 Anterselva Sprint 27
## 1871 Anterselva Sprint 27
## 1872 Anterselva Sprint 27
## 1873 Anterselva Sprint 27
## 1874 Anterselva Sprint 27
## 1875 Anterselva Sprint 27
## 1876 Anterselva Sprint 27
## 1877 Anterselva Sprint 27
## 1878 Anterselva Sprint 27
## 1879 Anterselva Sprint 27
## 1880 Anterselva Sprint 27
## 1881 Anterselva Sprint 27
## 1882 Anterselva Sprint 27
## 1883 Anterselva Sprint 27
## 1884 Anterselva Sprint 27
## 1885 Anterselva Sprint 27
## 1886 Anterselva Sprint 27
## 1887 Anterselva Sprint 27
## 1888 Anterselva Sprint 27
## 1889 Anterselva Sprint 27
## 1890 Anterselva Sprint 27
## 1891 Anterselva Sprint 27
## 1892 Anterselva Sprint 27
## 1893 Anterselva Sprint 27
## 1894 Anterselva Sprint 27
## 1895 Anterselva Sprint 27
## 1896 Anterselva Sprint 27
## 1897 Anterselva Sprint 27
## 1898 Anterselva Sprint 27
## 1899 Anterselva Sprint 27
## 1900 Anterselva Sprint 27
## 1901 Anterselva Sprint 27
## 1902 Anterselva Sprint 27
## 1903 Anterselva Sprint 27
## 1904 Anterselva Sprint 27
## 1905 Anterselva Sprint 27
## 1906 Anterselva Sprint 27
## 1907 Anterselva Sprint 27
## 1908 Anterselva Sprint 27
## 1909 Anterselva Sprint 27
## 1910 Anterselva Sprint 27
## 1911 Anterselva Sprint 27
## 1912 Anterselva Sprint 27
## 1913 Anterselva Sprint 27
## 1914 Anterselva Sprint 27
## 1915 Anterselva Sprint 27
## 1916 Anterselva Sprint 27
## 1917 Anterselva Sprint 27
## 1918 Anterselva Sprint 27
## 1919 Anterselva Sprint 27
## 1920 Anterselva Sprint 27
## 1921 Anterselva Sprint 27
## 1922 Anterselva Sprint 27
## 1923 Anterselva Sprint 27
## 1924 Anterselva Sprint 27
## 1925 Anterselva Sprint 27
## 1926 Anterselva Sprint 27
## 1927 Anterselva Sprint 27
## 1928 Anterselva Sprint 27
## 1929 Anterselva Sprint 27
## 1930 Anterselva Sprint 27
## 1931 Anterselva Sprint 27
## 1932 Anterselva Sprint 27
## 1933 Anterselva Sprint 27
## 1934 Anterselva Sprint 27
## 1935 Anterselva Sprint 27
## 1936 Anterselva Sprint 27
## 1937 Anterselva Sprint 27
## 1938 Anterselva Sprint 27
## 1939 Anterselva Sprint 27
## 1940 Anterselva Sprint 27
## 1941 Anterselva Sprint 27
## 1942 Anterselva Sprint 27
## 1943 Anterselva Sprint 27
## 1944 Anterselva Sprint 27
## 1945 Anterselva Sprint 27
## 1946 Anterselva Sprint 27
## 1947 Anterselva Sprint 27
## 1948 Anterselva Sprint 27
## 1949 Anterselva Sprint 27
## 1950 Anterselva Sprint 27
## 1951 Anterselva Sprint 27
## 1952 Anterselva Sprint 27
## 1953 Anterselva Sprint 27
## 1954 Anterselva Sprint 27
## 1955 Anterselva Sprint 27
## 1956 Anterselva Sprint 27
## 1957 Anterselva Sprint 27
## 1958 Anterselva Sprint 27
## 1959 Anterselva Sprint 27
## 1960 Anterselva Sprint 27
## 1961 Anterselva Sprint 27
## 1962 Anterselva Sprint 27
## 1963 Anterselva Sprint 27
## 1964 Anterselva Sprint 27
## 1965 Anterselva Sprint 27
## 1966 Anterselva Sprint 27
## 1967 Anterselva Sprint 27
## 1968 Anterselva Pursuit 26
## 1969 Anterselva Pursuit 26
## 1970 Anterselva Pursuit 26
## 1971 Anterselva Pursuit 26
## 1972 Anterselva Pursuit 26
## 1973 Anterselva Pursuit 26
## 1974 Anterselva Pursuit 26
## 1975 Anterselva Pursuit 26
## 1976 Anterselva Pursuit 26
## 1977 Anterselva Pursuit 26
## 1978 Anterselva Pursuit 26
## 1979 Anterselva Pursuit 26
## 1980 Anterselva Pursuit 26
## 1981 Anterselva Pursuit 26
## 1982 Anterselva Pursuit 26
## 1983 Anterselva Pursuit 26
## 1984 Anterselva Pursuit 26
## 1985 Anterselva Pursuit 26
## 1986 Anterselva Pursuit 26
## 1987 Anterselva Pursuit 26
## 1988 Anterselva Pursuit 26
## 1989 Anterselva Pursuit 26
## 1990 Anterselva Pursuit 26
## 1991 Anterselva Pursuit 26
## 1992 Anterselva Pursuit 26
## 1993 Anterselva Pursuit 26
## 1994 Anterselva Pursuit 26
## 1995 Anterselva Pursuit 26
## 1996 Anterselva Pursuit 26
## 1997 Anterselva Pursuit 26
## 1998 Anterselva Pursuit 26
## 1999 Anterselva Pursuit 26
## 2000 Anterselva Pursuit 26
## 2001 Anterselva Pursuit 26
## 2002 Anterselva Pursuit 26
## 2003 Anterselva Pursuit 26
## 2004 Anterselva Pursuit 26
## 2005 Anterselva Pursuit 26
## 2006 Anterselva Pursuit 26
## 2007 Anterselva Pursuit 26
## 2008 Anterselva Pursuit 26
## 2009 Anterselva Pursuit 26
## 2010 Anterselva Pursuit 26
## 2011 Anterselva Pursuit 26
## 2012 Anterselva Pursuit 26
## 2013 Anterselva Pursuit 26
## 2014 Anterselva Pursuit 26
## 2015 Anterselva Pursuit 26
## 2016 Anterselva Pursuit 26
## 2017 Anterselva Pursuit 26
## 2018 Anterselva Pursuit 26
## 2019 Anterselva Pursuit 26
## 2020 Canmore Sprint 29
## 2021 Canmore Sprint 29
## 2022 Canmore Sprint 29
## 2023 Canmore Sprint 29
## 2024 Canmore Sprint 29
## 2025 Canmore Sprint 29
## 2026 Canmore Sprint 29
## 2027 Canmore Sprint 29
## 2028 Canmore Sprint 29
## 2029 Canmore Sprint 29
## 2030 Canmore Sprint 29
## 2031 Canmore Sprint 29
## 2032 Canmore Sprint 29
## 2033 Canmore Sprint 29
## 2034 Canmore Sprint 29
## 2035 Canmore Sprint 29
## 2036 Canmore Sprint 29
## 2037 Canmore Sprint 29
## 2038 Canmore Sprint 29
## 2039 Canmore Sprint 29
## 2040 Canmore Sprint 29
## 2041 Canmore Sprint 29
## 2042 Canmore Sprint 29
## 2043 Canmore Sprint 29
## 2044 Canmore Sprint 29
## 2045 Canmore Sprint 29
## 2046 Canmore Sprint 29
## 2047 Canmore Sprint 29
## 2048 Canmore Sprint 29
## 2049 Canmore Sprint 29
## 2050 Canmore Sprint 29
## 2051 Canmore Sprint 29
## 2052 Canmore Sprint 29
## 2053 Canmore Sprint 29
## 2054 Canmore Sprint 29
## 2055 Canmore Sprint 29
## 2056 Canmore Sprint 29
## 2057 Canmore Sprint 29
## 2058 Canmore Sprint 29
## 2059 Canmore Sprint 29
## 2060 Canmore Sprint 29
## 2061 Canmore Sprint 29
## 2062 Canmore Sprint 29
## 2063 Canmore Sprint 29
## 2064 Canmore Sprint 29
## 2065 Canmore Sprint 29
## 2066 Canmore Sprint 29
## 2067 Canmore Sprint 29
## 2068 Canmore Sprint 29
## 2069 Canmore Sprint 29
## 2070 Canmore Sprint 29
## 2071 Canmore Sprint 29
## 2072 Canmore Sprint 29
## 2073 Canmore Sprint 29
## 2074 Canmore Sprint 29
## 2075 Canmore Sprint 29
## 2076 Canmore Sprint 29
## 2077 Canmore Sprint 29
## 2078 Canmore Sprint 29
## 2079 Canmore Sprint 29
## 2080 Canmore Sprint 29
## 2081 Canmore Sprint 29
## 2082 Canmore Sprint 29
## 2083 Canmore Sprint 29
## 2084 Canmore Sprint 29
## 2085 Canmore Sprint 29
## 2086 Canmore Sprint 29
## 2087 Canmore Sprint 29
## 2088 Canmore Sprint 29
## 2089 Canmore Sprint 29
## 2090 Canmore Sprint 29
## 2091 Canmore Sprint 29
## 2092 Canmore Sprint 29
## 2093 Canmore Sprint 29
## 2094 Canmore Sprint 29
## 2095 Canmore Sprint 29
## 2096 Canmore Sprint 29
## 2097 Canmore Sprint 29
## 2098 Canmore Sprint 29
## 2099 Canmore Sprint 29
## 2100 Canmore Sprint 29
## 2101 Canmore Sprint 29
## 2102 Canmore Sprint 29
## 2103 Canmore Sprint 29
## 2104 Canmore Sprint 29
## 2105 Canmore Sprint 29
## 2106 Canmore Sprint 29
## 2107 Canmore Mass start 28
## 2108 Canmore Mass start 28
## 2109 Canmore Mass start 28
## 2110 Canmore Mass start 28
## 2111 Canmore Mass start 28
## 2112 Canmore Mass start 28
## 2113 Canmore Mass start 28
## 2114 Canmore Mass start 28
## 2115 Canmore Mass start 28
## 2116 Canmore Mass start 28
## 2117 Canmore Mass start 28
## 2118 Canmore Mass start 28
## 2119 Canmore Mass start 28
## 2120 Canmore Mass start 28
## 2121 Canmore Mass start 28
## 2122 Canmore Mass start 28
## 2123 Canmore Mass start 28
## 2124 Canmore Mass start 28
## 2125 Canmore Mass start 28
## 2126 Canmore Mass start 28
## 2127 Canmore Mass start 28
## 2128 Canmore Mass start 28
## 2129 Canmore Mass start 28
## 2130 Canmore Mass start 28
## 2131 Canmore Mass start 28
## 2132 Canmore Mass start 28
## 2133 Canmore Mass start 28
## 2134 Canmore Mass start 28
## 2135 Canmore Mass start 28
## 2136 Canmore Mass start 28
## 2137 Hochfilzen Sprint 31
## 2138 Hochfilzen Sprint 31
## 2139 Hochfilzen Sprint 31
## 2140 Hochfilzen Sprint 31
## 2141 Hochfilzen Sprint 31
## 2142 Hochfilzen Sprint 31
## 2143 Hochfilzen Sprint 31
## 2144 Hochfilzen Sprint 31
## 2145 Hochfilzen Sprint 31
## 2146 Hochfilzen Sprint 31
## 2147 Hochfilzen Sprint 31
## 2148 Hochfilzen Sprint 31
## 2149 Hochfilzen Sprint 31
## 2150 Hochfilzen Sprint 31
## 2151 Hochfilzen Sprint 31
## 2152 Hochfilzen Sprint 31
## 2153 Hochfilzen Sprint 31
## 2154 Hochfilzen Sprint 31
## 2155 Hochfilzen Sprint 31
## 2156 Hochfilzen Sprint 31
## 2157 Hochfilzen Sprint 31
## 2158 Hochfilzen Sprint 31
## 2159 Hochfilzen Sprint 31
## 2160 Hochfilzen Sprint 31
## 2161 Hochfilzen Sprint 31
## 2162 Hochfilzen Sprint 31
## 2163 Hochfilzen Sprint 31
## 2164 Hochfilzen Sprint 31
## 2165 Hochfilzen Sprint 31
## 2166 Hochfilzen Sprint 31
## 2167 Hochfilzen Sprint 31
## 2168 Hochfilzen Sprint 31
## 2169 Hochfilzen Sprint 31
## 2170 Hochfilzen Sprint 31
## 2171 Hochfilzen Sprint 31
## 2172 Hochfilzen Sprint 31
## 2173 Hochfilzen Sprint 31
## 2174 Hochfilzen Sprint 31
## 2175 Hochfilzen Sprint 31
## 2176 Hochfilzen Sprint 31
## 2177 Hochfilzen Sprint 31
## 2178 Hochfilzen Sprint 31
## 2179 Hochfilzen Sprint 31
## 2180 Hochfilzen Sprint 31
## 2181 Hochfilzen Sprint 31
## 2182 Hochfilzen Sprint 31
## 2183 Hochfilzen Sprint 31
## 2184 Hochfilzen Sprint 31
## 2185 Hochfilzen Sprint 31
## 2186 Hochfilzen Sprint 31
## 2187 Hochfilzen Sprint 31
## 2188 Hochfilzen Sprint 31
## 2189 Hochfilzen Sprint 31
## 2190 Hochfilzen Sprint 31
## 2191 Hochfilzen Sprint 31
## 2192 Hochfilzen Sprint 31
## 2193 Hochfilzen Sprint 31
## 2194 Hochfilzen Sprint 31
## 2195 Hochfilzen Sprint 31
## 2196 Hochfilzen Sprint 31
## 2197 Hochfilzen Sprint 31
## 2198 Hochfilzen Sprint 31
## 2199 Hochfilzen Sprint 31
## 2200 Hochfilzen Sprint 31
## 2201 Hochfilzen Sprint 31
## 2202 Hochfilzen Sprint 31
## 2203 Hochfilzen Sprint 31
## 2204 Hochfilzen Sprint 31
## 2205 Hochfilzen Sprint 31
## 2206 Hochfilzen Sprint 31
## 2207 Hochfilzen Sprint 31
## 2208 Hochfilzen Sprint 31
## 2209 Hochfilzen Sprint 31
## 2210 Hochfilzen Sprint 31
## 2211 Hochfilzen Sprint 31
## 2212 Hochfilzen Sprint 31
## 2213 Hochfilzen Sprint 31
## 2214 Hochfilzen Sprint 31
## 2215 Hochfilzen Sprint 31
## 2216 Hochfilzen Sprint 31
## 2217 Hochfilzen Sprint 31
## 2218 Hochfilzen Sprint 31
## 2219 Hochfilzen Sprint 31
## 2220 Hochfilzen Sprint 31
## 2221 Hochfilzen Sprint 31
## 2222 Hochfilzen Sprint 31
## 2223 Hochfilzen Sprint 31
## 2224 Hochfilzen Sprint 31
## 2225 Hochfilzen Sprint 31
## 2226 Hochfilzen Sprint 31
## 2227 Hochfilzen Sprint 31
## 2228 Hochfilzen Sprint 31
## 2229 Hochfilzen Sprint 31
## 2230 Hochfilzen Sprint 31
## 2231 Hochfilzen Sprint 31
## 2232 Hochfilzen Sprint 31
## 2233 Hochfilzen Sprint 31
## 2234 Hochfilzen Sprint 31
## 2235 Hochfilzen Sprint 31
## 2236 Hochfilzen Sprint 31
## 2237 Hochfilzen Sprint 31
## 2238 Hochfilzen Sprint 31
## 2239 Hochfilzen Sprint 31
## 2240 Hochfilzen Sprint 31
## 2241 Hochfilzen Sprint 31
## 2242 Hochfilzen Sprint 31
## 2243 Hochfilzen Sprint 31
## 2244 Hochfilzen Sprint 31
## 2245 Hochfilzen Pursuit 30
## 2246 Hochfilzen Pursuit 30
## 2247 Hochfilzen Pursuit 30
## 2248 Hochfilzen Pursuit 30
## 2249 Hochfilzen Pursuit 30
## 2250 Hochfilzen Pursuit 30
## 2251 Hochfilzen Pursuit 30
## 2252 Hochfilzen Pursuit 30
## 2253 Hochfilzen Pursuit 30
## 2254 Hochfilzen Pursuit 30
## 2255 Hochfilzen Pursuit 30
## 2256 Hochfilzen Pursuit 30
## 2257 Hochfilzen Pursuit 30
## 2258 Hochfilzen Pursuit 30
## 2259 Hochfilzen Pursuit 30
## 2260 Hochfilzen Pursuit 30
## 2261 Hochfilzen Pursuit 30
## 2262 Hochfilzen Pursuit 30
## 2263 Hochfilzen Pursuit 30
## 2264 Hochfilzen Pursuit 30
## 2265 Hochfilzen Pursuit 30
## 2266 Hochfilzen Pursuit 30
## 2267 Hochfilzen Pursuit 30
## 2268 Hochfilzen Pursuit 30
## 2269 Hochfilzen Pursuit 30
## 2270 Hochfilzen Pursuit 30
## 2271 Hochfilzen Pursuit 30
## 2272 Hochfilzen Pursuit 30
## 2273 Hochfilzen Pursuit 30
## 2274 Hochfilzen Pursuit 30
## 2275 Hochfilzen Pursuit 30
## 2276 Hochfilzen Pursuit 30
## 2277 Hochfilzen Pursuit 30
## 2278 Hochfilzen Pursuit 30
## 2279 Hochfilzen Pursuit 30
## 2280 Hochfilzen Pursuit 30
## 2281 Hochfilzen Pursuit 30
## 2282 Hochfilzen Pursuit 30
## 2283 Hochfilzen Pursuit 30
## 2284 Hochfilzen Pursuit 30
## 2285 Hochfilzen Pursuit 30
## 2286 Hochfilzen Pursuit 30
## 2287 Hochfilzen Pursuit 30
## 2288 Hochfilzen Pursuit 30
## 2289 Hochfilzen Pursuit 30
## 2290 Hochfilzen Pursuit 30
## 2291 Hochfilzen Pursuit 30
## 2292 Hochfilzen Pursuit 30
## 2293 Hochfilzen Pursuit 30
## 2294 Hochfilzen Pursuit 30
## 2295 Hochfilzen Pursuit 30
## 2296 Hochfilzen Pursuit 30
## 2297 Hochfilzen Pursuit 30
## 2298 Hochfilzen Pursuit 30
## 2299 Hochfilzen Pursuit 30
## 2300 Hochfilzen Pursuit 30
## 2301 Hochfilzen Pursuit 30
## 2302 Hochfilzen Pursuit 30
## 2303 Hochfilzen Pursuit 30
## 2304 Khanty-Mansiysk Sprint 33
## 2305 Khanty-Mansiysk Sprint 33
## 2306 Khanty-Mansiysk Sprint 33
## 2307 Khanty-Mansiysk Sprint 33
## 2308 Khanty-Mansiysk Sprint 33
## 2309 Khanty-Mansiysk Sprint 33
## 2310 Khanty-Mansiysk Sprint 33
## 2311 Khanty-Mansiysk Sprint 33
## 2312 Khanty-Mansiysk Sprint 33
## 2313 Khanty-Mansiysk Sprint 33
## 2314 Khanty-Mansiysk Sprint 33
## 2315 Khanty-Mansiysk Sprint 33
## 2316 Khanty-Mansiysk Sprint 33
## 2317 Khanty-Mansiysk Sprint 33
## 2318 Khanty-Mansiysk Sprint 33
## 2319 Khanty-Mansiysk Sprint 33
## 2320 Khanty-Mansiysk Sprint 33
## 2321 Khanty-Mansiysk Sprint 33
## 2322 Khanty-Mansiysk Sprint 33
## 2323 Khanty-Mansiysk Sprint 33
## 2324 Khanty-Mansiysk Sprint 33
## 2325 Khanty-Mansiysk Sprint 33
## 2326 Khanty-Mansiysk Sprint 33
## 2327 Khanty-Mansiysk Sprint 33
## 2328 Khanty-Mansiysk Sprint 33
## 2329 Khanty-Mansiysk Sprint 33
## 2330 Khanty-Mansiysk Sprint 33
## 2331 Khanty-Mansiysk Sprint 33
## 2332 Khanty-Mansiysk Sprint 33
## 2333 Khanty-Mansiysk Sprint 33
## 2334 Khanty-Mansiysk Sprint 33
## 2335 Khanty-Mansiysk Sprint 33
## 2336 Khanty-Mansiysk Sprint 33
## 2337 Khanty-Mansiysk Sprint 33
## 2338 Khanty-Mansiysk Sprint 33
## 2339 Khanty-Mansiysk Sprint 33
## 2340 Khanty-Mansiysk Sprint 33
## 2341 Khanty-Mansiysk Sprint 33
## 2342 Khanty-Mansiysk Sprint 33
## 2343 Khanty-Mansiysk Sprint 33
## 2344 Khanty-Mansiysk Sprint 33
## 2345 Khanty-Mansiysk Sprint 33
## 2346 Khanty-Mansiysk Sprint 33
## 2347 Khanty-Mansiysk Sprint 33
## 2348 Khanty-Mansiysk Sprint 33
## 2349 Khanty-Mansiysk Sprint 33
## 2350 Khanty-Mansiysk Sprint 33
## 2351 Khanty-Mansiysk Sprint 33
## 2352 Khanty-Mansiysk Sprint 33
## 2353 Khanty-Mansiysk Sprint 33
## 2354 Khanty-Mansiysk Sprint 33
## 2355 Khanty-Mansiysk Sprint 33
## 2356 Khanty-Mansiysk Sprint 33
## 2357 Khanty-Mansiysk Sprint 33
## 2358 Khanty-Mansiysk Sprint 33
## 2359 Khanty-Mansiysk Sprint 33
## 2360 Khanty-Mansiysk Sprint 33
## 2361 Khanty-Mansiysk Sprint 33
## 2362 Khanty-Mansiysk Sprint 33
## 2363 Khanty-Mansiysk Sprint 33
## 2364 Khanty-Mansiysk Sprint 33
## 2365 Khanty-Mansiysk Sprint 33
## 2366 Khanty-Mansiysk Sprint 33
## 2367 Khanty-Mansiysk Sprint 33
## 2368 Khanty-Mansiysk Sprint 33
## 2369 Khanty-Mansiysk Sprint 33
## 2370 Khanty-Mansiysk Sprint 33
## 2371 Khanty-Mansiysk Sprint 33
## 2372 Khanty-Mansiysk Sprint 33
## 2373 Khanty-Mansiysk Sprint 33
## 2374 Khanty-Mansiysk Sprint 33
## 2375 Khanty-Mansiysk Sprint 33
## 2376 Khanty-Mansiysk Sprint 33
## 2377 Khanty-Mansiysk Sprint 33
## 2378 Khanty-Mansiysk Sprint 33
## 2379 Khanty-Mansiysk Sprint 33
## 2380 Khanty-Mansiysk Sprint 33
## 2381 Khanty-Mansiysk Sprint 33
## 2382 Khanty-Mansiysk Sprint 33
## 2383 Khanty-Mansiysk Sprint 33
## 2384 Khanty-Mansiysk Sprint 33
## 2385 Khanty-Mansiysk Sprint 33
## 2386 Khanty-Mansiysk Sprint 33
## 2387 Khanty-Mansiysk Sprint 33
## 2388 Khanty-Mansiysk Pursuit 32
## 2389 Khanty-Mansiysk Pursuit 32
## 2390 Khanty-Mansiysk Pursuit 32
## 2391 Khanty-Mansiysk Pursuit 32
## 2392 Khanty-Mansiysk Pursuit 32
## 2393 Khanty-Mansiysk Pursuit 32
## 2394 Khanty-Mansiysk Pursuit 32
## 2395 Khanty-Mansiysk Pursuit 32
## 2396 Khanty-Mansiysk Pursuit 32
## 2397 Khanty-Mansiysk Pursuit 32
## 2398 Khanty-Mansiysk Pursuit 32
## 2399 Khanty-Mansiysk Pursuit 32
## 2400 Khanty-Mansiysk Pursuit 32
## 2401 Khanty-Mansiysk Pursuit 32
## 2402 Khanty-Mansiysk Pursuit 32
## 2403 Khanty-Mansiysk Pursuit 32
## 2404 Khanty-Mansiysk Pursuit 32
## 2405 Khanty-Mansiysk Pursuit 32
## 2406 Khanty-Mansiysk Pursuit 32
## 2407 Khanty-Mansiysk Pursuit 32
## 2408 Khanty-Mansiysk Pursuit 32
## 2409 Khanty-Mansiysk Pursuit 32
## 2410 Khanty-Mansiysk Pursuit 32
## 2411 Khanty-Mansiysk Pursuit 32
## 2412 Khanty-Mansiysk Pursuit 32
## 2413 Khanty-Mansiysk Pursuit 32
## 2414 Khanty-Mansiysk Pursuit 32
## 2415 Khanty-Mansiysk Pursuit 32
## 2416 Khanty-Mansiysk Pursuit 32
## 2417 Khanty-Mansiysk Pursuit 32
## 2418 Khanty-Mansiysk Pursuit 32
## 2419 Khanty-Mansiysk Pursuit 32
## 2420 Khanty-Mansiysk Pursuit 32
## 2421 Khanty-Mansiysk Pursuit 32
## 2422 Khanty-Mansiysk Pursuit 32
## 2423 Khanty-Mansiysk Pursuit 32
## 2424 Khanty-Mansiysk Pursuit 32
## 2425 Khanty-Mansiysk Pursuit 32
## 2426 Khanty-Mansiysk Pursuit 32
## 2427 Khanty-Mansiysk Pursuit 32
## 2428 Khanty-Mansiysk Pursuit 32
## 2429 Khanty-Mansiysk Pursuit 32
## 2430 Khanty-Mansiysk Pursuit 32
## 2431 Khanty-Mansiysk Pursuit 32
## 2432 Khanty-Mansiysk Pursuit 32
## 2433 Khanty-Mansiysk Pursuit 32
## 2434 Khanty-Mansiysk Pursuit 32
## 2435 Khanty-Mansiysk Pursuit 32
## 2436 Khanty-Mansiysk Pursuit 32
## 2437 Khanty-Mansiysk Pursuit 32
## 2438 Khanty-Mansiysk Pursuit 32
## 2439 Khanty-Mansiysk Pursuit 32
## 2440 Khanty-Mansiysk Pursuit 32
## 2441 Oestersund Sprint 36
## 2442 Oestersund Sprint 36
## 2443 Oestersund Sprint 36
## 2444 Oestersund Sprint 36
## 2445 Oestersund Sprint 36
## 2446 Oestersund Sprint 36
## 2447 Oestersund Sprint 36
## 2448 Oestersund Sprint 36
## 2449 Oestersund Sprint 36
## 2450 Oestersund Sprint 36
## 2451 Oestersund Sprint 36
## 2452 Oestersund Sprint 36
## 2453 Oestersund Sprint 36
## 2454 Oestersund Sprint 36
## 2455 Oestersund Sprint 36
## 2456 Oestersund Sprint 36
## 2457 Oestersund Sprint 36
## 2458 Oestersund Sprint 36
## 2459 Oestersund Sprint 36
## 2460 Oestersund Sprint 36
## 2461 Oestersund Sprint 36
## 2462 Oestersund Sprint 36
## 2463 Oestersund Sprint 36
## 2464 Oestersund Sprint 36
## 2465 Oestersund Sprint 36
## 2466 Oestersund Sprint 36
## 2467 Oestersund Sprint 36
## 2468 Oestersund Sprint 36
## 2469 Oestersund Sprint 36
## 2470 Oestersund Sprint 36
## 2471 Oestersund Sprint 36
## 2472 Oestersund Sprint 36
## 2473 Oestersund Sprint 36
## 2474 Oestersund Sprint 36
## 2475 Oestersund Sprint 36
## 2476 Oestersund Sprint 36
## 2477 Oestersund Sprint 36
## 2478 Oestersund Sprint 36
## 2479 Oestersund Sprint 36
## 2480 Oestersund Sprint 36
## 2481 Oestersund Sprint 36
## 2482 Oestersund Sprint 36
## 2483 Oestersund Sprint 36
## 2484 Oestersund Sprint 36
## 2485 Oestersund Sprint 36
## 2486 Oestersund Sprint 36
## 2487 Oestersund Sprint 36
## 2488 Oestersund Sprint 36
## 2489 Oestersund Sprint 36
## 2490 Oestersund Sprint 36
## 2491 Oestersund Sprint 36
## 2492 Oestersund Sprint 36
## 2493 Oestersund Sprint 36
## 2494 Oestersund Sprint 36
## 2495 Oestersund Sprint 36
## 2496 Oestersund Sprint 36
## 2497 Oestersund Sprint 36
## 2498 Oestersund Sprint 36
## 2499 Oestersund Sprint 36
## 2500 Oestersund Sprint 36
## 2501 Oestersund Sprint 36
## 2502 Oestersund Sprint 36
## 2503 Oestersund Sprint 36
## 2504 Oestersund Sprint 36
## 2505 Oestersund Sprint 36
## 2506 Oestersund Sprint 36
## 2507 Oestersund Sprint 36
## 2508 Oestersund Sprint 36
## 2509 Oestersund Sprint 36
## 2510 Oestersund Sprint 36
## 2511 Oestersund Sprint 36
## 2512 Oestersund Sprint 36
## 2513 Oestersund Sprint 36
## 2514 Oestersund Sprint 36
## 2515 Oestersund Sprint 36
## 2516 Oestersund Sprint 36
## 2517 Oestersund Sprint 36
## 2518 Oestersund Sprint 36
## 2519 Oestersund Sprint 36
## 2520 Oestersund Sprint 36
## 2521 Oestersund Sprint 36
## 2522 Oestersund Sprint 36
## 2523 Oestersund Sprint 36
## 2524 Oestersund Sprint 36
## 2525 Oestersund Sprint 36
## 2526 Oestersund Sprint 36
## 2527 Oestersund Sprint 36
## 2528 Oestersund Sprint 36
## 2529 Oestersund Sprint 36
## 2530 Oestersund Sprint 36
## 2531 Oestersund Sprint 36
## 2532 Oestersund Sprint 36
## 2533 Oestersund Sprint 36
## 2534 Oestersund Sprint 36
## 2535 Oestersund Sprint 36
## 2536 Oestersund Sprint 36
## 2537 Oestersund Sprint 36
## 2538 Oestersund Sprint 36
## 2539 Oestersund Sprint 36
## 2540 Oestersund Sprint 36
## 2541 Oestersund Sprint 36
## 2542 Oestersund Sprint 36
## 2543 Oestersund Sprint 36
## 2544 Oestersund Individual 34
## 2545 Oestersund Individual 34
## 2546 Oestersund Individual 34
## 2547 Oestersund Individual 34
## 2548 Oestersund Individual 34
## 2549 Oestersund Individual 34
## 2550 Oestersund Individual 34
## 2551 Oestersund Individual 34
## 2552 Oestersund Individual 34
## 2553 Oestersund Individual 34
## 2554 Oestersund Individual 34
## 2555 Oestersund Individual 34
## 2556 Oestersund Individual 34
## 2557 Oestersund Individual 34
## 2558 Oestersund Individual 34
## 2559 Oestersund Individual 34
## 2560 Oestersund Individual 34
## 2561 Oestersund Individual 34
## 2562 Oestersund Individual 34
## 2563 Oestersund Individual 34
## 2564 Oestersund Individual 34
## 2565 Oestersund Individual 34
## 2566 Oestersund Individual 34
## 2567 Oestersund Individual 34
## 2568 Oestersund Individual 34
## 2569 Oestersund Individual 34
## 2570 Oestersund Individual 34
## 2571 Oestersund Individual 34
## 2572 Oestersund Individual 34
## 2573 Oestersund Individual 34
## 2574 Oestersund Individual 34
## 2575 Oestersund Individual 34
## 2576 Oestersund Individual 34
## 2577 Oestersund Individual 34
## 2578 Oestersund Individual 34
## 2579 Oestersund Individual 34
## 2580 Oestersund Individual 34
## 2581 Oestersund Individual 34
## 2582 Oestersund Individual 34
## 2583 Oestersund Individual 34
## 2584 Oestersund Individual 34
## 2585 Oestersund Individual 34
## 2586 Oestersund Individual 34
## 2587 Oestersund Individual 34
## 2588 Oestersund Individual 34
## 2589 Oestersund Individual 34
## 2590 Oestersund Individual 34
## 2591 Oestersund Individual 34
## 2592 Oestersund Individual 34
## 2593 Oestersund Individual 34
## 2594 Oestersund Individual 34
## 2595 Oestersund Individual 34
## 2596 Oestersund Individual 34
## 2597 Oestersund Individual 34
## 2598 Oestersund Individual 34
## 2599 Oestersund Individual 34
## 2600 Oestersund Individual 34
## 2601 Oestersund Individual 34
## 2602 Oestersund Individual 34
## 2603 Oestersund Individual 34
## 2604 Oestersund Individual 34
## 2605 Oestersund Individual 34
## 2606 Oestersund Individual 34
## 2607 Oestersund Individual 34
## 2608 Oestersund Individual 34
## 2609 Oestersund Individual 34
## 2610 Oestersund Individual 34
## 2611 Oestersund Individual 34
## 2612 Oestersund Individual 34
## 2613 Oestersund Individual 34
## 2614 Oestersund Individual 34
## 2615 Oestersund Individual 34
## 2616 Oestersund Individual 34
## 2617 Oestersund Individual 34
## 2618 Oestersund Individual 34
## 2619 Oestersund Individual 34
## 2620 Oestersund Individual 34
## 2621 Oestersund Individual 34
## 2622 Oestersund Individual 34
## 2623 Oestersund Individual 34
## 2624 Oestersund Individual 34
## 2625 Oestersund Individual 34
## 2626 Oestersund Individual 34
## 2627 Oestersund Individual 34
## 2628 Oestersund Individual 34
## 2629 Oestersund Individual 34
## 2630 Oestersund Individual 34
## 2631 Oestersund Individual 34
## 2632 Oestersund Individual 34
## 2633 Oestersund Individual 34
## 2634 Oestersund Individual 34
## 2635 Oestersund Individual 34
## 2636 Oestersund Individual 34
## 2637 Oestersund Individual 34
## 2638 Oestersund Individual 34
## 2639 Oestersund Individual 34
## 2640 Oestersund Individual 34
## 2641 Oestersund Individual 34
## 2642 Oestersund Individual 34
## 2643 Oestersund Individual 34
## 2644 Oestersund Individual 34
## 2645 Oestersund Individual 34
## 2646 Oestersund Individual 34
## 2647 Oestersund Individual 34
## 2648 Oestersund Pursuit 35
## 2649 Oestersund Pursuit 35
## 2650 Oestersund Pursuit 35
## 2651 Oestersund Pursuit 35
## 2652 Oestersund Pursuit 35
## 2653 Oestersund Pursuit 35
## 2654 Oestersund Pursuit 35
## 2655 Oestersund Pursuit 35
## 2656 Oestersund Pursuit 35
## 2657 Oestersund Pursuit 35
## 2658 Oestersund Pursuit 35
## 2659 Oestersund Pursuit 35
## 2660 Oestersund Pursuit 35
## 2661 Oestersund Pursuit 35
## 2662 Oestersund Pursuit 35
## 2663 Oestersund Pursuit 35
## 2664 Oestersund Pursuit 35
## 2665 Oestersund Pursuit 35
## 2666 Oestersund Pursuit 35
## 2667 Oestersund Pursuit 35
## 2668 Oestersund Pursuit 35
## 2669 Oestersund Pursuit 35
## 2670 Oestersund Pursuit 35
## 2671 Oestersund Pursuit 35
## 2672 Oestersund Pursuit 35
## 2673 Oestersund Pursuit 35
## 2674 Oestersund Pursuit 35
## 2675 Oestersund Pursuit 35
## 2676 Oestersund Pursuit 35
## 2677 Oestersund Pursuit 35
## 2678 Oestersund Pursuit 35
## 2679 Oestersund Pursuit 35
## 2680 Oestersund Pursuit 35
## 2681 Oestersund Pursuit 35
## 2682 Oestersund Pursuit 35
## 2683 Oestersund Pursuit 35
## 2684 Oestersund Pursuit 35
## 2685 Oestersund Pursuit 35
## 2686 Oestersund Pursuit 35
## 2687 Oestersund Pursuit 35
## 2688 Oestersund Pursuit 35
## 2689 Oestersund Pursuit 35
## 2690 Oestersund Pursuit 35
## 2691 Oestersund Pursuit 35
## 2692 Oestersund Pursuit 35
## 2693 Oestersund Pursuit 35
## 2694 Oestersund Pursuit 35
## 2695 Oestersund Pursuit 35
## 2696 Oestersund Pursuit 35
## 2697 Oestersund Pursuit 35
## 2698 Oestersund Pursuit 35
## 2699 Oestersund Pursuit 35
## 2700 Oestersund Pursuit 35
## 2701 Oestersund Pursuit 35
## 2702 Oestersund Pursuit 35
## 2703 Oestersund Pursuit 35
## 2704 Oestersund Pursuit 35
## 2705 Oestersund Pursuit 35
## 2706 Oestersund Pursuit 35
## 2707 Oestersund Pursuit 35
## 2708 Oslo_Holmenkollen Sprint 40
## 2709 Oslo_Holmenkollen Sprint 40
## 2710 Oslo_Holmenkollen Sprint 40
## 2711 Oslo_Holmenkollen Sprint 40
## 2712 Oslo_Holmenkollen Sprint 40
## 2713 Oslo_Holmenkollen Sprint 40
## 2714 Oslo_Holmenkollen Sprint 40
## 2715 Oslo_Holmenkollen Sprint 40
## 2716 Oslo_Holmenkollen Sprint 40
## 2717 Oslo_Holmenkollen Sprint 40
## 2718 Oslo_Holmenkollen Sprint 40
## 2719 Oslo_Holmenkollen Sprint 40
## 2720 Oslo_Holmenkollen Sprint 40
## 2721 Oslo_Holmenkollen Sprint 40
## 2722 Oslo_Holmenkollen Sprint 40
## 2723 Oslo_Holmenkollen Sprint 40
## 2724 Oslo_Holmenkollen Sprint 40
## 2725 Oslo_Holmenkollen Sprint 40
## 2726 Oslo_Holmenkollen Sprint 40
## 2727 Oslo_Holmenkollen Sprint 40
## 2728 Oslo_Holmenkollen Sprint 40
## 2729 Oslo_Holmenkollen Sprint 40
## 2730 Oslo_Holmenkollen Sprint 40
## 2731 Oslo_Holmenkollen Sprint 40
## 2732 Oslo_Holmenkollen Sprint 40
## 2733 Oslo_Holmenkollen Sprint 40
## 2734 Oslo_Holmenkollen Sprint 40
## 2735 Oslo_Holmenkollen Sprint 40
## 2736 Oslo_Holmenkollen Sprint 40
## 2737 Oslo_Holmenkollen Sprint 40
## 2738 Oslo_Holmenkollen Sprint 40
## 2739 Oslo_Holmenkollen Sprint 40
## 2740 Oslo_Holmenkollen Sprint 40
## 2741 Oslo_Holmenkollen Sprint 40
## 2742 Oslo_Holmenkollen Sprint 40
## 2743 Oslo_Holmenkollen Sprint 40
## 2744 Oslo_Holmenkollen Sprint 40
## 2745 Oslo_Holmenkollen Sprint 40
## 2746 Oslo_Holmenkollen Sprint 40
## 2747 Oslo_Holmenkollen Sprint 40
## 2748 Oslo_Holmenkollen Sprint 40
## 2749 Oslo_Holmenkollen Sprint 40
## 2750 Oslo_Holmenkollen Sprint 40
## 2751 Oslo_Holmenkollen Sprint 40
## 2752 Oslo_Holmenkollen Sprint 40
## 2753 Oslo_Holmenkollen Sprint 40
## 2754 Oslo_Holmenkollen Sprint 40
## 2755 Oslo_Holmenkollen Sprint 40
## 2756 Oslo_Holmenkollen Sprint 40
## 2757 Oslo_Holmenkollen Sprint 40
## 2758 Oslo_Holmenkollen Sprint 40
## 2759 Oslo_Holmenkollen Sprint 40
## 2760 Oslo_Holmenkollen Sprint 40
## 2761 Oslo_Holmenkollen Sprint 40
## 2762 Oslo_Holmenkollen Sprint 40
## 2763 Oslo_Holmenkollen Sprint 40
## 2764 Oslo_Holmenkollen Sprint 40
## 2765 Oslo_Holmenkollen Sprint 40
## 2766 Oslo_Holmenkollen Sprint 40
## 2767 Oslo_Holmenkollen Sprint 40
## 2768 Oslo_Holmenkollen Sprint 40
## 2769 Oslo_Holmenkollen Sprint 40
## 2770 Oslo_Holmenkollen Sprint 40
## 2771 Oslo_Holmenkollen Sprint 40
## 2772 Oslo_Holmenkollen Sprint 40
## 2773 Oslo_Holmenkollen Sprint 40
## 2774 Oslo_Holmenkollen Sprint 40
## 2775 Oslo_Holmenkollen Sprint 40
## 2776 Oslo_Holmenkollen Sprint 40
## 2777 Oslo_Holmenkollen Sprint 40
## 2778 Oslo_Holmenkollen Sprint 40
## 2779 Oslo_Holmenkollen Sprint 40
## 2780 Oslo_Holmenkollen Sprint 40
## 2781 Oslo_Holmenkollen Sprint 40
## 2782 Oslo_Holmenkollen Sprint 40
## 2783 Oslo_Holmenkollen Sprint 40
## 2784 Oslo_Holmenkollen Sprint 40
## 2785 Oslo_Holmenkollen Sprint 40
## 2786 Oslo_Holmenkollen Sprint 40
## 2787 Oslo_Holmenkollen Sprint 40
## 2788 Oslo_Holmenkollen Sprint 40
## 2789 Oslo_Holmenkollen Sprint 40
## 2790 Oslo_Holmenkollen Sprint 40
## 2791 Oslo_Holmenkollen Sprint 40
## 2792 Oslo_Holmenkollen Sprint 40
## 2793 Oslo_Holmenkollen Sprint 40
## 2794 Oslo_Holmenkollen Sprint 40
## 2795 Oslo_Holmenkollen Sprint 40
## 2796 Oslo_Holmenkollen Sprint 40
## 2797 Oslo_Holmenkollen Sprint 40
## 2798 Oslo_Holmenkollen Sprint 40
## 2799 Oslo_Holmenkollen Sprint 40
## 2800 Oslo_Holmenkollen Sprint 40
## 2801 Oslo_Holmenkollen Sprint 40
## 2802 Oslo_Holmenkollen Sprint 40
## 2803 Oslo_Holmenkollen Sprint 40
## 2804 Oslo_Holmenkollen Sprint 40
## 2805 Oslo_Holmenkollen Sprint 40
## 2806 Oslo_Holmenkollen Sprint 40
## 2807 Oslo_Holmenkollen Sprint 40
## 2808 Oslo_Holmenkollen Sprint 40
## 2809 Oslo_Holmenkollen Sprint 40
## 2810 Oslo_Holmenkollen Individual 37
## 2811 Oslo_Holmenkollen Individual 37
## 2812 Oslo_Holmenkollen Individual 37
## 2813 Oslo_Holmenkollen Individual 37
## 2814 Oslo_Holmenkollen Individual 37
## 2815 Oslo_Holmenkollen Individual 37
## 2816 Oslo_Holmenkollen Individual 37
## 2817 Oslo_Holmenkollen Individual 37
## 2818 Oslo_Holmenkollen Individual 37
## 2819 Oslo_Holmenkollen Individual 37
## 2820 Oslo_Holmenkollen Individual 37
## 2821 Oslo_Holmenkollen Individual 37
## 2822 Oslo_Holmenkollen Individual 37
## 2823 Oslo_Holmenkollen Individual 37
## 2824 Oslo_Holmenkollen Individual 37
## 2825 Oslo_Holmenkollen Individual 37
## 2826 Oslo_Holmenkollen Individual 37
## 2827 Oslo_Holmenkollen Individual 37
## 2828 Oslo_Holmenkollen Individual 37
## 2829 Oslo_Holmenkollen Individual 37
## 2830 Oslo_Holmenkollen Individual 37
## 2831 Oslo_Holmenkollen Individual 37
## 2832 Oslo_Holmenkollen Individual 37
## 2833 Oslo_Holmenkollen Individual 37
## 2834 Oslo_Holmenkollen Individual 37
## 2835 Oslo_Holmenkollen Individual 37
## 2836 Oslo_Holmenkollen Individual 37
## 2837 Oslo_Holmenkollen Individual 37
## 2838 Oslo_Holmenkollen Individual 37
## 2839 Oslo_Holmenkollen Individual 37
## 2840 Oslo_Holmenkollen Individual 37
## 2841 Oslo_Holmenkollen Individual 37
## 2842 Oslo_Holmenkollen Individual 37
## 2843 Oslo_Holmenkollen Individual 37
## 2844 Oslo_Holmenkollen Individual 37
## 2845 Oslo_Holmenkollen Individual 37
## 2846 Oslo_Holmenkollen Individual 37
## 2847 Oslo_Holmenkollen Individual 37
## 2848 Oslo_Holmenkollen Individual 37
## 2849 Oslo_Holmenkollen Individual 37
## 2850 Oslo_Holmenkollen Individual 37
## 2851 Oslo_Holmenkollen Individual 37
## 2852 Oslo_Holmenkollen Individual 37
## 2853 Oslo_Holmenkollen Individual 37
## 2854 Oslo_Holmenkollen Individual 37
## 2855 Oslo_Holmenkollen Individual 37
## 2856 Oslo_Holmenkollen Individual 37
## 2857 Oslo_Holmenkollen Individual 37
## 2858 Oslo_Holmenkollen Individual 37
## 2859 Oslo_Holmenkollen Individual 37
## 2860 Oslo_Holmenkollen Individual 37
## 2861 Oslo_Holmenkollen Individual 37
## 2862 Oslo_Holmenkollen Individual 37
## 2863 Oslo_Holmenkollen Individual 37
## 2864 Oslo_Holmenkollen Individual 37
## 2865 Oslo_Holmenkollen Individual 37
## 2866 Oslo_Holmenkollen Individual 37
## 2867 Oslo_Holmenkollen Individual 37
## 2868 Oslo_Holmenkollen Individual 37
## 2869 Oslo_Holmenkollen Individual 37
## 2870 Oslo_Holmenkollen Individual 37
## 2871 Oslo_Holmenkollen Individual 37
## 2872 Oslo_Holmenkollen Individual 37
## 2873 Oslo_Holmenkollen Individual 37
## 2874 Oslo_Holmenkollen Individual 37
## 2875 Oslo_Holmenkollen Individual 37
## 2876 Oslo_Holmenkollen Individual 37
## 2877 Oslo_Holmenkollen Individual 37
## 2878 Oslo_Holmenkollen Individual 37
## 2879 Oslo_Holmenkollen Individual 37
## 2880 Oslo_Holmenkollen Individual 37
## 2881 Oslo_Holmenkollen Individual 37
## 2882 Oslo_Holmenkollen Individual 37
## 2883 Oslo_Holmenkollen Individual 37
## 2884 Oslo_Holmenkollen Individual 37
## 2885 Oslo_Holmenkollen Individual 37
## 2886 Oslo_Holmenkollen Individual 37
## 2887 Oslo_Holmenkollen Individual 37
## 2888 Oslo_Holmenkollen Individual 37
## 2889 Oslo_Holmenkollen Individual 37
## 2890 Oslo_Holmenkollen Individual 37
## 2891 Oslo_Holmenkollen Individual 37
## 2892 Oslo_Holmenkollen Individual 37
## 2893 Oslo_Holmenkollen Individual 37
## 2894 Oslo_Holmenkollen Individual 37
## 2895 Oslo_Holmenkollen Individual 37
## 2896 Oslo_Holmenkollen Individual 37
## 2897 Oslo_Holmenkollen Individual 37
## 2898 Oslo_Holmenkollen Individual 37
## 2899 Oslo_Holmenkollen Individual 37
## 2900 Oslo_Holmenkollen Individual 37
## 2901 Oslo_Holmenkollen Individual 37
## 2902 Oslo_Holmenkollen Individual 37
## 2903 Oslo_Holmenkollen Individual 37
## 2904 Oslo_Holmenkollen Individual 37
## 2905 Oslo_Holmenkollen Individual 37
## 2906 Oslo_Holmenkollen Individual 37
## 2907 Oslo_Holmenkollen Individual 37
## 2908 Oslo_Holmenkollen Individual 37
## 2909 Oslo_Holmenkollen Mass start 38
## 2910 Oslo_Holmenkollen Mass start 38
## 2911 Oslo_Holmenkollen Mass start 38
## 2912 Oslo_Holmenkollen Mass start 38
## 2913 Oslo_Holmenkollen Mass start 38
## 2914 Oslo_Holmenkollen Mass start 38
## 2915 Oslo_Holmenkollen Mass start 38
## 2916 Oslo_Holmenkollen Mass start 38
## 2917 Oslo_Holmenkollen Mass start 38
## 2918 Oslo_Holmenkollen Mass start 38
## 2919 Oslo_Holmenkollen Mass start 38
## 2920 Oslo_Holmenkollen Mass start 38
## 2921 Oslo_Holmenkollen Mass start 38
## 2922 Oslo_Holmenkollen Mass start 38
## 2923 Oslo_Holmenkollen Mass start 38
## 2924 Oslo_Holmenkollen Mass start 38
## 2925 Oslo_Holmenkollen Mass start 38
## 2926 Oslo_Holmenkollen Mass start 38
## 2927 Oslo_Holmenkollen Mass start 38
## 2928 Oslo_Holmenkollen Mass start 38
## 2929 Oslo_Holmenkollen Mass start 38
## 2930 Oslo_Holmenkollen Mass start 38
## 2931 Oslo_Holmenkollen Mass start 38
## 2932 Oslo_Holmenkollen Mass start 38
## 2933 Oslo_Holmenkollen Mass start 38
## 2934 Oslo_Holmenkollen Mass start 38
## 2935 Oslo_Holmenkollen Mass start 38
## 2936 Oslo_Holmenkollen Mass start 38
## 2937 Oslo_Holmenkollen Mass start 38
## 2938 Oslo_Holmenkollen Pursuit 39
## 2939 Oslo_Holmenkollen Pursuit 39
## 2940 Oslo_Holmenkollen Pursuit 39
## 2941 Oslo_Holmenkollen Pursuit 39
## 2942 Oslo_Holmenkollen Pursuit 39
## 2943 Oslo_Holmenkollen Pursuit 39
## 2944 Oslo_Holmenkollen Pursuit 39
## 2945 Oslo_Holmenkollen Pursuit 39
## 2946 Oslo_Holmenkollen Pursuit 39
## 2947 Oslo_Holmenkollen Pursuit 39
## 2948 Oslo_Holmenkollen Pursuit 39
## 2949 Oslo_Holmenkollen Pursuit 39
## 2950 Oslo_Holmenkollen Pursuit 39
## 2951 Oslo_Holmenkollen Pursuit 39
## 2952 Oslo_Holmenkollen Pursuit 39
## 2953 Oslo_Holmenkollen Pursuit 39
## 2954 Oslo_Holmenkollen Pursuit 39
## 2955 Oslo_Holmenkollen Pursuit 39
## 2956 Oslo_Holmenkollen Pursuit 39
## 2957 Oslo_Holmenkollen Pursuit 39
## 2958 Oslo_Holmenkollen Pursuit 39
## 2959 Oslo_Holmenkollen Pursuit 39
## 2960 Oslo_Holmenkollen Pursuit 39
## 2961 Oslo_Holmenkollen Pursuit 39
## 2962 Oslo_Holmenkollen Pursuit 39
## 2963 Oslo_Holmenkollen Pursuit 39
## 2964 Oslo_Holmenkollen Pursuit 39
## 2965 Oslo_Holmenkollen Pursuit 39
## 2966 Oslo_Holmenkollen Pursuit 39
## 2967 Oslo_Holmenkollen Pursuit 39
## 2968 Oslo_Holmenkollen Pursuit 39
## 2969 Oslo_Holmenkollen Pursuit 39
## 2970 Oslo_Holmenkollen Pursuit 39
## 2971 Oslo_Holmenkollen Pursuit 39
## 2972 Oslo_Holmenkollen Pursuit 39
## 2973 Oslo_Holmenkollen Pursuit 39
## 2974 Oslo_Holmenkollen Pursuit 39
## 2975 Oslo_Holmenkollen Pursuit 39
## 2976 Oslo_Holmenkollen Pursuit 39
## 2977 Oslo_Holmenkollen Pursuit 39
## 2978 Oslo_Holmenkollen Pursuit 39
## 2979 Oslo_Holmenkollen Pursuit 39
## 2980 Oslo_Holmenkollen Pursuit 39
## 2981 Oslo_Holmenkollen Pursuit 39
## 2982 Oslo_Holmenkollen Pursuit 39
## 2983 Oslo_Holmenkollen Pursuit 39
## 2984 Oslo_Holmenkollen Pursuit 39
## 2985 Oslo_Holmenkollen Pursuit 39
## 2986 Oslo_Holmenkollen Pursuit 39
## 2987 Oslo_Holmenkollen Pursuit 39
## 2988 Oslo_Holmenkollen Pursuit 39
## 2989 Oslo_Holmenkollen Pursuit 39
## 2990 Oslo_Holmenkollen Pursuit 39
## 2991 Oslo_Holmenkollen Pursuit 39
## 2992 Oslo_Holmenkollen Pursuit 39
## 2993 Oslo_Holmenkollen Pursuit 39
## 2994 Oslo_Holmenkollen Pursuit 39
## 2995 Pokljuka Sprint 43
## 2996 Pokljuka Sprint 43
## 2997 Pokljuka Sprint 43
## 2998 Pokljuka Sprint 43
## 2999 Pokljuka Sprint 43
## 3000 Pokljuka Sprint 43
## 3001 Pokljuka Sprint 43
## 3002 Pokljuka Sprint 43
## 3003 Pokljuka Sprint 43
## 3004 Pokljuka Sprint 43
## 3005 Pokljuka Sprint 43
## 3006 Pokljuka Sprint 43
## 3007 Pokljuka Sprint 43
## 3008 Pokljuka Sprint 43
## 3009 Pokljuka Sprint 43
## 3010 Pokljuka Sprint 43
## 3011 Pokljuka Sprint 43
## 3012 Pokljuka Sprint 43
## 3013 Pokljuka Sprint 43
## 3014 Pokljuka Sprint 43
## 3015 Pokljuka Sprint 43
## 3016 Pokljuka Sprint 43
## 3017 Pokljuka Sprint 43
## 3018 Pokljuka Sprint 43
## 3019 Pokljuka Sprint 43
## 3020 Pokljuka Sprint 43
## 3021 Pokljuka Sprint 43
## 3022 Pokljuka Sprint 43
## 3023 Pokljuka Sprint 43
## 3024 Pokljuka Sprint 43
## 3025 Pokljuka Sprint 43
## 3026 Pokljuka Sprint 43
## 3027 Pokljuka Sprint 43
## 3028 Pokljuka Sprint 43
## 3029 Pokljuka Sprint 43
## 3030 Pokljuka Sprint 43
## 3031 Pokljuka Sprint 43
## 3032 Pokljuka Sprint 43
## 3033 Pokljuka Sprint 43
## 3034 Pokljuka Sprint 43
## 3035 Pokljuka Sprint 43
## 3036 Pokljuka Sprint 43
## 3037 Pokljuka Sprint 43
## 3038 Pokljuka Sprint 43
## 3039 Pokljuka Sprint 43
## 3040 Pokljuka Sprint 43
## 3041 Pokljuka Sprint 43
## 3042 Pokljuka Sprint 43
## 3043 Pokljuka Sprint 43
## 3044 Pokljuka Sprint 43
## 3045 Pokljuka Sprint 43
## 3046 Pokljuka Sprint 43
## 3047 Pokljuka Sprint 43
## 3048 Pokljuka Sprint 43
## 3049 Pokljuka Sprint 43
## 3050 Pokljuka Sprint 43
## 3051 Pokljuka Sprint 43
## 3052 Pokljuka Sprint 43
## 3053 Pokljuka Sprint 43
## 3054 Pokljuka Sprint 43
## 3055 Pokljuka Sprint 43
## 3056 Pokljuka Sprint 43
## 3057 Pokljuka Sprint 43
## 3058 Pokljuka Sprint 43
## 3059 Pokljuka Sprint 43
## 3060 Pokljuka Sprint 43
## 3061 Pokljuka Sprint 43
## 3062 Pokljuka Sprint 43
## 3063 Pokljuka Sprint 43
## 3064 Pokljuka Sprint 43
## 3065 Pokljuka Sprint 43
## 3066 Pokljuka Sprint 43
## 3067 Pokljuka Sprint 43
## 3068 Pokljuka Sprint 43
## 3069 Pokljuka Sprint 43
## 3070 Pokljuka Sprint 43
## 3071 Pokljuka Sprint 43
## 3072 Pokljuka Sprint 43
## 3073 Pokljuka Sprint 43
## 3074 Pokljuka Sprint 43
## 3075 Pokljuka Sprint 43
## 3076 Pokljuka Sprint 43
## 3077 Pokljuka Sprint 43
## 3078 Pokljuka Sprint 43
## 3079 Pokljuka Sprint 43
## 3080 Pokljuka Sprint 43
## 3081 Pokljuka Sprint 43
## 3082 Pokljuka Sprint 43
## 3083 Pokljuka Sprint 43
## 3084 Pokljuka Sprint 43
## 3085 Pokljuka Sprint 43
## 3086 Pokljuka Sprint 43
## 3087 Pokljuka Sprint 43
## 3088 Pokljuka Sprint 43
## 3089 Pokljuka Sprint 43
## 3090 Pokljuka Sprint 43
## 3091 Pokljuka Sprint 43
## 3092 Pokljuka Sprint 43
## 3093 Pokljuka Sprint 43
## 3094 Pokljuka Sprint 43
## 3095 Pokljuka Sprint 43
## 3096 Pokljuka Sprint 43
## 3097 Pokljuka Mass start 41
## 3098 Pokljuka Mass start 41
## 3099 Pokljuka Mass start 41
## 3100 Pokljuka Mass start 41
## 3101 Pokljuka Mass start 41
## 3102 Pokljuka Mass start 41
## 3103 Pokljuka Mass start 41
## 3104 Pokljuka Mass start 41
## 3105 Pokljuka Mass start 41
## 3106 Pokljuka Mass start 41
## 3107 Pokljuka Mass start 41
## 3108 Pokljuka Mass start 41
## 3109 Pokljuka Mass start 41
## 3110 Pokljuka Mass start 41
## 3111 Pokljuka Mass start 41
## 3112 Pokljuka Mass start 41
## 3113 Pokljuka Mass start 41
## 3114 Pokljuka Mass start 41
## 3115 Pokljuka Mass start 41
## 3116 Pokljuka Mass start 41
## 3117 Pokljuka Mass start 41
## 3118 Pokljuka Mass start 41
## 3119 Pokljuka Mass start 41
## 3120 Pokljuka Mass start 41
## 3121 Pokljuka Mass start 41
## 3122 Pokljuka Mass start 41
## 3123 Pokljuka Mass start 41
## 3124 Pokljuka Mass start 41
## 3125 Pokljuka Mass start 41
## 3126 Pokljuka Mass start 41
## 3127 Pokljuka Pursuit 42
## 3128 Pokljuka Pursuit 42
## 3129 Pokljuka Pursuit 42
## 3130 Pokljuka Pursuit 42
## 3131 Pokljuka Pursuit 42
## 3132 Pokljuka Pursuit 42
## 3133 Pokljuka Pursuit 42
## 3134 Pokljuka Pursuit 42
## 3135 Pokljuka Pursuit 42
## 3136 Pokljuka Pursuit 42
## 3137 Pokljuka Pursuit 42
## 3138 Pokljuka Pursuit 42
## 3139 Pokljuka Pursuit 42
## 3140 Pokljuka Pursuit 42
## 3141 Pokljuka Pursuit 42
## 3142 Pokljuka Pursuit 42
## 3143 Pokljuka Pursuit 42
## 3144 Pokljuka Pursuit 42
## 3145 Pokljuka Pursuit 42
## 3146 Pokljuka Pursuit 42
## 3147 Pokljuka Pursuit 42
## 3148 Pokljuka Pursuit 42
## 3149 Pokljuka Pursuit 42
## 3150 Pokljuka Pursuit 42
## 3151 Pokljuka Pursuit 42
## 3152 Pokljuka Pursuit 42
## 3153 Pokljuka Pursuit 42
## 3154 Pokljuka Pursuit 42
## 3155 Pokljuka Pursuit 42
## 3156 Pokljuka Pursuit 42
## 3157 Pokljuka Pursuit 42
## 3158 Pokljuka Pursuit 42
## 3159 Pokljuka Pursuit 42
## 3160 Pokljuka Pursuit 42
## 3161 Pokljuka Pursuit 42
## 3162 Pokljuka Pursuit 42
## 3163 Pokljuka Pursuit 42
## 3164 Pokljuka Pursuit 42
## 3165 Pokljuka Pursuit 42
## 3166 Pokljuka Pursuit 42
## 3167 Pokljuka Pursuit 42
## 3168 Pokljuka Pursuit 42
## 3169 Pokljuka Pursuit 42
## 3170 Pokljuka Pursuit 42
## 3171 Pokljuka Pursuit 42
## 3172 Pokljuka Pursuit 42
## 3173 Pokljuka Pursuit 42
## 3174 Pokljuka Pursuit 42
## 3175 Pokljuka Pursuit 42
## 3176 Pokljuka Pursuit 42
## 3177 Pokljuka Pursuit 42
## 3178 Pokljuka Pursuit 42
## 3179 Pokljuka Pursuit 42
## 3180 Pokljuka Pursuit 42
## 3181 Pokljuka Pursuit 42
## 3182 Pokljuka Pursuit 42
## 3183 Pokljuka Pursuit 42
## 3184 Pokljuka Pursuit 42
## 3185 Pokljuka Pursuit 42
## 3186 Presque_Isle Sprint 45
## 3187 Presque_Isle Sprint 45
## 3188 Presque_Isle Sprint 45
## 3189 Presque_Isle Sprint 45
## 3190 Presque_Isle Sprint 45
## 3191 Presque_Isle Sprint 45
## 3192 Presque_Isle Sprint 45
## 3193 Presque_Isle Sprint 45
## 3194 Presque_Isle Sprint 45
## 3195 Presque_Isle Sprint 45
## 3196 Presque_Isle Sprint 45
## 3197 Presque_Isle Sprint 45
## 3198 Presque_Isle Sprint 45
## 3199 Presque_Isle Sprint 45
## 3200 Presque_Isle Sprint 45
## 3201 Presque_Isle Sprint 45
## 3202 Presque_Isle Sprint 45
## 3203 Presque_Isle Sprint 45
## 3204 Presque_Isle Sprint 45
## 3205 Presque_Isle Sprint 45
## 3206 Presque_Isle Sprint 45
## 3207 Presque_Isle Sprint 45
## 3208 Presque_Isle Sprint 45
## 3209 Presque_Isle Sprint 45
## 3210 Presque_Isle Sprint 45
## 3211 Presque_Isle Sprint 45
## 3212 Presque_Isle Sprint 45
## 3213 Presque_Isle Sprint 45
## 3214 Presque_Isle Sprint 45
## 3215 Presque_Isle Sprint 45
## 3216 Presque_Isle Sprint 45
## 3217 Presque_Isle Sprint 45
## 3218 Presque_Isle Sprint 45
## 3219 Presque_Isle Sprint 45
## 3220 Presque_Isle Sprint 45
## 3221 Presque_Isle Sprint 45
## 3222 Presque_Isle Sprint 45
## 3223 Presque_Isle Sprint 45
## 3224 Presque_Isle Sprint 45
## 3225 Presque_Isle Sprint 45
## 3226 Presque_Isle Sprint 45
## 3227 Presque_Isle Sprint 45
## 3228 Presque_Isle Sprint 45
## 3229 Presque_Isle Sprint 45
## 3230 Presque_Isle Sprint 45
## 3231 Presque_Isle Sprint 45
## 3232 Presque_Isle Sprint 45
## 3233 Presque_Isle Sprint 45
## 3234 Presque_Isle Sprint 45
## 3235 Presque_Isle Sprint 45
## 3236 Presque_Isle Sprint 45
## 3237 Presque_Isle Sprint 45
## 3238 Presque_Isle Sprint 45
## 3239 Presque_Isle Sprint 45
## 3240 Presque_Isle Sprint 45
## 3241 Presque_Isle Sprint 45
## 3242 Presque_Isle Sprint 45
## 3243 Presque_Isle Sprint 45
## 3244 Presque_Isle Sprint 45
## 3245 Presque_Isle Sprint 45
## 3246 Presque_Isle Sprint 45
## 3247 Presque_Isle Sprint 45
## 3248 Presque_Isle Sprint 45
## 3249 Presque_Isle Sprint 45
## 3250 Presque_Isle Sprint 45
## 3251 Presque_Isle Sprint 45
## 3252 Presque_Isle Sprint 45
## 3253 Presque_Isle Sprint 45
## 3254 Presque_Isle Sprint 45
## 3255 Presque_Isle Sprint 45
## 3256 Presque_Isle Sprint 45
## 3257 Presque_Isle Sprint 45
## 3258 Presque_Isle Sprint 45
## 3259 Presque_Isle Sprint 45
## 3260 Presque_Isle Sprint 45
## 3261 Presque_Isle Sprint 45
## 3262 Presque_Isle Sprint 45
## 3263 Presque_Isle Sprint 45
## 3264 Presque_Isle Sprint 45
## 3265 Presque_Isle Sprint 45
## 3266 Presque_Isle Sprint 45
## 3267 Presque_Isle Sprint 45
## 3268 Presque_Isle Sprint 45
## 3269 Presque_Isle Sprint 45
## 3270 Presque_Isle Sprint 45
## 3271 Presque_Isle Sprint 45
## 3272 Presque_Isle Sprint 45
## 3273 Presque_Isle Sprint 45
## 3274 Presque_Isle Pursuit 44
## 3275 Presque_Isle Pursuit 44
## 3276 Presque_Isle Pursuit 44
## 3277 Presque_Isle Pursuit 44
## 3278 Presque_Isle Pursuit 44
## 3279 Presque_Isle Pursuit 44
## 3280 Presque_Isle Pursuit 44
## 3281 Presque_Isle Pursuit 44
## 3282 Presque_Isle Pursuit 44
## 3283 Presque_Isle Pursuit 44
## 3284 Presque_Isle Pursuit 44
## 3285 Presque_Isle Pursuit 44
## 3286 Presque_Isle Pursuit 44
## 3287 Presque_Isle Pursuit 44
## 3288 Presque_Isle Pursuit 44
## 3289 Presque_Isle Pursuit 44
## 3290 Presque_Isle Pursuit 44
## 3291 Presque_Isle Pursuit 44
## 3292 Presque_Isle Pursuit 44
## 3293 Presque_Isle Pursuit 44
## 3294 Presque_Isle Pursuit 44
## 3295 Presque_Isle Pursuit 44
## 3296 Presque_Isle Pursuit 44
## 3297 Presque_Isle Pursuit 44
## 3298 Presque_Isle Pursuit 44
## 3299 Presque_Isle Pursuit 44
## 3300 Presque_Isle Pursuit 44
## 3301 Presque_Isle Pursuit 44
## 3302 Presque_Isle Pursuit 44
## 3303 Presque_Isle Pursuit 44
## 3304 Presque_Isle Pursuit 44
## 3305 Presque_Isle Pursuit 44
## 3306 Presque_Isle Pursuit 44
## 3307 Presque_Isle Pursuit 44
## 3308 Presque_Isle Pursuit 44
## 3309 Presque_Isle Pursuit 44
## 3310 Presque_Isle Pursuit 44
## 3311 Presque_Isle Pursuit 44
## 3312 Presque_Isle Pursuit 44
## 3313 Presque_Isle Pursuit 44
## 3314 Presque_Isle Pursuit 44
## 3315 Presque_Isle Pursuit 44
## 3316 Presque_Isle Pursuit 44
## 3317 Presque_Isle Pursuit 44
## 3318 Presque_Isle Pursuit 44
## 3319 Presque_Isle Pursuit 44
## 3320 Presque_Isle Pursuit 44
## 3321 Presque_Isle Pursuit 44
## 3322 Presque_Isle Pursuit 44
## 3323 Presque_Isle Pursuit 44
## 3324 Presque_Isle Pursuit 44
## 3325 Presque_Isle Pursuit 44
## 3326 Presque_Isle Pursuit 44
## 3327 Ruhpolding Sprint 50
## 3328 Ruhpolding Sprint 50
## 3329 Ruhpolding Sprint 50
## 3330 Ruhpolding Sprint 50
## 3331 Ruhpolding Sprint 50
## 3332 Ruhpolding Sprint 50
## 3333 Ruhpolding Sprint 50
## 3334 Ruhpolding Sprint 50
## 3335 Ruhpolding Sprint 50
## 3336 Ruhpolding Sprint 50
## 3337 Ruhpolding Sprint 50
## 3338 Ruhpolding Sprint 50
## 3339 Ruhpolding Sprint 50
## 3340 Ruhpolding Sprint 50
## 3341 Ruhpolding Sprint 50
## 3342 Ruhpolding Sprint 50
## 3343 Ruhpolding Sprint 50
## 3344 Ruhpolding Sprint 50
## 3345 Ruhpolding Sprint 50
## 3346 Ruhpolding Sprint 50
## 3347 Ruhpolding Sprint 50
## 3348 Ruhpolding Sprint 50
## 3349 Ruhpolding Sprint 50
## 3350 Ruhpolding Sprint 50
## 3351 Ruhpolding Sprint 50
## 3352 Ruhpolding Sprint 50
## 3353 Ruhpolding Sprint 50
## 3354 Ruhpolding Sprint 50
## 3355 Ruhpolding Sprint 50
## 3356 Ruhpolding Sprint 50
## 3357 Ruhpolding Sprint 50
## 3358 Ruhpolding Sprint 50
## 3359 Ruhpolding Sprint 50
## 3360 Ruhpolding Sprint 50
## 3361 Ruhpolding Sprint 50
## 3362 Ruhpolding Sprint 50
## 3363 Ruhpolding Sprint 50
## 3364 Ruhpolding Sprint 50
## 3365 Ruhpolding Sprint 50
## 3366 Ruhpolding Sprint 50
## 3367 Ruhpolding Sprint 50
## 3368 Ruhpolding Sprint 50
## 3369 Ruhpolding Sprint 50
## 3370 Ruhpolding Sprint 50
## 3371 Ruhpolding Sprint 50
## 3372 Ruhpolding Sprint 50
## 3373 Ruhpolding Sprint 50
## 3374 Ruhpolding Sprint 50
## 3375 Ruhpolding Sprint 50
## 3376 Ruhpolding Sprint 50
## 3377 Ruhpolding Sprint 50
## 3378 Ruhpolding Sprint 50
## 3379 Ruhpolding Sprint 50
## 3380 Ruhpolding Sprint 50
## 3381 Ruhpolding Sprint 50
## 3382 Ruhpolding Sprint 50
## 3383 Ruhpolding Sprint 50
## 3384 Ruhpolding Sprint 50
## 3385 Ruhpolding Sprint 50
## 3386 Ruhpolding Sprint 50
## 3387 Ruhpolding Sprint 50
## 3388 Ruhpolding Sprint 50
## 3389 Ruhpolding Sprint 50
## 3390 Ruhpolding Sprint 50
## 3391 Ruhpolding Sprint 50
## 3392 Ruhpolding Sprint 50
## 3393 Ruhpolding Sprint 50
## 3394 Ruhpolding Sprint 50
## 3395 Ruhpolding Sprint 50
## 3396 Ruhpolding Sprint 50
## 3397 Ruhpolding Sprint 50
## 3398 Ruhpolding Sprint 50
## 3399 Ruhpolding Sprint 50
## 3400 Ruhpolding Sprint 50
## 3401 Ruhpolding Sprint 50
## 3402 Ruhpolding Sprint 50
## 3403 Ruhpolding Sprint 50
## 3404 Ruhpolding Sprint 50
## 3405 Ruhpolding Sprint 50
## 3406 Ruhpolding Sprint 50
## 3407 Ruhpolding Sprint 50
## 3408 Ruhpolding Sprint 50
## 3409 Ruhpolding Sprint 50
## 3410 Ruhpolding Sprint 50
## 3411 Ruhpolding Sprint 50
## 3412 Ruhpolding Sprint 50
## 3413 Ruhpolding Sprint 50
## 3414 Ruhpolding Sprint 50
## 3415 Ruhpolding Sprint 50
## 3416 Ruhpolding Sprint 50
## 3417 Ruhpolding Sprint 50
## 3418 Ruhpolding Sprint 50
## 3419 Ruhpolding Sprint 50
## 3420 Ruhpolding Sprint 50
## 3421 Ruhpolding Sprint 50
## 3422 Ruhpolding Sprint 50
## 3423 Ruhpolding Sprint 50
## 3424 Ruhpolding Sprint 50
## 3425 Ruhpolding Sprint 50
## 3426 Ruhpolding Sprint 50
## 3427 Ruhpolding Sprint 50
## 3428 Ruhpolding Sprint 50
## 3429 Ruhpolding Individual 46
## 3430 Ruhpolding Individual 46
## 3431 Ruhpolding Individual 46
## 3432 Ruhpolding Individual 46
## 3433 Ruhpolding Individual 46
## 3434 Ruhpolding Individual 46
## 3435 Ruhpolding Individual 46
## 3436 Ruhpolding Individual 46
## 3437 Ruhpolding Individual 46
## 3438 Ruhpolding Individual 46
## 3439 Ruhpolding Individual 46
## 3440 Ruhpolding Individual 46
## 3441 Ruhpolding Individual 46
## 3442 Ruhpolding Individual 46
## 3443 Ruhpolding Individual 46
## 3444 Ruhpolding Individual 46
## 3445 Ruhpolding Individual 46
## 3446 Ruhpolding Individual 46
## 3447 Ruhpolding Individual 46
## 3448 Ruhpolding Individual 46
## 3449 Ruhpolding Individual 46
## 3450 Ruhpolding Individual 46
## 3451 Ruhpolding Individual 46
## 3452 Ruhpolding Individual 46
## 3453 Ruhpolding Individual 46
## 3454 Ruhpolding Individual 46
## 3455 Ruhpolding Individual 46
## 3456 Ruhpolding Individual 46
## 3457 Ruhpolding Individual 46
## 3458 Ruhpolding Individual 46
## 3459 Ruhpolding Individual 46
## 3460 Ruhpolding Individual 46
## 3461 Ruhpolding Individual 46
## 3462 Ruhpolding Individual 46
## 3463 Ruhpolding Individual 46
## 3464 Ruhpolding Individual 46
## 3465 Ruhpolding Individual 46
## 3466 Ruhpolding Individual 46
## 3467 Ruhpolding Individual 46
## 3468 Ruhpolding Individual 46
## 3469 Ruhpolding Individual 46
## 3470 Ruhpolding Individual 46
## 3471 Ruhpolding Individual 46
## 3472 Ruhpolding Individual 46
## 3473 Ruhpolding Individual 46
## 3474 Ruhpolding Individual 46
## 3475 Ruhpolding Individual 46
## 3476 Ruhpolding Individual 46
## 3477 Ruhpolding Individual 46
## 3478 Ruhpolding Individual 46
## 3479 Ruhpolding Individual 46
## 3480 Ruhpolding Individual 46
## 3481 Ruhpolding Individual 46
## 3482 Ruhpolding Individual 46
## 3483 Ruhpolding Individual 46
## 3484 Ruhpolding Individual 46
## 3485 Ruhpolding Individual 46
## 3486 Ruhpolding Individual 46
## 3487 Ruhpolding Individual 46
## 3488 Ruhpolding Individual 46
## 3489 Ruhpolding Individual 46
## 3490 Ruhpolding Individual 46
## 3491 Ruhpolding Individual 46
## 3492 Ruhpolding Individual 46
## 3493 Ruhpolding Individual 46
## 3494 Ruhpolding Individual 46
## 3495 Ruhpolding Individual 46
## 3496 Ruhpolding Individual 46
## 3497 Ruhpolding Individual 46
## 3498 Ruhpolding Individual 46
## 3499 Ruhpolding Individual 46
## 3500 Ruhpolding Individual 46
## 3501 Ruhpolding Individual 46
## 3502 Ruhpolding Individual 46
## 3503 Ruhpolding Individual 46
## 3504 Ruhpolding Individual 46
## 3505 Ruhpolding Individual 46
## 3506 Ruhpolding Individual 46
## 3507 Ruhpolding Individual 46
## 3508 Ruhpolding Individual 46
## 3509 Ruhpolding Individual 46
## 3510 Ruhpolding Individual 46
## 3511 Ruhpolding Individual 46
## 3512 Ruhpolding Individual 46
## 3513 Ruhpolding Individual 46
## 3514 Ruhpolding Individual 46
## 3515 Ruhpolding Individual 46
## 3516 Ruhpolding Individual 46
## 3517 Ruhpolding Individual 46
## 3518 Ruhpolding Individual 46
## 3519 Ruhpolding Individual 46
## 3520 Ruhpolding Individual 46
## 3521 Ruhpolding Individual 46
## 3522 Ruhpolding Individual 46
## 3523 Ruhpolding Individual 46
## 3524 Ruhpolding Individual 46
## 3525 Ruhpolding Individual 46
## 3526 Ruhpolding Individual 46
## 3527 Ruhpolding Individual 46
## 3528 Ruhpolding Individual 46
## 3529 Ruhpolding Individual 46
## 3530 Ruhpolding Individual 46
## 3531 Ruhpolding Individual 46
## 3532 Ruhpolding Mass start 47
## 3533 Ruhpolding Mass start 47
## 3534 Ruhpolding Mass start 47
## 3535 Ruhpolding Mass start 47
## 3536 Ruhpolding Mass start 47
## 3537 Ruhpolding Mass start 47
## 3538 Ruhpolding Mass start 47
## 3539 Ruhpolding Mass start 47
## 3540 Ruhpolding Mass start 47
## 3541 Ruhpolding Mass start 47
## 3542 Ruhpolding Mass start 47
## 3543 Ruhpolding Mass start 47
## 3544 Ruhpolding Mass start 47
## 3545 Ruhpolding Mass start 47
## 3546 Ruhpolding Mass start 47
## 3547 Ruhpolding Mass start 47
## 3548 Ruhpolding Mass start 47
## 3549 Ruhpolding Mass start 47
## 3550 Ruhpolding Mass start 47
## 3551 Ruhpolding Mass start 47
## 3552 Ruhpolding Mass start 47
## 3553 Ruhpolding Mass start 47
## 3554 Ruhpolding Mass start 47
## 3555 Ruhpolding Mass start 47
## 3556 Ruhpolding Mass start 47
## 3557 Ruhpolding Mass start 47
## 3558 Ruhpolding Mass start 47
## 3559 Ruhpolding Mass start 47
## 3560 Ruhpolding Mass start 47
## 3561 Ruhpolding Mass start 47
## 3562 Ruhpolding Mass start 48
## 3563 Ruhpolding Mass start 48
## 3564 Ruhpolding Mass start 48
## 3565 Ruhpolding Mass start 48
## 3566 Ruhpolding Mass start 48
## 3567 Ruhpolding Mass start 48
## 3568 Ruhpolding Mass start 48
## 3569 Ruhpolding Mass start 48
## 3570 Ruhpolding Mass start 48
## 3571 Ruhpolding Mass start 48
## 3572 Ruhpolding Mass start 48
## 3573 Ruhpolding Mass start 48
## 3574 Ruhpolding Mass start 48
## 3575 Ruhpolding Mass start 48
## 3576 Ruhpolding Mass start 48
## 3577 Ruhpolding Mass start 48
## 3578 Ruhpolding Mass start 48
## 3579 Ruhpolding Mass start 48
## 3580 Ruhpolding Mass start 48
## 3581 Ruhpolding Mass start 48
## 3582 Ruhpolding Mass start 48
## 3583 Ruhpolding Mass start 48
## 3584 Ruhpolding Mass start 48
## 3585 Ruhpolding Mass start 48
## 3586 Ruhpolding Mass start 48
## 3587 Ruhpolding Mass start 48
## 3588 Ruhpolding Mass start 48
## 3589 Ruhpolding Mass start 48
## 3590 Ruhpolding Mass start 48
## 3591 Ruhpolding Mass start 48
## 3592 Ruhpolding Pursuit 49
## 3593 Ruhpolding Pursuit 49
## 3594 Ruhpolding Pursuit 49
## 3595 Ruhpolding Pursuit 49
## 3596 Ruhpolding Pursuit 49
## 3597 Ruhpolding Pursuit 49
## 3598 Ruhpolding Pursuit 49
## 3599 Ruhpolding Pursuit 49
## 3600 Ruhpolding Pursuit 49
## 3601 Ruhpolding Pursuit 49
## 3602 Ruhpolding Pursuit 49
## 3603 Ruhpolding Pursuit 49
## 3604 Ruhpolding Pursuit 49
## 3605 Ruhpolding Pursuit 49
## 3606 Ruhpolding Pursuit 49
## 3607 Ruhpolding Pursuit 49
## 3608 Ruhpolding Pursuit 49
## 3609 Ruhpolding Pursuit 49
## 3610 Ruhpolding Pursuit 49
## 3611 Ruhpolding Pursuit 49
## 3612 Ruhpolding Pursuit 49
## 3613 Ruhpolding Pursuit 49
## 3614 Ruhpolding Pursuit 49
## 3615 Ruhpolding Pursuit 49
## 3616 Ruhpolding Pursuit 49
## 3617 Ruhpolding Pursuit 49
## 3618 Ruhpolding Pursuit 49
## 3619 Ruhpolding Pursuit 49
## 3620 Ruhpolding Pursuit 49
## 3621 Ruhpolding Pursuit 49
## 3622 Ruhpolding Pursuit 49
## 3623 Ruhpolding Pursuit 49
## 3624 Ruhpolding Pursuit 49
## 3625 Ruhpolding Pursuit 49
## 3626 Ruhpolding Pursuit 49
## 3627 Ruhpolding Pursuit 49
## 3628 Ruhpolding Pursuit 49
## 3629 Ruhpolding Pursuit 49
## 3630 Ruhpolding Pursuit 49
## 3631 Ruhpolding Pursuit 49
## 3632 Ruhpolding Pursuit 49
## 3633 Ruhpolding Pursuit 49
## 3634 Ruhpolding Pursuit 49
## 3635 Ruhpolding Pursuit 49
## 3636 Ruhpolding Pursuit 49
## 3637 Ruhpolding Pursuit 49
## 3638 Ruhpolding Pursuit 49
## 3639 Ruhpolding Pursuit 49
## 3640 Ruhpolding Pursuit 49
## 3641 Ruhpolding Pursuit 49
## 3642 Ruhpolding Pursuit 49
## 3643 Ruhpolding Pursuit 49
## 3644 Ruhpolding Pursuit 49
## 3645 Ruhpolding Pursuit 49
## 3646 Ruhpolding Pursuit 49
## 3647 Ruhpolding Pursuit 49
## 3648 Ruhpolding Pursuit 49
## 3649 Ruhpolding Pursuit 49
## 3650 Anterselva Individual 51
## 3651 Anterselva Individual 51
## 3652 Anterselva Individual 51
## 3653 Anterselva Individual 51
## 3654 Anterselva Individual 51
## 3655 Anterselva Individual 51
## 3656 Anterselva Individual 51
## 3657 Anterselva Individual 51
## 3658 Anterselva Individual 51
## 3659 Anterselva Individual 51
## 3660 Anterselva Individual 51
## 3661 Anterselva Individual 51
## 3662 Anterselva Individual 51
## 3663 Anterselva Individual 51
## 3664 Anterselva Individual 51
## 3665 Anterselva Individual 51
## 3666 Anterselva Individual 51
## 3667 Anterselva Individual 51
## 3668 Anterselva Individual 51
## 3669 Anterselva Individual 51
## 3670 Anterselva Individual 51
## 3671 Anterselva Individual 51
## 3672 Anterselva Individual 51
## 3673 Anterselva Individual 51
## 3674 Anterselva Individual 51
## 3675 Anterselva Individual 51
## 3676 Anterselva Individual 51
## 3677 Anterselva Individual 51
## 3678 Anterselva Individual 51
## 3679 Anterselva Individual 51
## 3680 Anterselva Individual 51
## 3681 Anterselva Individual 51
## 3682 Anterselva Individual 51
## 3683 Anterselva Individual 51
## 3684 Anterselva Individual 51
## 3685 Anterselva Individual 51
## 3686 Anterselva Individual 51
## 3687 Anterselva Individual 51
## 3688 Anterselva Individual 51
## 3689 Anterselva Individual 51
## 3690 Anterselva Individual 51
## 3691 Anterselva Individual 51
## 3692 Anterselva Individual 51
## 3693 Anterselva Individual 51
## 3694 Anterselva Individual 51
## 3695 Anterselva Individual 51
## 3696 Anterselva Individual 51
## 3697 Anterselva Individual 51
## 3698 Anterselva Individual 51
## 3699 Anterselva Individual 51
## 3700 Anterselva Individual 51
## 3701 Anterselva Individual 51
## 3702 Anterselva Individual 51
## 3703 Anterselva Individual 51
## 3704 Anterselva Individual 51
## 3705 Anterselva Individual 51
## 3706 Anterselva Individual 51
## 3707 Anterselva Individual 51
## 3708 Anterselva Individual 51
## 3709 Anterselva Individual 51
## 3710 Anterselva Individual 51
## 3711 Anterselva Individual 51
## 3712 Anterselva Individual 51
## 3713 Anterselva Individual 51
## 3714 Anterselva Individual 51
## 3715 Anterselva Individual 51
## 3716 Anterselva Individual 51
## 3717 Anterselva Individual 51
## 3718 Anterselva Individual 51
## 3719 Anterselva Individual 51
## 3720 Anterselva Individual 51
## 3721 Anterselva Individual 51
## 3722 Anterselva Individual 51
## 3723 Anterselva Individual 51
## 3724 Anterselva Individual 51
## 3725 Anterselva Individual 51
## 3726 Anterselva Individual 51
## 3727 Anterselva Individual 51
## 3728 Anterselva Individual 51
## 3729 Anterselva Individual 51
## 3730 Anterselva Individual 51
## 3731 Anterselva Individual 51
## 3732 Anterselva Individual 51
## 3733 Anterselva Individual 51
## 3734 Anterselva Individual 51
## 3735 Anterselva Individual 51
## 3736 Anterselva Individual 51
## 3737 Anterselva Individual 51
## 3738 Anterselva Individual 51
## 3739 Anterselva Individual 51
## 3740 Anterselva Individual 51
## 3741 Anterselva Individual 51
## 3742 Anterselva Individual 51
## 3743 Anterselva Individual 51
## 3744 Anterselva Individual 51
## 3745 Anterselva Individual 51
## 3746 Anterselva Individual 51
## 3747 Anterselva Individual 51
## 3748 Anterselva Individual 51
## 3749 Anterselva Individual 51
## 3750 Anterselva Individual 51
## 3751 Anterselva Individual 51
## 3752 Anterselva Individual 51
## 3753 Anterselva Individual 51
## 3754 Anterselva Individual 51
## 3755 Anterselva Mass start 52
## 3756 Anterselva Mass start 52
## 3757 Anterselva Mass start 52
## 3758 Anterselva Mass start 52
## 3759 Anterselva Mass start 52
## 3760 Anterselva Mass start 52
## 3761 Anterselva Mass start 52
## 3762 Anterselva Mass start 52
## 3763 Anterselva Mass start 52
## 3764 Anterselva Mass start 52
## 3765 Anterselva Mass start 52
## 3766 Anterselva Mass start 52
## 3767 Anterselva Mass start 52
## 3768 Anterselva Mass start 52
## 3769 Anterselva Mass start 52
## 3770 Anterselva Mass start 52
## 3771 Anterselva Mass start 52
## 3772 Anterselva Mass start 52
## 3773 Anterselva Mass start 52
## 3774 Anterselva Mass start 52
## 3775 Anterselva Mass start 52
## 3776 Anterselva Mass start 52
## 3777 Anterselva Mass start 52
## 3778 Anterselva Mass start 52
## 3779 Anterselva Mass start 52
## 3780 Anterselva Mass start 52
## 3781 Anterselva Mass start 52
## 3782 Anterselva Mass start 52
## 3783 Anterselva Mass start 52
## 3784 Anterselva Mass start 52
## 3785 Hochfilzen Sprint 56
## 3786 Hochfilzen Sprint 56
## 3787 Hochfilzen Sprint 56
## 3788 Hochfilzen Sprint 56
## 3789 Hochfilzen Sprint 56
## 3790 Hochfilzen Sprint 56
## 3791 Hochfilzen Sprint 56
## 3792 Hochfilzen Sprint 56
## 3793 Hochfilzen Sprint 56
## 3794 Hochfilzen Sprint 56
## 3795 Hochfilzen Sprint 56
## 3796 Hochfilzen Sprint 56
## 3797 Hochfilzen Sprint 56
## 3798 Hochfilzen Sprint 56
## 3799 Hochfilzen Sprint 56
## 3800 Hochfilzen Sprint 56
## 3801 Hochfilzen Sprint 56
## 3802 Hochfilzen Sprint 56
## 3803 Hochfilzen Sprint 56
## 3804 Hochfilzen Sprint 56
## 3805 Hochfilzen Sprint 56
## 3806 Hochfilzen Sprint 56
## 3807 Hochfilzen Sprint 56
## 3808 Hochfilzen Sprint 56
## 3809 Hochfilzen Sprint 56
## 3810 Hochfilzen Sprint 56
## 3811 Hochfilzen Sprint 56
## 3812 Hochfilzen Sprint 56
## 3813 Hochfilzen Sprint 56
## 3814 Hochfilzen Sprint 56
## 3815 Hochfilzen Sprint 56
## 3816 Hochfilzen Sprint 56
## 3817 Hochfilzen Sprint 56
## 3818 Hochfilzen Sprint 56
## 3819 Hochfilzen Sprint 56
## 3820 Hochfilzen Sprint 56
## 3821 Hochfilzen Sprint 56
## 3822 Hochfilzen Sprint 56
## 3823 Hochfilzen Sprint 56
## 3824 Hochfilzen Sprint 56
## 3825 Hochfilzen Sprint 56
## 3826 Hochfilzen Sprint 56
## 3827 Hochfilzen Sprint 56
## 3828 Hochfilzen Sprint 56
## 3829 Hochfilzen Sprint 56
## 3830 Hochfilzen Sprint 56
## 3831 Hochfilzen Sprint 56
## 3832 Hochfilzen Sprint 56
## 3833 Hochfilzen Sprint 56
## 3834 Hochfilzen Sprint 56
## 3835 Hochfilzen Sprint 56
## 3836 Hochfilzen Sprint 56
## 3837 Hochfilzen Sprint 56
## 3838 Hochfilzen Sprint 56
## 3839 Hochfilzen Sprint 56
## 3840 Hochfilzen Sprint 56
## 3841 Hochfilzen Sprint 56
## 3842 Hochfilzen Sprint 56
## 3843 Hochfilzen Sprint 56
## 3844 Hochfilzen Sprint 56
## 3845 Hochfilzen Sprint 56
## 3846 Hochfilzen Sprint 56
## 3847 Hochfilzen Sprint 56
## 3848 Hochfilzen Sprint 56
## 3849 Hochfilzen Sprint 56
## 3850 Hochfilzen Sprint 56
## 3851 Hochfilzen Sprint 56
## 3852 Hochfilzen Sprint 56
## 3853 Hochfilzen Sprint 56
## 3854 Hochfilzen Sprint 56
## 3855 Hochfilzen Sprint 56
## 3856 Hochfilzen Sprint 56
## 3857 Hochfilzen Sprint 56
## 3858 Hochfilzen Sprint 56
## 3859 Hochfilzen Sprint 56
## 3860 Hochfilzen Sprint 56
## 3861 Hochfilzen Sprint 56
## 3862 Hochfilzen Sprint 56
## 3863 Hochfilzen Sprint 56
## 3864 Hochfilzen Sprint 56
## 3865 Hochfilzen Sprint 56
## 3866 Hochfilzen Sprint 56
## 3867 Hochfilzen Sprint 56
## 3868 Hochfilzen Sprint 56
## 3869 Hochfilzen Sprint 56
## 3870 Hochfilzen Sprint 56
## 3871 Hochfilzen Sprint 56
## 3872 Hochfilzen Sprint 56
## 3873 Hochfilzen Sprint 56
## 3874 Hochfilzen Sprint 56
## 3875 Hochfilzen Sprint 56
## 3876 Hochfilzen Sprint 56
## 3877 Hochfilzen Sprint 56
## 3878 Hochfilzen Sprint 56
## 3879 Hochfilzen Sprint 56
## 3880 Hochfilzen Sprint 56
## 3881 Hochfilzen Sprint 56
## 3882 Hochfilzen Sprint 56
## 3883 Hochfilzen Sprint 56
## 3884 Hochfilzen Sprint 56
## 3885 Hochfilzen Sprint 56
## 3886 Hochfilzen Sprint 56
## 3887 Hochfilzen Individual 53
## 3888 Hochfilzen Individual 53
## 3889 Hochfilzen Individual 53
## 3890 Hochfilzen Individual 53
## 3891 Hochfilzen Individual 53
## 3892 Hochfilzen Individual 53
## 3893 Hochfilzen Individual 53
## 3894 Hochfilzen Individual 53
## 3895 Hochfilzen Individual 53
## 3896 Hochfilzen Individual 53
## 3897 Hochfilzen Individual 53
## 3898 Hochfilzen Individual 53
## 3899 Hochfilzen Individual 53
## 3900 Hochfilzen Individual 53
## 3901 Hochfilzen Individual 53
## 3902 Hochfilzen Individual 53
## 3903 Hochfilzen Individual 53
## 3904 Hochfilzen Individual 53
## 3905 Hochfilzen Individual 53
## 3906 Hochfilzen Individual 53
## 3907 Hochfilzen Individual 53
## 3908 Hochfilzen Individual 53
## 3909 Hochfilzen Individual 53
## 3910 Hochfilzen Individual 53
## 3911 Hochfilzen Individual 53
## 3912 Hochfilzen Individual 53
## 3913 Hochfilzen Individual 53
## 3914 Hochfilzen Individual 53
## 3915 Hochfilzen Individual 53
## 3916 Hochfilzen Individual 53
## 3917 Hochfilzen Individual 53
## 3918 Hochfilzen Individual 53
## 3919 Hochfilzen Individual 53
## 3920 Hochfilzen Individual 53
## 3921 Hochfilzen Individual 53
## 3922 Hochfilzen Individual 53
## 3923 Hochfilzen Individual 53
## 3924 Hochfilzen Individual 53
## 3925 Hochfilzen Individual 53
## 3926 Hochfilzen Individual 53
## 3927 Hochfilzen Individual 53
## 3928 Hochfilzen Individual 53
## 3929 Hochfilzen Individual 53
## 3930 Hochfilzen Individual 53
## 3931 Hochfilzen Individual 53
## 3932 Hochfilzen Individual 53
## 3933 Hochfilzen Individual 53
## 3934 Hochfilzen Individual 53
## 3935 Hochfilzen Individual 53
## 3936 Hochfilzen Individual 53
## 3937 Hochfilzen Individual 53
## 3938 Hochfilzen Individual 53
## 3939 Hochfilzen Individual 53
## 3940 Hochfilzen Individual 53
## 3941 Hochfilzen Individual 53
## 3942 Hochfilzen Individual 53
## 3943 Hochfilzen Individual 53
## 3944 Hochfilzen Individual 53
## 3945 Hochfilzen Individual 53
## 3946 Hochfilzen Individual 53
## 3947 Hochfilzen Individual 53
## 3948 Hochfilzen Individual 53
## 3949 Hochfilzen Individual 53
## 3950 Hochfilzen Individual 53
## 3951 Hochfilzen Individual 53
## 3952 Hochfilzen Individual 53
## 3953 Hochfilzen Individual 53
## 3954 Hochfilzen Individual 53
## 3955 Hochfilzen Individual 53
## 3956 Hochfilzen Individual 53
## 3957 Hochfilzen Individual 53
## 3958 Hochfilzen Individual 53
## 3959 Hochfilzen Individual 53
## 3960 Hochfilzen Individual 53
## 3961 Hochfilzen Individual 53
## 3962 Hochfilzen Individual 53
## 3963 Hochfilzen Individual 53
## 3964 Hochfilzen Individual 53
## 3965 Hochfilzen Individual 53
## 3966 Hochfilzen Individual 53
## 3967 Hochfilzen Individual 53
## 3968 Hochfilzen Individual 53
## 3969 Hochfilzen Individual 53
## 3970 Hochfilzen Individual 53
## 3971 Hochfilzen Individual 53
## 3972 Hochfilzen Individual 53
## 3973 Hochfilzen Individual 53
## 3974 Hochfilzen Individual 53
## 3975 Hochfilzen Individual 53
## 3976 Hochfilzen Individual 53
## 3977 Hochfilzen Individual 53
## 3978 Hochfilzen Individual 53
## 3979 Hochfilzen Individual 53
## 3980 Hochfilzen Individual 53
## 3981 Hochfilzen Individual 53
## 3982 Hochfilzen Individual 53
## 3983 Hochfilzen Individual 53
## 3984 Hochfilzen Individual 53
## 3985 Hochfilzen Individual 53
## 3986 Hochfilzen Individual 53
## 3987 Hochfilzen Mass start 54
## 3988 Hochfilzen Mass start 54
## 3989 Hochfilzen Mass start 54
## 3990 Hochfilzen Mass start 54
## 3991 Hochfilzen Mass start 54
## 3992 Hochfilzen Mass start 54
## 3993 Hochfilzen Mass start 54
## 3994 Hochfilzen Mass start 54
## 3995 Hochfilzen Mass start 54
## 3996 Hochfilzen Mass start 54
## 3997 Hochfilzen Mass start 54
## 3998 Hochfilzen Mass start 54
## 3999 Hochfilzen Mass start 54
## 4000 Hochfilzen Mass start 54
## 4001 Hochfilzen Mass start 54
## 4002 Hochfilzen Mass start 54
## 4003 Hochfilzen Mass start 54
## 4004 Hochfilzen Mass start 54
## 4005 Hochfilzen Mass start 54
## 4006 Hochfilzen Mass start 54
## 4007 Hochfilzen Mass start 54
## 4008 Hochfilzen Mass start 54
## 4009 Hochfilzen Mass start 54
## 4010 Hochfilzen Mass start 54
## 4011 Hochfilzen Mass start 54
## 4012 Hochfilzen Mass start 54
## 4013 Hochfilzen Mass start 54
## 4014 Hochfilzen Mass start 54
## 4015 Hochfilzen Mass start 54
## 4016 Hochfilzen Mass start 54
## 4017 Hochfilzen Pursuit 55
## 4018 Hochfilzen Pursuit 55
## 4019 Hochfilzen Pursuit 55
## 4020 Hochfilzen Pursuit 55
## 4021 Hochfilzen Pursuit 55
## 4022 Hochfilzen Pursuit 55
## 4023 Hochfilzen Pursuit 55
## 4024 Hochfilzen Pursuit 55
## 4025 Hochfilzen Pursuit 55
## 4026 Hochfilzen Pursuit 55
## 4027 Hochfilzen Pursuit 55
## 4028 Hochfilzen Pursuit 55
## 4029 Hochfilzen Pursuit 55
## 4030 Hochfilzen Pursuit 55
## 4031 Hochfilzen Pursuit 55
## 4032 Hochfilzen Pursuit 55
## 4033 Hochfilzen Pursuit 55
## 4034 Hochfilzen Pursuit 55
## 4035 Hochfilzen Pursuit 55
## 4036 Hochfilzen Pursuit 55
## 4037 Hochfilzen Pursuit 55
## 4038 Hochfilzen Pursuit 55
## 4039 Hochfilzen Pursuit 55
## 4040 Hochfilzen Pursuit 55
## 4041 Hochfilzen Pursuit 55
## 4042 Hochfilzen Pursuit 55
## 4043 Hochfilzen Pursuit 55
## 4044 Hochfilzen Pursuit 55
## 4045 Hochfilzen Pursuit 55
## 4046 Hochfilzen Pursuit 55
## 4047 Hochfilzen Pursuit 55
## 4048 Hochfilzen Pursuit 55
## 4049 Hochfilzen Pursuit 55
## 4050 Hochfilzen Pursuit 55
## 4051 Hochfilzen Pursuit 55
## 4052 Hochfilzen Pursuit 55
## 4053 Hochfilzen Pursuit 55
## 4054 Hochfilzen Pursuit 55
## 4055 Hochfilzen Pursuit 55
## 4056 Hochfilzen Pursuit 55
## 4057 Hochfilzen Pursuit 55
## 4058 Hochfilzen Pursuit 55
## 4059 Hochfilzen Pursuit 55
## 4060 Hochfilzen Pursuit 55
## 4061 Hochfilzen Pursuit 55
## 4062 Hochfilzen Pursuit 55
## 4063 Hochfilzen Pursuit 55
## 4064 Hochfilzen Pursuit 55
## 4065 Hochfilzen Pursuit 55
## 4066 Hochfilzen Pursuit 55
## 4067 Hochfilzen Pursuit 55
## 4068 Hochfilzen Pursuit 55
## 4069 Hochfilzen Pursuit 55
## 4070 Hochfilzen Pursuit 55
## 4071 Hochfilzen Pursuit 55
## 4072 Hochfilzen Pursuit 55
## 4073 Hochfilzen Pursuit 55
## 4074 Kontiolahti Sprint 58
## 4075 Kontiolahti Sprint 58
## 4076 Kontiolahti Sprint 58
## 4077 Kontiolahti Sprint 58
## 4078 Kontiolahti Sprint 58
## 4079 Kontiolahti Sprint 58
## 4080 Kontiolahti Sprint 58
## 4081 Kontiolahti Sprint 58
## 4082 Kontiolahti Sprint 58
## 4083 Kontiolahti Sprint 58
## 4084 Kontiolahti Sprint 58
## 4085 Kontiolahti Sprint 58
## 4086 Kontiolahti Sprint 58
## 4087 Kontiolahti Sprint 58
## 4088 Kontiolahti Sprint 58
## 4089 Kontiolahti Sprint 58
## 4090 Kontiolahti Sprint 58
## 4091 Kontiolahti Sprint 58
## 4092 Kontiolahti Sprint 58
## 4093 Kontiolahti Sprint 58
## 4094 Kontiolahti Sprint 58
## 4095 Kontiolahti Sprint 58
## 4096 Kontiolahti Sprint 58
## 4097 Kontiolahti Sprint 58
## 4098 Kontiolahti Sprint 58
## 4099 Kontiolahti Sprint 58
## 4100 Kontiolahti Sprint 58
## 4101 Kontiolahti Sprint 58
## 4102 Kontiolahti Sprint 58
## 4103 Kontiolahti Sprint 58
## 4104 Kontiolahti Sprint 58
## 4105 Kontiolahti Sprint 58
## 4106 Kontiolahti Sprint 58
## 4107 Kontiolahti Sprint 58
## 4108 Kontiolahti Sprint 58
## 4109 Kontiolahti Sprint 58
## 4110 Kontiolahti Sprint 58
## 4111 Kontiolahti Sprint 58
## 4112 Kontiolahti Sprint 58
## 4113 Kontiolahti Sprint 58
## 4114 Kontiolahti Sprint 58
## 4115 Kontiolahti Sprint 58
## 4116 Kontiolahti Sprint 58
## 4117 Kontiolahti Sprint 58
## 4118 Kontiolahti Sprint 58
## 4119 Kontiolahti Sprint 58
## 4120 Kontiolahti Sprint 58
## 4121 Kontiolahti Sprint 58
## 4122 Kontiolahti Sprint 58
## 4123 Kontiolahti Sprint 58
## 4124 Kontiolahti Sprint 58
## 4125 Kontiolahti Sprint 58
## 4126 Kontiolahti Sprint 58
## 4127 Kontiolahti Sprint 58
## 4128 Kontiolahti Sprint 58
## 4129 Kontiolahti Sprint 58
## 4130 Kontiolahti Sprint 58
## 4131 Kontiolahti Sprint 58
## 4132 Kontiolahti Sprint 58
## 4133 Kontiolahti Sprint 58
## 4134 Kontiolahti Sprint 58
## 4135 Kontiolahti Sprint 58
## 4136 Kontiolahti Sprint 58
## 4137 Kontiolahti Sprint 58
## 4138 Kontiolahti Sprint 58
## 4139 Kontiolahti Sprint 58
## 4140 Kontiolahti Sprint 58
## 4141 Kontiolahti Sprint 58
## 4142 Kontiolahti Sprint 58
## 4143 Kontiolahti Sprint 58
## 4144 Kontiolahti Sprint 58
## 4145 Kontiolahti Sprint 58
## 4146 Kontiolahti Sprint 58
## 4147 Kontiolahti Sprint 58
## 4148 Kontiolahti Sprint 58
## 4149 Kontiolahti Sprint 58
## 4150 Kontiolahti Sprint 58
## 4151 Kontiolahti Sprint 58
## 4152 Kontiolahti Sprint 58
## 4153 Kontiolahti Sprint 58
## 4154 Kontiolahti Sprint 58
## 4155 Kontiolahti Sprint 58
## 4156 Kontiolahti Sprint 58
## 4157 Kontiolahti Sprint 58
## 4158 Kontiolahti Sprint 58
## 4159 Kontiolahti Sprint 58
## 4160 Kontiolahti Sprint 58
## 4161 Kontiolahti Sprint 58
## 4162 Kontiolahti Sprint 58
## 4163 Kontiolahti Sprint 58
## 4164 Kontiolahti Sprint 58
## 4165 Kontiolahti Sprint 58
## 4166 Kontiolahti Sprint 58
## 4167 Kontiolahti Sprint 58
## 4168 Kontiolahti Sprint 58
## 4169 Kontiolahti Sprint 58
## 4170 Kontiolahti Sprint 58
## 4171 Kontiolahti Sprint 58
## 4172 Kontiolahti Sprint 58
## 4173 Kontiolahti Sprint 58
## 4174 Kontiolahti Sprint 58
## 4175 Kontiolahti Pursuit 57
## 4176 Kontiolahti Pursuit 57
## 4177 Kontiolahti Pursuit 57
## 4178 Kontiolahti Pursuit 57
## 4179 Kontiolahti Pursuit 57
## 4180 Kontiolahti Pursuit 57
## 4181 Kontiolahti Pursuit 57
## 4182 Kontiolahti Pursuit 57
## 4183 Kontiolahti Pursuit 57
## 4184 Kontiolahti Pursuit 57
## 4185 Kontiolahti Pursuit 57
## 4186 Kontiolahti Pursuit 57
## 4187 Kontiolahti Pursuit 57
## 4188 Kontiolahti Pursuit 57
## 4189 Kontiolahti Pursuit 57
## 4190 Kontiolahti Pursuit 57
## 4191 Kontiolahti Pursuit 57
## 4192 Kontiolahti Pursuit 57
## 4193 Kontiolahti Pursuit 57
## 4194 Kontiolahti Pursuit 57
## 4195 Kontiolahti Pursuit 57
## 4196 Kontiolahti Pursuit 57
## 4197 Kontiolahti Pursuit 57
## 4198 Kontiolahti Pursuit 57
## 4199 Kontiolahti Pursuit 57
## 4200 Kontiolahti Pursuit 57
## 4201 Kontiolahti Pursuit 57
## 4202 Kontiolahti Pursuit 57
## 4203 Kontiolahti Pursuit 57
## 4204 Kontiolahti Pursuit 57
## 4205 Kontiolahti Pursuit 57
## 4206 Kontiolahti Pursuit 57
## 4207 Kontiolahti Pursuit 57
## 4208 Kontiolahti Pursuit 57
## 4209 Kontiolahti Pursuit 57
## 4210 Kontiolahti Pursuit 57
## 4211 Kontiolahti Pursuit 57
## 4212 Kontiolahti Pursuit 57
## 4213 Kontiolahti Pursuit 57
## 4214 Kontiolahti Pursuit 57
## 4215 Kontiolahti Pursuit 57
## 4216 Kontiolahti Pursuit 57
## 4217 Kontiolahti Pursuit 57
## 4218 Kontiolahti Pursuit 57
## 4219 Kontiolahti Pursuit 57
## 4220 Kontiolahti Pursuit 57
## 4221 Kontiolahti Pursuit 57
## 4222 Kontiolahti Pursuit 57
## 4223 Kontiolahti Pursuit 57
## 4224 Kontiolahti Pursuit 57
## 4225 Kontiolahti Pursuit 57
## 4226 Kontiolahti Pursuit 57
## 4227 Kontiolahti Pursuit 57
## 4228 Kontiolahti Pursuit 57
## 4229 Nove_Mesto Sprint 61
## 4230 Nove_Mesto Sprint 61
## 4231 Nove_Mesto Sprint 61
## 4232 Nove_Mesto Sprint 61
## 4233 Nove_Mesto Sprint 61
## 4234 Nove_Mesto Sprint 61
## 4235 Nove_Mesto Sprint 61
## 4236 Nove_Mesto Sprint 61
## 4237 Nove_Mesto Sprint 61
## 4238 Nove_Mesto Sprint 61
## 4239 Nove_Mesto Sprint 61
## 4240 Nove_Mesto Sprint 61
## 4241 Nove_Mesto Sprint 61
## 4242 Nove_Mesto Sprint 61
## 4243 Nove_Mesto Sprint 61
## 4244 Nove_Mesto Sprint 61
## 4245 Nove_Mesto Sprint 61
## 4246 Nove_Mesto Sprint 61
## 4247 Nove_Mesto Sprint 61
## 4248 Nove_Mesto Sprint 61
## 4249 Nove_Mesto Sprint 61
## 4250 Nove_Mesto Sprint 61
## 4251 Nove_Mesto Sprint 61
## 4252 Nove_Mesto Sprint 61
## 4253 Nove_Mesto Sprint 61
## 4254 Nove_Mesto Sprint 61
## 4255 Nove_Mesto Sprint 61
## 4256 Nove_Mesto Sprint 61
## 4257 Nove_Mesto Sprint 61
## 4258 Nove_Mesto Sprint 61
## 4259 Nove_Mesto Sprint 61
## 4260 Nove_Mesto Sprint 61
## 4261 Nove_Mesto Sprint 61
## 4262 Nove_Mesto Sprint 61
## 4263 Nove_Mesto Sprint 61
## 4264 Nove_Mesto Sprint 61
## 4265 Nove_Mesto Sprint 61
## 4266 Nove_Mesto Sprint 61
## 4267 Nove_Mesto Sprint 61
## 4268 Nove_Mesto Sprint 61
## 4269 Nove_Mesto Sprint 61
## 4270 Nove_Mesto Sprint 61
## 4271 Nove_Mesto Sprint 61
## 4272 Nove_Mesto Sprint 61
## 4273 Nove_Mesto Sprint 61
## 4274 Nove_Mesto Sprint 61
## 4275 Nove_Mesto Sprint 61
## 4276 Nove_Mesto Sprint 61
## 4277 Nove_Mesto Sprint 61
## 4278 Nove_Mesto Sprint 61
## 4279 Nove_Mesto Sprint 61
## 4280 Nove_Mesto Sprint 61
## 4281 Nove_Mesto Sprint 61
## 4282 Nove_Mesto Sprint 61
## 4283 Nove_Mesto Sprint 61
## 4284 Nove_Mesto Sprint 61
## 4285 Nove_Mesto Sprint 61
## 4286 Nove_Mesto Sprint 61
## 4287 Nove_Mesto Sprint 61
## 4288 Nove_Mesto Sprint 61
## 4289 Nove_Mesto Sprint 61
## 4290 Nove_Mesto Sprint 61
## 4291 Nove_Mesto Sprint 61
## 4292 Nove_Mesto Sprint 61
## 4293 Nove_Mesto Sprint 61
## 4294 Nove_Mesto Sprint 61
## 4295 Nove_Mesto Sprint 61
## 4296 Nove_Mesto Sprint 61
## 4297 Nove_Mesto Sprint 61
## 4298 Nove_Mesto Sprint 61
## 4299 Nove_Mesto Sprint 61
## 4300 Nove_Mesto Sprint 61
## 4301 Nove_Mesto Sprint 61
## 4302 Nove_Mesto Sprint 61
## 4303 Nove_Mesto Sprint 61
## 4304 Nove_Mesto Sprint 61
## 4305 Nove_Mesto Sprint 61
## 4306 Nove_Mesto Sprint 61
## 4307 Nove_Mesto Sprint 61
## 4308 Nove_Mesto Sprint 61
## 4309 Nove_Mesto Sprint 61
## 4310 Nove_Mesto Sprint 61
## 4311 Nove_Mesto Sprint 61
## 4312 Nove_Mesto Sprint 61
## 4313 Nove_Mesto Sprint 61
## 4314 Nove_Mesto Sprint 61
## 4315 Nove_Mesto Sprint 61
## 4316 Nove_Mesto Sprint 61
## 4317 Nove_Mesto Sprint 61
## 4318 Nove_Mesto Sprint 61
## 4319 Nove_Mesto Sprint 61
## 4320 Nove_Mesto Sprint 61
## 4321 Nove_Mesto Sprint 61
## 4322 Nove_Mesto Sprint 61
## 4323 Nove_Mesto Sprint 61
## 4324 Nove_Mesto Sprint 61
## 4325 Nove_Mesto Sprint 61
## 4326 Nove_Mesto Sprint 61
## 4327 Nove_Mesto Sprint 61
## 4328 Nove_Mesto Sprint 61
## 4329 Nove_Mesto Sprint 61
## 4330 Nove_Mesto Mass start 59
## 4331 Nove_Mesto Mass start 59
## 4332 Nove_Mesto Mass start 59
## 4333 Nove_Mesto Mass start 59
## 4334 Nove_Mesto Mass start 59
## 4335 Nove_Mesto Mass start 59
## 4336 Nove_Mesto Mass start 59
## 4337 Nove_Mesto Mass start 59
## 4338 Nove_Mesto Mass start 59
## 4339 Nove_Mesto Mass start 59
## 4340 Nove_Mesto Mass start 59
## 4341 Nove_Mesto Mass start 59
## 4342 Nove_Mesto Mass start 59
## 4343 Nove_Mesto Mass start 59
## 4344 Nove_Mesto Mass start 59
## 4345 Nove_Mesto Mass start 59
## 4346 Nove_Mesto Mass start 59
## 4347 Nove_Mesto Mass start 59
## 4348 Nove_Mesto Mass start 59
## 4349 Nove_Mesto Mass start 59
## 4350 Nove_Mesto Mass start 59
## 4351 Nove_Mesto Mass start 59
## 4352 Nove_Mesto Mass start 59
## 4353 Nove_Mesto Mass start 59
## 4354 Nove_Mesto Mass start 59
## 4355 Nove_Mesto Mass start 59
## 4356 Nove_Mesto Mass start 59
## 4357 Nove_Mesto Mass start 59
## 4358 Nove_Mesto Mass start 59
## 4359 Nove_Mesto Mass start 59
## 4360 Nove_Mesto Pursuit 60
## 4361 Nove_Mesto Pursuit 60
## 4362 Nove_Mesto Pursuit 60
## 4363 Nove_Mesto Pursuit 60
## 4364 Nove_Mesto Pursuit 60
## 4365 Nove_Mesto Pursuit 60
## 4366 Nove_Mesto Pursuit 60
## 4367 Nove_Mesto Pursuit 60
## 4368 Nove_Mesto Pursuit 60
## 4369 Nove_Mesto Pursuit 60
## 4370 Nove_Mesto Pursuit 60
## 4371 Nove_Mesto Pursuit 60
## 4372 Nove_Mesto Pursuit 60
## 4373 Nove_Mesto Pursuit 60
## 4374 Nove_Mesto Pursuit 60
## 4375 Nove_Mesto Pursuit 60
## 4376 Nove_Mesto Pursuit 60
## 4377 Nove_Mesto Pursuit 60
## 4378 Nove_Mesto Pursuit 60
## 4379 Nove_Mesto Pursuit 60
## 4380 Nove_Mesto Pursuit 60
## 4381 Nove_Mesto Pursuit 60
## 4382 Nove_Mesto Pursuit 60
## 4383 Nove_Mesto Pursuit 60
## 4384 Nove_Mesto Pursuit 60
## 4385 Nove_Mesto Pursuit 60
## 4386 Nove_Mesto Pursuit 60
## 4387 Nove_Mesto Pursuit 60
## 4388 Nove_Mesto Pursuit 60
## 4389 Nove_Mesto Pursuit 60
## 4390 Nove_Mesto Pursuit 60
## 4391 Nove_Mesto Pursuit 60
## 4392 Nove_Mesto Pursuit 60
## 4393 Nove_Mesto Pursuit 60
## 4394 Nove_Mesto Pursuit 60
## 4395 Nove_Mesto Pursuit 60
## 4396 Nove_Mesto Pursuit 60
## 4397 Nove_Mesto Pursuit 60
## 4398 Nove_Mesto Pursuit 60
## 4399 Nove_Mesto Pursuit 60
## 4400 Nove_Mesto Pursuit 60
## 4401 Nove_Mesto Pursuit 60
## 4402 Nove_Mesto Pursuit 60
## 4403 Nove_Mesto Pursuit 60
## 4404 Nove_Mesto Pursuit 60
## 4405 Nove_Mesto Pursuit 60
## 4406 Nove_Mesto Pursuit 60
## 4407 Nove_Mesto Pursuit 60
## 4408 Nove_Mesto Pursuit 60
## 4409 Nove_Mesto Pursuit 60
## 4410 Nove_Mesto Pursuit 60
## 4411 Nove_Mesto Pursuit 60
## 4412 Nove_Mesto Pursuit 60
## 4413 Nove_Mesto Pursuit 60
## 4414 Nove_Mesto Pursuit 60
## 4415 Nove_Mesto Pursuit 60
## 4416 Nove_Mesto Pursuit 60
## 4417 Oberhof Sprint 64
## 4418 Oberhof Sprint 64
## 4419 Oberhof Sprint 64
## 4420 Oberhof Sprint 64
## 4421 Oberhof Sprint 64
## 4422 Oberhof Sprint 64
## 4423 Oberhof Sprint 64
## 4424 Oberhof Sprint 64
## 4425 Oberhof Sprint 64
## 4426 Oberhof Sprint 64
## 4427 Oberhof Sprint 64
## 4428 Oberhof Sprint 64
## 4429 Oberhof Sprint 64
## 4430 Oberhof Sprint 64
## 4431 Oberhof Sprint 64
## 4432 Oberhof Sprint 64
## 4433 Oberhof Sprint 64
## 4434 Oberhof Sprint 64
## 4435 Oberhof Sprint 64
## 4436 Oberhof Sprint 64
## 4437 Oberhof Sprint 64
## 4438 Oberhof Sprint 64
## 4439 Oberhof Sprint 64
## 4440 Oberhof Sprint 64
## 4441 Oberhof Sprint 64
## 4442 Oberhof Sprint 64
## 4443 Oberhof Sprint 64
## 4444 Oberhof Sprint 64
## 4445 Oberhof Sprint 64
## 4446 Oberhof Sprint 64
## 4447 Oberhof Sprint 64
## 4448 Oberhof Sprint 64
## 4449 Oberhof Sprint 64
## 4450 Oberhof Sprint 64
## 4451 Oberhof Sprint 64
## 4452 Oberhof Sprint 64
## 4453 Oberhof Sprint 64
## 4454 Oberhof Sprint 64
## 4455 Oberhof Sprint 64
## 4456 Oberhof Sprint 64
## 4457 Oberhof Sprint 64
## 4458 Oberhof Sprint 64
## 4459 Oberhof Sprint 64
## 4460 Oberhof Sprint 64
## 4461 Oberhof Sprint 64
## 4462 Oberhof Sprint 64
## 4463 Oberhof Sprint 64
## 4464 Oberhof Sprint 64
## 4465 Oberhof Sprint 64
## 4466 Oberhof Sprint 64
## 4467 Oberhof Sprint 64
## 4468 Oberhof Sprint 64
## 4469 Oberhof Sprint 64
## 4470 Oberhof Sprint 64
## 4471 Oberhof Sprint 64
## 4472 Oberhof Sprint 64
## 4473 Oberhof Sprint 64
## 4474 Oberhof Sprint 64
## 4475 Oberhof Sprint 64
## 4476 Oberhof Sprint 64
## 4477 Oberhof Sprint 64
## 4478 Oberhof Sprint 64
## 4479 Oberhof Sprint 64
## 4480 Oberhof Sprint 64
## 4481 Oberhof Sprint 64
## 4482 Oberhof Sprint 64
## 4483 Oberhof Sprint 64
## 4484 Oberhof Sprint 64
## 4485 Oberhof Sprint 64
## 4486 Oberhof Sprint 64
## 4487 Oberhof Sprint 64
## 4488 Oberhof Sprint 64
## 4489 Oberhof Sprint 64
## 4490 Oberhof Sprint 64
## 4491 Oberhof Sprint 64
## 4492 Oberhof Sprint 64
## 4493 Oberhof Sprint 64
## 4494 Oberhof Sprint 64
## 4495 Oberhof Sprint 64
## 4496 Oberhof Sprint 64
## 4497 Oberhof Sprint 64
## 4498 Oberhof Sprint 64
## 4499 Oberhof Sprint 64
## 4500 Oberhof Sprint 64
## 4501 Oberhof Sprint 64
## 4502 Oberhof Sprint 64
## 4503 Oberhof Sprint 64
## 4504 Oberhof Sprint 64
## 4505 Oberhof Sprint 64
## 4506 Oberhof Sprint 64
## 4507 Oberhof Sprint 64
## 4508 Oberhof Sprint 64
## 4509 Oberhof Sprint 64
## 4510 Oberhof Sprint 64
## 4511 Oberhof Sprint 64
## 4512 Oberhof Sprint 64
## 4513 Oberhof Sprint 64
## 4514 Oberhof Sprint 64
## 4515 Oberhof Sprint 64
## 4516 Oberhof Sprint 64
## 4517 Oberhof Sprint 64
## 4518 Oberhof Sprint 64
## 4519 Oberhof Mass start 62
## 4520 Oberhof Mass start 62
## 4521 Oberhof Mass start 62
## 4522 Oberhof Mass start 62
## 4523 Oberhof Mass start 62
## 4524 Oberhof Mass start 62
## 4525 Oberhof Mass start 62
## 4526 Oberhof Mass start 62
## 4527 Oberhof Mass start 62
## 4528 Oberhof Mass start 62
## 4529 Oberhof Mass start 62
## 4530 Oberhof Mass start 62
## 4531 Oberhof Mass start 62
## 4532 Oberhof Mass start 62
## 4533 Oberhof Mass start 62
## 4534 Oberhof Mass start 62
## 4535 Oberhof Mass start 62
## 4536 Oberhof Mass start 62
## 4537 Oberhof Mass start 62
## 4538 Oberhof Mass start 62
## 4539 Oberhof Mass start 62
## 4540 Oberhof Mass start 62
## 4541 Oberhof Mass start 62
## 4542 Oberhof Mass start 62
## 4543 Oberhof Mass start 62
## 4544 Oberhof Mass start 62
## 4545 Oberhof Mass start 62
## 4546 Oberhof Mass start 62
## 4547 Oberhof Mass start 62
## 4548 Oberhof Pursuit 63
## 4549 Oberhof Pursuit 63
## 4550 Oberhof Pursuit 63
## 4551 Oberhof Pursuit 63
## 4552 Oberhof Pursuit 63
## 4553 Oberhof Pursuit 63
## 4554 Oberhof Pursuit 63
## 4555 Oberhof Pursuit 63
## 4556 Oberhof Pursuit 63
## 4557 Oberhof Pursuit 63
## 4558 Oberhof Pursuit 63
## 4559 Oberhof Pursuit 63
## 4560 Oberhof Pursuit 63
## 4561 Oberhof Pursuit 63
## 4562 Oberhof Pursuit 63
## 4563 Oberhof Pursuit 63
## 4564 Oberhof Pursuit 63
## 4565 Oberhof Pursuit 63
## 4566 Oberhof Pursuit 63
## 4567 Oberhof Pursuit 63
## 4568 Oberhof Pursuit 63
## 4569 Oberhof Pursuit 63
## 4570 Oberhof Pursuit 63
## 4571 Oberhof Pursuit 63
## 4572 Oberhof Pursuit 63
## 4573 Oberhof Pursuit 63
## 4574 Oberhof Pursuit 63
## 4575 Oberhof Pursuit 63
## 4576 Oberhof Pursuit 63
## 4577 Oberhof Pursuit 63
## 4578 Oberhof Pursuit 63
## 4579 Oberhof Pursuit 63
## 4580 Oberhof Pursuit 63
## 4581 Oberhof Pursuit 63
## 4582 Oberhof Pursuit 63
## 4583 Oberhof Pursuit 63
## 4584 Oberhof Pursuit 63
## 4585 Oberhof Pursuit 63
## 4586 Oberhof Pursuit 63
## 4587 Oberhof Pursuit 63
## 4588 Oberhof Pursuit 63
## 4589 Oberhof Pursuit 63
## 4590 Oberhof Pursuit 63
## 4591 Oberhof Pursuit 63
## 4592 Oberhof Pursuit 63
## 4593 Oberhof Pursuit 63
## 4594 Oberhof Pursuit 63
## 4595 Oberhof Pursuit 63
## 4596 Oberhof Pursuit 63
## 4597 Oberhof Pursuit 63
## 4598 Oberhof Pursuit 63
## 4599 Oberhof Pursuit 63
## 4600 Oberhof Pursuit 63
## 4601 Oberhof Pursuit 63
## 4602 Oberhof Pursuit 63
## 4603 Oberhof Pursuit 63
## 4604 Oestersund Sprint 67
## 4605 Oestersund Sprint 67
## 4606 Oestersund Sprint 67
## 4607 Oestersund Sprint 67
## 4608 Oestersund Sprint 67
## 4609 Oestersund Sprint 67
## 4610 Oestersund Sprint 67
## 4611 Oestersund Sprint 67
## 4612 Oestersund Sprint 67
## 4613 Oestersund Sprint 67
## 4614 Oestersund Sprint 67
## 4615 Oestersund Sprint 67
## 4616 Oestersund Sprint 67
## 4617 Oestersund Sprint 67
## 4618 Oestersund Sprint 67
## 4619 Oestersund Sprint 67
## 4620 Oestersund Sprint 67
## 4621 Oestersund Sprint 67
## 4622 Oestersund Sprint 67
## 4623 Oestersund Sprint 67
## 4624 Oestersund Sprint 67
## 4625 Oestersund Sprint 67
## 4626 Oestersund Sprint 67
## 4627 Oestersund Sprint 67
## 4628 Oestersund Sprint 67
## 4629 Oestersund Sprint 67
## 4630 Oestersund Sprint 67
## 4631 Oestersund Sprint 67
## 4632 Oestersund Sprint 67
## 4633 Oestersund Sprint 67
## 4634 Oestersund Sprint 67
## 4635 Oestersund Sprint 67
## 4636 Oestersund Sprint 67
## 4637 Oestersund Sprint 67
## 4638 Oestersund Sprint 67
## 4639 Oestersund Sprint 67
## 4640 Oestersund Sprint 67
## 4641 Oestersund Sprint 67
## 4642 Oestersund Sprint 67
## 4643 Oestersund Sprint 67
## 4644 Oestersund Sprint 67
## 4645 Oestersund Sprint 67
## 4646 Oestersund Sprint 67
## 4647 Oestersund Sprint 67
## 4648 Oestersund Sprint 67
## 4649 Oestersund Sprint 67
## 4650 Oestersund Sprint 67
## 4651 Oestersund Sprint 67
## 4652 Oestersund Sprint 67
## 4653 Oestersund Sprint 67
## 4654 Oestersund Sprint 67
## 4655 Oestersund Sprint 67
## 4656 Oestersund Sprint 67
## 4657 Oestersund Sprint 67
## 4658 Oestersund Sprint 67
## 4659 Oestersund Sprint 67
## 4660 Oestersund Sprint 67
## 4661 Oestersund Sprint 67
## 4662 Oestersund Sprint 67
## 4663 Oestersund Sprint 67
## 4664 Oestersund Sprint 67
## 4665 Oestersund Sprint 67
## 4666 Oestersund Sprint 67
## 4667 Oestersund Sprint 67
## 4668 Oestersund Sprint 67
## 4669 Oestersund Sprint 67
## 4670 Oestersund Sprint 67
## 4671 Oestersund Sprint 67
## 4672 Oestersund Sprint 67
## 4673 Oestersund Sprint 67
## 4674 Oestersund Sprint 67
## 4675 Oestersund Sprint 67
## 4676 Oestersund Sprint 67
## 4677 Oestersund Sprint 67
## 4678 Oestersund Sprint 67
## 4679 Oestersund Sprint 67
## 4680 Oestersund Sprint 67
## 4681 Oestersund Sprint 67
## 4682 Oestersund Sprint 67
## 4683 Oestersund Sprint 67
## 4684 Oestersund Sprint 67
## 4685 Oestersund Sprint 67
## 4686 Oestersund Sprint 67
## 4687 Oestersund Sprint 67
## 4688 Oestersund Sprint 67
## 4689 Oestersund Sprint 67
## 4690 Oestersund Sprint 67
## 4691 Oestersund Sprint 67
## 4692 Oestersund Sprint 67
## 4693 Oestersund Sprint 67
## 4694 Oestersund Sprint 67
## 4695 Oestersund Sprint 67
## 4696 Oestersund Sprint 67
## 4697 Oestersund Sprint 67
## 4698 Oestersund Sprint 67
## 4699 Oestersund Sprint 67
## 4700 Oestersund Sprint 67
## 4701 Oestersund Sprint 67
## 4702 Oestersund Sprint 67
## 4703 Oestersund Sprint 67
## 4704 Oestersund Sprint 67
## 4705 Oestersund Sprint 67
## 4706 Oestersund Sprint 67
## 4707 Oestersund Sprint 67
## 4708 Oestersund Sprint 67
## 4709 Oestersund Individual 65
## 4710 Oestersund Individual 65
## 4711 Oestersund Individual 65
## 4712 Oestersund Individual 65
## 4713 Oestersund Individual 65
## 4714 Oestersund Individual 65
## 4715 Oestersund Individual 65
## 4716 Oestersund Individual 65
## 4717 Oestersund Individual 65
## 4718 Oestersund Individual 65
## 4719 Oestersund Individual 65
## 4720 Oestersund Individual 65
## 4721 Oestersund Individual 65
## 4722 Oestersund Individual 65
## 4723 Oestersund Individual 65
## 4724 Oestersund Individual 65
## 4725 Oestersund Individual 65
## 4726 Oestersund Individual 65
## 4727 Oestersund Individual 65
## 4728 Oestersund Individual 65
## 4729 Oestersund Individual 65
## 4730 Oestersund Individual 65
## 4731 Oestersund Individual 65
## 4732 Oestersund Individual 65
## 4733 Oestersund Individual 65
## 4734 Oestersund Individual 65
## 4735 Oestersund Individual 65
## 4736 Oestersund Individual 65
## 4737 Oestersund Individual 65
## 4738 Oestersund Individual 65
## 4739 Oestersund Individual 65
## 4740 Oestersund Individual 65
## 4741 Oestersund Individual 65
## 4742 Oestersund Individual 65
## 4743 Oestersund Individual 65
## 4744 Oestersund Individual 65
## 4745 Oestersund Individual 65
## 4746 Oestersund Individual 65
## 4747 Oestersund Individual 65
## 4748 Oestersund Individual 65
## 4749 Oestersund Individual 65
## 4750 Oestersund Individual 65
## 4751 Oestersund Individual 65
## 4752 Oestersund Individual 65
## 4753 Oestersund Individual 65
## 4754 Oestersund Individual 65
## 4755 Oestersund Individual 65
## 4756 Oestersund Individual 65
## 4757 Oestersund Individual 65
## 4758 Oestersund Individual 65
## 4759 Oestersund Individual 65
## 4760 Oestersund Individual 65
## 4761 Oestersund Individual 65
## 4762 Oestersund Individual 65
## 4763 Oestersund Individual 65
## 4764 Oestersund Individual 65
## 4765 Oestersund Individual 65
## 4766 Oestersund Individual 65
## 4767 Oestersund Individual 65
## 4768 Oestersund Individual 65
## 4769 Oestersund Individual 65
## 4770 Oestersund Individual 65
## 4771 Oestersund Individual 65
## 4772 Oestersund Individual 65
## 4773 Oestersund Individual 65
## 4774 Oestersund Individual 65
## 4775 Oestersund Individual 65
## 4776 Oestersund Individual 65
## 4777 Oestersund Individual 65
## 4778 Oestersund Individual 65
## 4779 Oestersund Individual 65
## 4780 Oestersund Individual 65
## 4781 Oestersund Individual 65
## 4782 Oestersund Individual 65
## 4783 Oestersund Individual 65
## 4784 Oestersund Individual 65
## 4785 Oestersund Individual 65
## 4786 Oestersund Individual 65
## 4787 Oestersund Individual 65
## 4788 Oestersund Individual 65
## 4789 Oestersund Individual 65
## 4790 Oestersund Individual 65
## 4791 Oestersund Individual 65
## 4792 Oestersund Individual 65
## 4793 Oestersund Individual 65
## 4794 Oestersund Individual 65
## 4795 Oestersund Individual 65
## 4796 Oestersund Individual 65
## 4797 Oestersund Individual 65
## 4798 Oestersund Individual 65
## 4799 Oestersund Individual 65
## 4800 Oestersund Individual 65
## 4801 Oestersund Individual 65
## 4802 Oestersund Individual 65
## 4803 Oestersund Individual 65
## 4804 Oestersund Individual 65
## 4805 Oestersund Individual 65
## 4806 Oestersund Individual 65
## 4807 Oestersund Individual 65
## 4808 Oestersund Individual 65
## 4809 Oestersund Individual 65
## 4810 Oestersund Individual 65
## 4811 Oestersund Individual 65
## 4812 Oestersund Pursuit 66
## 4813 Oestersund Pursuit 66
## 4814 Oestersund Pursuit 66
## 4815 Oestersund Pursuit 66
## 4816 Oestersund Pursuit 66
## 4817 Oestersund Pursuit 66
## 4818 Oestersund Pursuit 66
## 4819 Oestersund Pursuit 66
## 4820 Oestersund Pursuit 66
## 4821 Oestersund Pursuit 66
## 4822 Oestersund Pursuit 66
## 4823 Oestersund Pursuit 66
## 4824 Oestersund Pursuit 66
## 4825 Oestersund Pursuit 66
## 4826 Oestersund Pursuit 66
## 4827 Oestersund Pursuit 66
## 4828 Oestersund Pursuit 66
## 4829 Oestersund Pursuit 66
## 4830 Oestersund Pursuit 66
## 4831 Oestersund Pursuit 66
## 4832 Oestersund Pursuit 66
## 4833 Oestersund Pursuit 66
## 4834 Oestersund Pursuit 66
## 4835 Oestersund Pursuit 66
## 4836 Oestersund Pursuit 66
## 4837 Oestersund Pursuit 66
## 4838 Oestersund Pursuit 66
## 4839 Oestersund Pursuit 66
## 4840 Oestersund Pursuit 66
## 4841 Oestersund Pursuit 66
## 4842 Oestersund Pursuit 66
## 4843 Oestersund Pursuit 66
## 4844 Oestersund Pursuit 66
## 4845 Oestersund Pursuit 66
## 4846 Oestersund Pursuit 66
## 4847 Oestersund Pursuit 66
## 4848 Oestersund Pursuit 66
## 4849 Oestersund Pursuit 66
## 4850 Oestersund Pursuit 66
## 4851 Oestersund Pursuit 66
## 4852 Oestersund Pursuit 66
## 4853 Oestersund Pursuit 66
## 4854 Oestersund Pursuit 66
## 4855 Oestersund Pursuit 66
## 4856 Oestersund Pursuit 66
## 4857 Oestersund Pursuit 66
## 4858 Oestersund Pursuit 66
## 4859 Oestersund Pursuit 66
## 4860 Oestersund Pursuit 66
## 4861 Oestersund Pursuit 66
## 4862 Oestersund Pursuit 66
## 4863 Oestersund Pursuit 66
## 4864 Oestersund Pursuit 66
## 4865 Oestersund Pursuit 66
## 4866 Oestersund Pursuit 66
## 4867 Oestersund Pursuit 66
## 4868 Oestersund Pursuit 66
## 4869 Oestersund Pursuit 66
## 4870 Oestersund Pursuit 66
## 4871 Oslo_Holmenkollen Sprint 70
## 4872 Oslo_Holmenkollen Sprint 70
## 4873 Oslo_Holmenkollen Sprint 70
## 4874 Oslo_Holmenkollen Sprint 70
## 4875 Oslo_Holmenkollen Sprint 70
## 4876 Oslo_Holmenkollen Sprint 70
## 4877 Oslo_Holmenkollen Sprint 70
## 4878 Oslo_Holmenkollen Sprint 70
## 4879 Oslo_Holmenkollen Sprint 70
## 4880 Oslo_Holmenkollen Sprint 70
## 4881 Oslo_Holmenkollen Sprint 70
## 4882 Oslo_Holmenkollen Sprint 70
## 4883 Oslo_Holmenkollen Sprint 70
## 4884 Oslo_Holmenkollen Sprint 70
## 4885 Oslo_Holmenkollen Sprint 70
## 4886 Oslo_Holmenkollen Sprint 70
## 4887 Oslo_Holmenkollen Sprint 70
## 4888 Oslo_Holmenkollen Sprint 70
## 4889 Oslo_Holmenkollen Sprint 70
## 4890 Oslo_Holmenkollen Sprint 70
## 4891 Oslo_Holmenkollen Sprint 70
## 4892 Oslo_Holmenkollen Sprint 70
## 4893 Oslo_Holmenkollen Sprint 70
## 4894 Oslo_Holmenkollen Sprint 70
## 4895 Oslo_Holmenkollen Sprint 70
## 4896 Oslo_Holmenkollen Sprint 70
## 4897 Oslo_Holmenkollen Sprint 70
## 4898 Oslo_Holmenkollen Sprint 70
## 4899 Oslo_Holmenkollen Sprint 70
## 4900 Oslo_Holmenkollen Sprint 70
## 4901 Oslo_Holmenkollen Sprint 70
## 4902 Oslo_Holmenkollen Sprint 70
## 4903 Oslo_Holmenkollen Sprint 70
## 4904 Oslo_Holmenkollen Sprint 70
## 4905 Oslo_Holmenkollen Sprint 70
## 4906 Oslo_Holmenkollen Sprint 70
## 4907 Oslo_Holmenkollen Sprint 70
## 4908 Oslo_Holmenkollen Sprint 70
## 4909 Oslo_Holmenkollen Sprint 70
## 4910 Oslo_Holmenkollen Sprint 70
## 4911 Oslo_Holmenkollen Sprint 70
## 4912 Oslo_Holmenkollen Sprint 70
## 4913 Oslo_Holmenkollen Sprint 70
## 4914 Oslo_Holmenkollen Sprint 70
## 4915 Oslo_Holmenkollen Sprint 70
## 4916 Oslo_Holmenkollen Sprint 70
## 4917 Oslo_Holmenkollen Sprint 70
## 4918 Oslo_Holmenkollen Sprint 70
## 4919 Oslo_Holmenkollen Sprint 70
## 4920 Oslo_Holmenkollen Sprint 70
## 4921 Oslo_Holmenkollen Sprint 70
## 4922 Oslo_Holmenkollen Sprint 70
## 4923 Oslo_Holmenkollen Sprint 70
## 4924 Oslo_Holmenkollen Sprint 70
## 4925 Oslo_Holmenkollen Sprint 70
## 4926 Oslo_Holmenkollen Sprint 70
## 4927 Oslo_Holmenkollen Sprint 70
## 4928 Oslo_Holmenkollen Sprint 70
## 4929 Oslo_Holmenkollen Sprint 70
## 4930 Oslo_Holmenkollen Sprint 70
## 4931 Oslo_Holmenkollen Sprint 70
## 4932 Oslo_Holmenkollen Sprint 70
## 4933 Oslo_Holmenkollen Sprint 70
## 4934 Oslo_Holmenkollen Sprint 70
## 4935 Oslo_Holmenkollen Sprint 70
## 4936 Oslo_Holmenkollen Sprint 70
## 4937 Oslo_Holmenkollen Sprint 70
## 4938 Oslo_Holmenkollen Sprint 70
## 4939 Oslo_Holmenkollen Sprint 70
## 4940 Oslo_Holmenkollen Sprint 70
## 4941 Oslo_Holmenkollen Sprint 70
## 4942 Oslo_Holmenkollen Sprint 70
## 4943 Oslo_Holmenkollen Sprint 70
## 4944 Oslo_Holmenkollen Sprint 70
## 4945 Oslo_Holmenkollen Sprint 70
## 4946 Oslo_Holmenkollen Sprint 70
## 4947 Oslo_Holmenkollen Sprint 70
## 4948 Oslo_Holmenkollen Sprint 70
## 4949 Oslo_Holmenkollen Sprint 70
## 4950 Oslo_Holmenkollen Sprint 70
## 4951 Oslo_Holmenkollen Sprint 70
## 4952 Oslo_Holmenkollen Sprint 70
## 4953 Oslo_Holmenkollen Sprint 70
## 4954 Oslo_Holmenkollen Sprint 70
## 4955 Oslo_Holmenkollen Sprint 70
## 4956 Oslo_Holmenkollen Sprint 70
## 4957 Oslo_Holmenkollen Sprint 70
## 4958 Oslo_Holmenkollen Sprint 70
## 4959 Oslo_Holmenkollen Sprint 70
## 4960 Oslo_Holmenkollen Sprint 70
## 4961 Oslo_Holmenkollen Sprint 70
## 4962 Oslo_Holmenkollen Sprint 70
## 4963 Oslo_Holmenkollen Sprint 70
## 4964 Oslo_Holmenkollen Sprint 70
## 4965 Oslo_Holmenkollen Sprint 70
## 4966 Oslo_Holmenkollen Sprint 70
## 4967 Oslo_Holmenkollen Sprint 70
## 4968 Oslo_Holmenkollen Sprint 70
## 4969 Oslo_Holmenkollen Sprint 70
## 4970 Oslo_Holmenkollen Sprint 70
## 4971 Oslo_Holmenkollen Sprint 70
## 4972 Oslo_Holmenkollen Sprint 70
## 4973 Oslo_Holmenkollen Sprint 70
## 4974 Oslo_Holmenkollen Sprint 70
## 4975 Oslo_Holmenkollen Sprint 70
## 4976 Oslo_Holmenkollen Sprint 70
## 4977 Oslo_Holmenkollen Sprint 70
## 4978 Oslo_Holmenkollen Mass start 68
## 4979 Oslo_Holmenkollen Mass start 68
## 4980 Oslo_Holmenkollen Mass start 68
## 4981 Oslo_Holmenkollen Mass start 68
## 4982 Oslo_Holmenkollen Mass start 68
## 4983 Oslo_Holmenkollen Mass start 68
## 4984 Oslo_Holmenkollen Mass start 68
## 4985 Oslo_Holmenkollen Mass start 68
## 4986 Oslo_Holmenkollen Mass start 68
## 4987 Oslo_Holmenkollen Mass start 68
## 4988 Oslo_Holmenkollen Mass start 68
## 4989 Oslo_Holmenkollen Mass start 68
## 4990 Oslo_Holmenkollen Mass start 68
## 4991 Oslo_Holmenkollen Mass start 68
## 4992 Oslo_Holmenkollen Mass start 68
## 4993 Oslo_Holmenkollen Mass start 68
## 4994 Oslo_Holmenkollen Mass start 68
## 4995 Oslo_Holmenkollen Mass start 68
## 4996 Oslo_Holmenkollen Mass start 68
## 4997 Oslo_Holmenkollen Mass start 68
## 4998 Oslo_Holmenkollen Mass start 68
## 4999 Oslo_Holmenkollen Mass start 68
## 5000 Oslo_Holmenkollen Mass start 68
## 5001 Oslo_Holmenkollen Mass start 68
## 5002 Oslo_Holmenkollen Mass start 68
## 5003 Oslo_Holmenkollen Mass start 68
## 5004 Oslo_Holmenkollen Mass start 68
## 5005 Oslo_Holmenkollen Mass start 68
## 5006 Oslo_Holmenkollen Mass start 68
## 5007 Oslo_Holmenkollen Mass start 68
## 5008 Oslo_Holmenkollen Pursuit 69
## 5009 Oslo_Holmenkollen Pursuit 69
## 5010 Oslo_Holmenkollen Pursuit 69
## 5011 Oslo_Holmenkollen Pursuit 69
## 5012 Oslo_Holmenkollen Pursuit 69
## 5013 Oslo_Holmenkollen Pursuit 69
## 5014 Oslo_Holmenkollen Pursuit 69
## 5015 Oslo_Holmenkollen Pursuit 69
## 5016 Oslo_Holmenkollen Pursuit 69
## 5017 Oslo_Holmenkollen Pursuit 69
## 5018 Oslo_Holmenkollen Pursuit 69
## 5019 Oslo_Holmenkollen Pursuit 69
## 5020 Oslo_Holmenkollen Pursuit 69
## 5021 Oslo_Holmenkollen Pursuit 69
## 5022 Oslo_Holmenkollen Pursuit 69
## 5023 Oslo_Holmenkollen Pursuit 69
## 5024 Oslo_Holmenkollen Pursuit 69
## 5025 Oslo_Holmenkollen Pursuit 69
## 5026 Oslo_Holmenkollen Pursuit 69
## 5027 Oslo_Holmenkollen Pursuit 69
## 5028 Oslo_Holmenkollen Pursuit 69
## 5029 Oslo_Holmenkollen Pursuit 69
## 5030 Oslo_Holmenkollen Pursuit 69
## 5031 Oslo_Holmenkollen Pursuit 69
## 5032 Oslo_Holmenkollen Pursuit 69
## 5033 Oslo_Holmenkollen Pursuit 69
## 5034 Oslo_Holmenkollen Pursuit 69
## 5035 Oslo_Holmenkollen Pursuit 69
## 5036 Oslo_Holmenkollen Pursuit 69
## 5037 Oslo_Holmenkollen Pursuit 69
## 5038 Oslo_Holmenkollen Pursuit 69
## 5039 Oslo_Holmenkollen Pursuit 69
## 5040 Oslo_Holmenkollen Pursuit 69
## 5041 Oslo_Holmenkollen Pursuit 69
## 5042 Oslo_Holmenkollen Pursuit 69
## 5043 Oslo_Holmenkollen Pursuit 69
## 5044 Oslo_Holmenkollen Pursuit 69
## 5045 Oslo_Holmenkollen Pursuit 69
## 5046 Oslo_Holmenkollen Pursuit 69
## 5047 Oslo_Holmenkollen Pursuit 69
## 5048 Oslo_Holmenkollen Pursuit 69
## 5049 Oslo_Holmenkollen Pursuit 69
## 5050 Oslo_Holmenkollen Pursuit 69
## 5051 Oslo_Holmenkollen Pursuit 69
## 5052 Oslo_Holmenkollen Pursuit 69
## 5053 Oslo_Holmenkollen Pursuit 69
## 5054 Oslo_Holmenkollen Pursuit 69
## 5055 Oslo_Holmenkollen Pursuit 69
## 5056 Oslo_Holmenkollen Pursuit 69
## 5057 Oslo_Holmenkollen Pursuit 69
## 5058 Oslo_Holmenkollen Pursuit 69
## 5059 Oslo_Holmenkollen Pursuit 69
## 5060 Oslo_Holmenkollen Pursuit 69
## 5061 Oslo_Holmenkollen Pursuit 69
## 5062 Oslo_Holmenkollen Pursuit 69
## 5063 Oslo_Holmenkollen Pursuit 69
## 5064 Pokljuka Sprint 72
## 5065 Pokljuka Sprint 72
## 5066 Pokljuka Sprint 72
## 5067 Pokljuka Sprint 72
## 5068 Pokljuka Sprint 72
## 5069 Pokljuka Sprint 72
## 5070 Pokljuka Sprint 72
## 5071 Pokljuka Sprint 72
## 5072 Pokljuka Sprint 72
## 5073 Pokljuka Sprint 72
## 5074 Pokljuka Sprint 72
## 5075 Pokljuka Sprint 72
## 5076 Pokljuka Sprint 72
## 5077 Pokljuka Sprint 72
## 5078 Pokljuka Sprint 72
## 5079 Pokljuka Sprint 72
## 5080 Pokljuka Sprint 72
## 5081 Pokljuka Sprint 72
## 5082 Pokljuka Sprint 72
## 5083 Pokljuka Sprint 72
## 5084 Pokljuka Sprint 72
## 5085 Pokljuka Sprint 72
## 5086 Pokljuka Sprint 72
## 5087 Pokljuka Sprint 72
## 5088 Pokljuka Sprint 72
## 5089 Pokljuka Sprint 72
## 5090 Pokljuka Sprint 72
## 5091 Pokljuka Sprint 72
## 5092 Pokljuka Sprint 72
## 5093 Pokljuka Sprint 72
## 5094 Pokljuka Sprint 72
## 5095 Pokljuka Sprint 72
## 5096 Pokljuka Sprint 72
## 5097 Pokljuka Sprint 72
## 5098 Pokljuka Sprint 72
## 5099 Pokljuka Sprint 72
## 5100 Pokljuka Sprint 72
## 5101 Pokljuka Sprint 72
## 5102 Pokljuka Sprint 72
## 5103 Pokljuka Sprint 72
## 5104 Pokljuka Sprint 72
## 5105 Pokljuka Sprint 72
## 5106 Pokljuka Sprint 72
## 5107 Pokljuka Sprint 72
## 5108 Pokljuka Sprint 72
## 5109 Pokljuka Sprint 72
## 5110 Pokljuka Sprint 72
## 5111 Pokljuka Sprint 72
## 5112 Pokljuka Sprint 72
## 5113 Pokljuka Sprint 72
## 5114 Pokljuka Sprint 72
## 5115 Pokljuka Sprint 72
## 5116 Pokljuka Sprint 72
## 5117 Pokljuka Sprint 72
## 5118 Pokljuka Sprint 72
## 5119 Pokljuka Sprint 72
## 5120 Pokljuka Sprint 72
## 5121 Pokljuka Sprint 72
## 5122 Pokljuka Sprint 72
## 5123 Pokljuka Sprint 72
## 5124 Pokljuka Sprint 72
## 5125 Pokljuka Sprint 72
## 5126 Pokljuka Sprint 72
## 5127 Pokljuka Sprint 72
## 5128 Pokljuka Sprint 72
## 5129 Pokljuka Sprint 72
## 5130 Pokljuka Sprint 72
## 5131 Pokljuka Sprint 72
## 5132 Pokljuka Sprint 72
## 5133 Pokljuka Sprint 72
## 5134 Pokljuka Sprint 72
## 5135 Pokljuka Sprint 72
## 5136 Pokljuka Sprint 72
## 5137 Pokljuka Sprint 72
## 5138 Pokljuka Sprint 72
## 5139 Pokljuka Sprint 72
## 5140 Pokljuka Sprint 72
## 5141 Pokljuka Sprint 72
## 5142 Pokljuka Sprint 72
## 5143 Pokljuka Sprint 72
## 5144 Pokljuka Sprint 72
## 5145 Pokljuka Sprint 72
## 5146 Pokljuka Sprint 72
## 5147 Pokljuka Sprint 72
## 5148 Pokljuka Sprint 72
## 5149 Pokljuka Sprint 72
## 5150 Pokljuka Sprint 72
## 5151 Pokljuka Sprint 72
## 5152 Pokljuka Sprint 72
## 5153 Pokljuka Sprint 72
## 5154 Pokljuka Sprint 72
## 5155 Pokljuka Sprint 72
## 5156 Pokljuka Sprint 72
## 5157 Pokljuka Sprint 72
## 5158 Pokljuka Sprint 72
## 5159 Pokljuka Sprint 72
## 5160 Pokljuka Sprint 72
## 5161 Pokljuka Sprint 72
## 5162 Pokljuka Sprint 72
## 5163 Pokljuka Sprint 72
## 5164 Pokljuka Sprint 72
## 5165 Pokljuka Sprint 72
## 5166 Pokljuka Sprint 72
## 5167 Pokljuka Sprint 72
## 5168 Pokljuka Pursuit 71
## 5169 Pokljuka Pursuit 71
## 5170 Pokljuka Pursuit 71
## 5171 Pokljuka Pursuit 71
## 5172 Pokljuka Pursuit 71
## 5173 Pokljuka Pursuit 71
## 5174 Pokljuka Pursuit 71
## 5175 Pokljuka Pursuit 71
## 5176 Pokljuka Pursuit 71
## 5177 Pokljuka Pursuit 71
## 5178 Pokljuka Pursuit 71
## 5179 Pokljuka Pursuit 71
## 5180 Pokljuka Pursuit 71
## 5181 Pokljuka Pursuit 71
## 5182 Pokljuka Pursuit 71
## 5183 Pokljuka Pursuit 71
## 5184 Pokljuka Pursuit 71
## 5185 Pokljuka Pursuit 71
## 5186 Pokljuka Pursuit 71
## 5187 Pokljuka Pursuit 71
## 5188 Pokljuka Pursuit 71
## 5189 Pokljuka Pursuit 71
## 5190 Pokljuka Pursuit 71
## 5191 Pokljuka Pursuit 71
## 5192 Pokljuka Pursuit 71
## 5193 Pokljuka Pursuit 71
## 5194 Pokljuka Pursuit 71
## 5195 Pokljuka Pursuit 71
## 5196 Pokljuka Pursuit 71
## 5197 Pokljuka Pursuit 71
## 5198 Pokljuka Pursuit 71
## 5199 Pokljuka Pursuit 71
## 5200 Pokljuka Pursuit 71
## 5201 Pokljuka Pursuit 71
## 5202 Pokljuka Pursuit 71
## 5203 Pokljuka Pursuit 71
## 5204 Pokljuka Pursuit 71
## 5205 Pokljuka Pursuit 71
## 5206 Pokljuka Pursuit 71
## 5207 Pokljuka Pursuit 71
## 5208 Pokljuka Pursuit 71
## 5209 Pokljuka Pursuit 71
## 5210 Pokljuka Pursuit 71
## 5211 Pokljuka Pursuit 71
## 5212 Pokljuka Pursuit 71
## 5213 Pokljuka Pursuit 71
## 5214 Pokljuka Pursuit 71
## 5215 Pokljuka Pursuit 71
## 5216 Pokljuka Pursuit 71
## 5217 Pokljuka Pursuit 71
## 5218 Pokljuka Pursuit 71
## 5219 Pokljuka Pursuit 71
## 5220 Pokljuka Pursuit 71
## 5221 Pokljuka Pursuit 71
## 5222 Pokljuka Pursuit 71
## 5223 Pokljuka Pursuit 71
## 5224 Pokljuka Pursuit 71
## 5225 Pokljuka Pursuit 71
## 5226 PyeongChang Sprint 74
## 5227 PyeongChang Sprint 74
## 5228 PyeongChang Sprint 74
## 5229 PyeongChang Sprint 74
## 5230 PyeongChang Sprint 74
## 5231 PyeongChang Sprint 74
## 5232 PyeongChang Sprint 74
## 5233 PyeongChang Sprint 74
## 5234 PyeongChang Sprint 74
## 5235 PyeongChang Sprint 74
## 5236 PyeongChang Sprint 74
## 5237 PyeongChang Sprint 74
## 5238 PyeongChang Sprint 74
## 5239 PyeongChang Sprint 74
## 5240 PyeongChang Sprint 74
## 5241 PyeongChang Sprint 74
## 5242 PyeongChang Sprint 74
## 5243 PyeongChang Sprint 74
## 5244 PyeongChang Sprint 74
## 5245 PyeongChang Sprint 74
## 5246 PyeongChang Sprint 74
## 5247 PyeongChang Sprint 74
## 5248 PyeongChang Sprint 74
## 5249 PyeongChang Sprint 74
## 5250 PyeongChang Sprint 74
## 5251 PyeongChang Sprint 74
## 5252 PyeongChang Sprint 74
## 5253 PyeongChang Sprint 74
## 5254 PyeongChang Sprint 74
## 5255 PyeongChang Sprint 74
## 5256 PyeongChang Sprint 74
## 5257 PyeongChang Sprint 74
## 5258 PyeongChang Sprint 74
## 5259 PyeongChang Sprint 74
## 5260 PyeongChang Sprint 74
## 5261 PyeongChang Sprint 74
## 5262 PyeongChang Sprint 74
## 5263 PyeongChang Sprint 74
## 5264 PyeongChang Sprint 74
## 5265 PyeongChang Sprint 74
## 5266 PyeongChang Sprint 74
## 5267 PyeongChang Sprint 74
## 5268 PyeongChang Sprint 74
## 5269 PyeongChang Sprint 74
## 5270 PyeongChang Sprint 74
## 5271 PyeongChang Sprint 74
## 5272 PyeongChang Sprint 74
## 5273 PyeongChang Sprint 74
## 5274 PyeongChang Sprint 74
## 5275 PyeongChang Sprint 74
## 5276 PyeongChang Sprint 74
## 5277 PyeongChang Sprint 74
## 5278 PyeongChang Sprint 74
## 5279 PyeongChang Sprint 74
## 5280 PyeongChang Sprint 74
## 5281 PyeongChang Sprint 74
## 5282 PyeongChang Sprint 74
## 5283 PyeongChang Sprint 74
## 5284 PyeongChang Sprint 74
## 5285 PyeongChang Sprint 74
## 5286 PyeongChang Sprint 74
## 5287 PyeongChang Sprint 74
## 5288 PyeongChang Sprint 74
## 5289 PyeongChang Sprint 74
## 5290 PyeongChang Sprint 74
## 5291 PyeongChang Sprint 74
## 5292 PyeongChang Sprint 74
## 5293 PyeongChang Sprint 74
## 5294 PyeongChang Sprint 74
## 5295 PyeongChang Sprint 74
## 5296 PyeongChang Sprint 74
## 5297 PyeongChang Sprint 74
## 5298 PyeongChang Sprint 74
## 5299 PyeongChang Sprint 74
## 5300 PyeongChang Sprint 74
## 5301 PyeongChang Sprint 74
## 5302 PyeongChang Sprint 74
## 5303 PyeongChang Sprint 74
## 5304 PyeongChang Sprint 74
## 5305 PyeongChang Sprint 74
## 5306 PyeongChang Sprint 74
## 5307 PyeongChang Sprint 74
## 5308 PyeongChang Sprint 74
## 5309 PyeongChang Sprint 74
## 5310 PyeongChang Sprint 74
## 5311 PyeongChang Sprint 74
## 5312 PyeongChang Sprint 74
## 5313 PyeongChang Sprint 74
## 5314 PyeongChang Sprint 74
## 5315 PyeongChang Sprint 74
## 5316 PyeongChang Sprint 74
## 5317 PyeongChang Sprint 74
## 5318 PyeongChang Sprint 74
## 5319 PyeongChang Sprint 74
## 5320 PyeongChang Sprint 74
## 5321 PyeongChang Sprint 74
## 5322 PyeongChang Sprint 74
## 5323 PyeongChang Sprint 74
## 5324 PyeongChang Sprint 74
## 5325 PyeongChang Sprint 74
## 5326 PyeongChang Sprint 74
## 5327 PyeongChang Sprint 74
## 5328 PyeongChang Pursuit 73
## 5329 PyeongChang Pursuit 73
## 5330 PyeongChang Pursuit 73
## 5331 PyeongChang Pursuit 73
## 5332 PyeongChang Pursuit 73
## 5333 PyeongChang Pursuit 73
## 5334 PyeongChang Pursuit 73
## 5335 PyeongChang Pursuit 73
## 5336 PyeongChang Pursuit 73
## 5337 PyeongChang Pursuit 73
## 5338 PyeongChang Pursuit 73
## 5339 PyeongChang Pursuit 73
## 5340 PyeongChang Pursuit 73
## 5341 PyeongChang Pursuit 73
## 5342 PyeongChang Pursuit 73
## 5343 PyeongChang Pursuit 73
## 5344 PyeongChang Pursuit 73
## 5345 PyeongChang Pursuit 73
## 5346 PyeongChang Pursuit 73
## 5347 PyeongChang Pursuit 73
## 5348 PyeongChang Pursuit 73
## 5349 PyeongChang Pursuit 73
## 5350 PyeongChang Pursuit 73
## 5351 PyeongChang Pursuit 73
## 5352 PyeongChang Pursuit 73
## 5353 PyeongChang Pursuit 73
## 5354 PyeongChang Pursuit 73
## 5355 PyeongChang Pursuit 73
## 5356 PyeongChang Pursuit 73
## 5357 PyeongChang Pursuit 73
## 5358 PyeongChang Pursuit 73
## 5359 PyeongChang Pursuit 73
## 5360 PyeongChang Pursuit 73
## 5361 PyeongChang Pursuit 73
## 5362 PyeongChang Pursuit 73
## 5363 PyeongChang Pursuit 73
## 5364 PyeongChang Pursuit 73
## 5365 PyeongChang Pursuit 73
## 5366 PyeongChang Pursuit 73
## 5367 PyeongChang Pursuit 73
## 5368 PyeongChang Pursuit 73
## 5369 PyeongChang Pursuit 73
## 5370 PyeongChang Pursuit 73
## 5371 PyeongChang Pursuit 73
## 5372 PyeongChang Pursuit 73
## 5373 PyeongChang Pursuit 73
## 5374 PyeongChang Pursuit 73
## 5375 PyeongChang Pursuit 73
## 5376 PyeongChang Pursuit 73
## 5377 PyeongChang Pursuit 73
## 5378 PyeongChang Pursuit 73
## 5379 PyeongChang Pursuit 73
## 5380 PyeongChang Pursuit 73
## 5381 PyeongChang Pursuit 73
## 5382 PyeongChang Pursuit 73
## 5383 PyeongChang Pursuit 73
## 5384 PyeongChang Pursuit 73
## 5385 PyeongChang Pursuit 73
## 5386 Ruhpolding Sprint 76
## 5387 Ruhpolding Sprint 76
## 5388 Ruhpolding Sprint 76
## 5389 Ruhpolding Sprint 76
## 5390 Ruhpolding Sprint 76
## 5391 Ruhpolding Sprint 76
## 5392 Ruhpolding Sprint 76
## 5393 Ruhpolding Sprint 76
## 5394 Ruhpolding Sprint 76
## 5395 Ruhpolding Sprint 76
## 5396 Ruhpolding Sprint 76
## 5397 Ruhpolding Sprint 76
## 5398 Ruhpolding Sprint 76
## 5399 Ruhpolding Sprint 76
## 5400 Ruhpolding Sprint 76
## 5401 Ruhpolding Sprint 76
## 5402 Ruhpolding Sprint 76
## 5403 Ruhpolding Sprint 76
## 5404 Ruhpolding Sprint 76
## 5405 Ruhpolding Sprint 76
## 5406 Ruhpolding Sprint 76
## 5407 Ruhpolding Sprint 76
## 5408 Ruhpolding Sprint 76
## 5409 Ruhpolding Sprint 76
## 5410 Ruhpolding Sprint 76
## 5411 Ruhpolding Sprint 76
## 5412 Ruhpolding Sprint 76
## 5413 Ruhpolding Sprint 76
## 5414 Ruhpolding Sprint 76
## 5415 Ruhpolding Sprint 76
## 5416 Ruhpolding Sprint 76
## 5417 Ruhpolding Sprint 76
## 5418 Ruhpolding Sprint 76
## 5419 Ruhpolding Sprint 76
## 5420 Ruhpolding Sprint 76
## 5421 Ruhpolding Sprint 76
## 5422 Ruhpolding Sprint 76
## 5423 Ruhpolding Sprint 76
## 5424 Ruhpolding Sprint 76
## 5425 Ruhpolding Sprint 76
## 5426 Ruhpolding Sprint 76
## 5427 Ruhpolding Sprint 76
## 5428 Ruhpolding Sprint 76
## 5429 Ruhpolding Sprint 76
## 5430 Ruhpolding Sprint 76
## 5431 Ruhpolding Sprint 76
## 5432 Ruhpolding Sprint 76
## 5433 Ruhpolding Sprint 76
## 5434 Ruhpolding Sprint 76
## 5435 Ruhpolding Sprint 76
## 5436 Ruhpolding Sprint 76
## 5437 Ruhpolding Sprint 76
## 5438 Ruhpolding Sprint 76
## 5439 Ruhpolding Sprint 76
## 5440 Ruhpolding Sprint 76
## 5441 Ruhpolding Sprint 76
## 5442 Ruhpolding Sprint 76
## 5443 Ruhpolding Sprint 76
## 5444 Ruhpolding Sprint 76
## 5445 Ruhpolding Sprint 76
## 5446 Ruhpolding Sprint 76
## 5447 Ruhpolding Sprint 76
## 5448 Ruhpolding Sprint 76
## 5449 Ruhpolding Sprint 76
## 5450 Ruhpolding Sprint 76
## 5451 Ruhpolding Sprint 76
## 5452 Ruhpolding Sprint 76
## 5453 Ruhpolding Sprint 76
## 5454 Ruhpolding Sprint 76
## 5455 Ruhpolding Sprint 76
## 5456 Ruhpolding Sprint 76
## 5457 Ruhpolding Sprint 76
## 5458 Ruhpolding Sprint 76
## 5459 Ruhpolding Sprint 76
## 5460 Ruhpolding Sprint 76
## 5461 Ruhpolding Sprint 76
## 5462 Ruhpolding Sprint 76
## 5463 Ruhpolding Sprint 76
## 5464 Ruhpolding Sprint 76
## 5465 Ruhpolding Sprint 76
## 5466 Ruhpolding Sprint 76
## 5467 Ruhpolding Sprint 76
## 5468 Ruhpolding Sprint 76
## 5469 Ruhpolding Sprint 76
## 5470 Ruhpolding Sprint 76
## 5471 Ruhpolding Sprint 76
## 5472 Ruhpolding Sprint 76
## 5473 Ruhpolding Sprint 76
## 5474 Ruhpolding Sprint 76
## 5475 Ruhpolding Sprint 76
## 5476 Ruhpolding Sprint 76
## 5477 Ruhpolding Sprint 76
## 5478 Ruhpolding Sprint 76
## 5479 Ruhpolding Sprint 76
## 5480 Ruhpolding Sprint 76
## 5481 Ruhpolding Sprint 76
## 5482 Ruhpolding Sprint 76
## 5483 Ruhpolding Sprint 76
## 5484 Ruhpolding Sprint 76
## 5485 Ruhpolding Sprint 76
## 5486 Ruhpolding Sprint 76
## 5487 Ruhpolding Sprint 76
## 5488 Ruhpolding Sprint 76
## 5489 Ruhpolding Sprint 76
## 5490 Ruhpolding Sprint 76
## 5491 Ruhpolding Sprint 76
## 5492 Ruhpolding Sprint 76
## 5493 Ruhpolding Pursuit 75
## 5494 Ruhpolding Pursuit 75
## 5495 Ruhpolding Pursuit 75
## 5496 Ruhpolding Pursuit 75
## 5497 Ruhpolding Pursuit 75
## 5498 Ruhpolding Pursuit 75
## 5499 Ruhpolding Pursuit 75
## 5500 Ruhpolding Pursuit 75
## 5501 Ruhpolding Pursuit 75
## 5502 Ruhpolding Pursuit 75
## 5503 Ruhpolding Pursuit 75
## 5504 Ruhpolding Pursuit 75
## 5505 Ruhpolding Pursuit 75
## 5506 Ruhpolding Pursuit 75
## 5507 Ruhpolding Pursuit 75
## 5508 Ruhpolding Pursuit 75
## 5509 Ruhpolding Pursuit 75
## 5510 Ruhpolding Pursuit 75
## 5511 Ruhpolding Pursuit 75
## 5512 Ruhpolding Pursuit 75
## 5513 Ruhpolding Pursuit 75
## 5514 Ruhpolding Pursuit 75
## 5515 Ruhpolding Pursuit 75
## 5516 Ruhpolding Pursuit 75
## 5517 Ruhpolding Pursuit 75
## 5518 Ruhpolding Pursuit 75
## 5519 Ruhpolding Pursuit 75
## 5520 Ruhpolding Pursuit 75
## 5521 Ruhpolding Pursuit 75
## 5522 Ruhpolding Pursuit 75
## 5523 Ruhpolding Pursuit 75
## 5524 Ruhpolding Pursuit 75
## 5525 Ruhpolding Pursuit 75
## 5526 Ruhpolding Pursuit 75
## 5527 Ruhpolding Pursuit 75
## 5528 Ruhpolding Pursuit 75
## 5529 Ruhpolding Pursuit 75
## 5530 Ruhpolding Pursuit 75
## 5531 Ruhpolding Pursuit 75
## 5532 Ruhpolding Pursuit 75
## 5533 Ruhpolding Pursuit 75
## 5534 Ruhpolding Pursuit 75
## 5535 Ruhpolding Pursuit 75
## 5536 Ruhpolding Pursuit 75
## 5537 Ruhpolding Pursuit 75
## 5538 Ruhpolding Pursuit 75
## 5539 Ruhpolding Pursuit 75
## 5540 Ruhpolding Pursuit 75
## 5541 Ruhpolding Pursuit 75
## 5542 Ruhpolding Pursuit 75
## 5543 Ruhpolding Pursuit 75
## 5544 Ruhpolding Pursuit 75
## 5545 Ruhpolding Pursuit 75
## 5546 Ruhpolding Pursuit 75
## 5547 Ruhpolding Pursuit 75
## 5548 Annecy Sprint 79
## 5549 Annecy Sprint 79
## 5550 Annecy Sprint 79
## 5551 Annecy Sprint 79
## 5552 Annecy Sprint 79
## 5553 Annecy Sprint 79
## 5554 Annecy Sprint 79
## 5555 Annecy Sprint 79
## 5556 Annecy Sprint 79
## 5557 Annecy Sprint 79
## 5558 Annecy Sprint 79
## 5559 Annecy Sprint 79
## 5560 Annecy Sprint 79
## 5561 Annecy Sprint 79
## 5562 Annecy Sprint 79
## 5563 Annecy Sprint 79
## 5564 Annecy Sprint 79
## 5565 Annecy Sprint 79
## 5566 Annecy Sprint 79
## 5567 Annecy Sprint 79
## 5568 Annecy Sprint 79
## 5569 Annecy Sprint 79
## 5570 Annecy Sprint 79
## 5571 Annecy Sprint 79
## 5572 Annecy Sprint 79
## 5573 Annecy Sprint 79
## 5574 Annecy Sprint 79
## 5575 Annecy Sprint 79
## 5576 Annecy Sprint 79
## 5577 Annecy Sprint 79
## 5578 Annecy Sprint 79
## 5579 Annecy Sprint 79
## 5580 Annecy Sprint 79
## 5581 Annecy Sprint 79
## 5582 Annecy Sprint 79
## 5583 Annecy Sprint 79
## 5584 Annecy Sprint 79
## 5585 Annecy Sprint 79
## 5586 Annecy Sprint 79
## 5587 Annecy Sprint 79
## 5588 Annecy Sprint 79
## 5589 Annecy Sprint 79
## 5590 Annecy Sprint 79
## 5591 Annecy Sprint 79
## 5592 Annecy Sprint 79
## 5593 Annecy Sprint 79
## 5594 Annecy Sprint 79
## 5595 Annecy Sprint 79
## 5596 Annecy Sprint 79
## 5597 Annecy Sprint 79
## 5598 Annecy Sprint 79
## 5599 Annecy Sprint 79
## 5600 Annecy Sprint 79
## 5601 Annecy Sprint 79
## 5602 Annecy Sprint 79
## 5603 Annecy Sprint 79
## 5604 Annecy Sprint 79
## 5605 Annecy Sprint 79
## 5606 Annecy Sprint 79
## 5607 Annecy Sprint 79
## 5608 Annecy Sprint 79
## 5609 Annecy Sprint 79
## 5610 Annecy Sprint 79
## 5611 Annecy Sprint 79
## 5612 Annecy Sprint 79
## 5613 Annecy Sprint 79
## 5614 Annecy Sprint 79
## 5615 Annecy Sprint 79
## 5616 Annecy Sprint 79
## 5617 Annecy Sprint 79
## 5618 Annecy Sprint 79
## 5619 Annecy Sprint 79
## 5620 Annecy Sprint 79
## 5621 Annecy Sprint 79
## 5622 Annecy Sprint 79
## 5623 Annecy Sprint 79
## 5624 Annecy Sprint 79
## 5625 Annecy Sprint 79
## 5626 Annecy Sprint 79
## 5627 Annecy Sprint 79
## 5628 Annecy Sprint 79
## 5629 Annecy Sprint 79
## 5630 Annecy Sprint 79
## 5631 Annecy Sprint 79
## 5632 Annecy Sprint 79
## 5633 Annecy Sprint 79
## 5634 Annecy Sprint 79
## 5635 Annecy Sprint 79
## 5636 Annecy Sprint 79
## 5637 Annecy Sprint 79
## 5638 Annecy Sprint 79
## 5639 Annecy Sprint 79
## 5640 Annecy Sprint 79
## 5641 Annecy Sprint 79
## 5642 Annecy Sprint 79
## 5643 Annecy Sprint 79
## 5644 Annecy Sprint 79
## 5645 Annecy Sprint 79
## 5646 Annecy Sprint 79
## 5647 Annecy Sprint 79
## 5648 Annecy Sprint 79
## 5649 Annecy Sprint 79
## 5650 Annecy Sprint 79
## 5651 Annecy Mass start 77
## 5652 Annecy Mass start 77
## 5653 Annecy Mass start 77
## 5654 Annecy Mass start 77
## 5655 Annecy Mass start 77
## 5656 Annecy Mass start 77
## 5657 Annecy Mass start 77
## 5658 Annecy Mass start 77
## 5659 Annecy Mass start 77
## 5660 Annecy Mass start 77
## 5661 Annecy Mass start 77
## 5662 Annecy Mass start 77
## 5663 Annecy Mass start 77
## 5664 Annecy Mass start 77
## 5665 Annecy Mass start 77
## 5666 Annecy Mass start 77
## 5667 Annecy Mass start 77
## 5668 Annecy Mass start 77
## 5669 Annecy Mass start 77
## 5670 Annecy Mass start 77
## 5671 Annecy Mass start 77
## 5672 Annecy Mass start 77
## 5673 Annecy Mass start 77
## 5674 Annecy Mass start 77
## 5675 Annecy Mass start 77
## 5676 Annecy Mass start 77
## 5677 Annecy Mass start 77
## 5678 Annecy Mass start 77
## 5679 Annecy Mass start 77
## 5680 Annecy Mass start 77
## 5681 Annecy Pursuit 78
## 5682 Annecy Pursuit 78
## 5683 Annecy Pursuit 78
## 5684 Annecy Pursuit 78
## 5685 Annecy Pursuit 78
## 5686 Annecy Pursuit 78
## 5687 Annecy Pursuit 78
## 5688 Annecy Pursuit 78
## 5689 Annecy Pursuit 78
## 5690 Annecy Pursuit 78
## 5691 Annecy Pursuit 78
## 5692 Annecy Pursuit 78
## 5693 Annecy Pursuit 78
## 5694 Annecy Pursuit 78
## 5695 Annecy Pursuit 78
## 5696 Annecy Pursuit 78
## 5697 Annecy Pursuit 78
## 5698 Annecy Pursuit 78
## 5699 Annecy Pursuit 78
## 5700 Annecy Pursuit 78
## 5701 Annecy Pursuit 78
## 5702 Annecy Pursuit 78
## 5703 Annecy Pursuit 78
## 5704 Annecy Pursuit 78
## 5705 Annecy Pursuit 78
## 5706 Annecy Pursuit 78
## 5707 Annecy Pursuit 78
## 5708 Annecy Pursuit 78
## 5709 Annecy Pursuit 78
## 5710 Annecy Pursuit 78
## 5711 Annecy Pursuit 78
## 5712 Annecy Pursuit 78
## 5713 Annecy Pursuit 78
## 5714 Annecy Pursuit 78
## 5715 Annecy Pursuit 78
## 5716 Annecy Pursuit 78
## 5717 Annecy Pursuit 78
## 5718 Annecy Pursuit 78
## 5719 Annecy Pursuit 78
## 5720 Annecy Pursuit 78
## 5721 Annecy Pursuit 78
## 5722 Annecy Pursuit 78
## 5723 Annecy Pursuit 78
## 5724 Annecy Pursuit 78
## 5725 Annecy Pursuit 78
## 5726 Annecy Pursuit 78
## 5727 Annecy Pursuit 78
## 5728 Annecy Pursuit 78
## 5729 Annecy Pursuit 78
## 5730 Annecy Pursuit 78
## 5731 Annecy Pursuit 78
## 5732 Annecy Pursuit 78
## 5733 Annecy Pursuit 78
## 5734 Annecy Pursuit 78
## 5735 Annecy Pursuit 78
## 5736 Annecy Pursuit 78
## 5737 Annecy Pursuit 78
## 5738 Anterselva Sprint 82
## 5739 Anterselva Sprint 82
## 5740 Anterselva Sprint 82
## 5741 Anterselva Sprint 82
## 5742 Anterselva Sprint 82
## 5743 Anterselva Sprint 82
## 5744 Anterselva Sprint 82
## 5745 Anterselva Sprint 82
## 5746 Anterselva Sprint 82
## 5747 Anterselva Sprint 82
## 5748 Anterselva Sprint 82
## 5749 Anterselva Sprint 82
## 5750 Anterselva Sprint 82
## 5751 Anterselva Sprint 82
## 5752 Anterselva Sprint 82
## 5753 Anterselva Sprint 82
## 5754 Anterselva Sprint 82
## 5755 Anterselva Sprint 82
## 5756 Anterselva Sprint 82
## 5757 Anterselva Sprint 82
## 5758 Anterselva Sprint 82
## 5759 Anterselva Sprint 82
## 5760 Anterselva Sprint 82
## 5761 Anterselva Sprint 82
## 5762 Anterselva Sprint 82
## 5763 Anterselva Sprint 82
## 5764 Anterselva Sprint 82
## 5765 Anterselva Sprint 82
## 5766 Anterselva Sprint 82
## 5767 Anterselva Sprint 82
## 5768 Anterselva Sprint 82
## 5769 Anterselva Sprint 82
## 5770 Anterselva Sprint 82
## 5771 Anterselva Sprint 82
## 5772 Anterselva Sprint 82
## 5773 Anterselva Sprint 82
## 5774 Anterselva Sprint 82
## 5775 Anterselva Sprint 82
## 5776 Anterselva Sprint 82
## 5777 Anterselva Sprint 82
## 5778 Anterselva Sprint 82
## 5779 Anterselva Sprint 82
## 5780 Anterselva Sprint 82
## 5781 Anterselva Sprint 82
## 5782 Anterselva Sprint 82
## 5783 Anterselva Sprint 82
## 5784 Anterselva Sprint 82
## 5785 Anterselva Sprint 82
## 5786 Anterselva Sprint 82
## 5787 Anterselva Sprint 82
## 5788 Anterselva Sprint 82
## 5789 Anterselva Sprint 82
## 5790 Anterselva Sprint 82
## 5791 Anterselva Sprint 82
## 5792 Anterselva Sprint 82
## 5793 Anterselva Sprint 82
## 5794 Anterselva Sprint 82
## 5795 Anterselva Sprint 82
## 5796 Anterselva Sprint 82
## 5797 Anterselva Sprint 82
## 5798 Anterselva Sprint 82
## 5799 Anterselva Sprint 82
## 5800 Anterselva Sprint 82
## 5801 Anterselva Sprint 82
## 5802 Anterselva Sprint 82
## 5803 Anterselva Sprint 82
## 5804 Anterselva Sprint 82
## 5805 Anterselva Sprint 82
## 5806 Anterselva Sprint 82
## 5807 Anterselva Sprint 82
## 5808 Anterselva Sprint 82
## 5809 Anterselva Sprint 82
## 5810 Anterselva Sprint 82
## 5811 Anterselva Sprint 82
## 5812 Anterselva Sprint 82
## 5813 Anterselva Sprint 82
## 5814 Anterselva Sprint 82
## 5815 Anterselva Sprint 82
## 5816 Anterselva Sprint 82
## 5817 Anterselva Sprint 82
## 5818 Anterselva Sprint 82
## 5819 Anterselva Sprint 82
## 5820 Anterselva Sprint 82
## 5821 Anterselva Sprint 82
## 5822 Anterselva Sprint 82
## 5823 Anterselva Sprint 82
## 5824 Anterselva Sprint 82
## 5825 Anterselva Sprint 82
## 5826 Anterselva Sprint 82
## 5827 Anterselva Sprint 82
## 5828 Anterselva Sprint 82
## 5829 Anterselva Sprint 82
## 5830 Anterselva Sprint 82
## 5831 Anterselva Sprint 82
## 5832 Anterselva Sprint 82
## 5833 Anterselva Sprint 82
## 5834 Anterselva Sprint 82
## 5835 Anterselva Sprint 82
## 5836 Anterselva Sprint 82
## 5837 Anterselva Sprint 82
## 5838 Anterselva Sprint 82
## 5839 Anterselva Sprint 82
## 5840 Anterselva Sprint 82
## 5841 Anterselva Sprint 82
## 5842 Anterselva Sprint 82
## 5843 Anterselva Sprint 82
## 5844 Anterselva Sprint 82
## 5845 Anterselva Sprint 82
## 5846 Anterselva Sprint 82
## 5847 Anterselva Mass start 80
## 5848 Anterselva Mass start 80
## 5849 Anterselva Mass start 80
## 5850 Anterselva Mass start 80
## 5851 Anterselva Mass start 80
## 5852 Anterselva Mass start 80
## 5853 Anterselva Mass start 80
## 5854 Anterselva Mass start 80
## 5855 Anterselva Mass start 80
## 5856 Anterselva Mass start 80
## 5857 Anterselva Mass start 80
## 5858 Anterselva Mass start 80
## 5859 Anterselva Mass start 80
## 5860 Anterselva Mass start 80
## 5861 Anterselva Mass start 80
## 5862 Anterselva Mass start 80
## 5863 Anterselva Mass start 80
## 5864 Anterselva Mass start 80
## 5865 Anterselva Mass start 80
## 5866 Anterselva Mass start 80
## 5867 Anterselva Mass start 80
## 5868 Anterselva Mass start 80
## 5869 Anterselva Mass start 80
## 5870 Anterselva Mass start 80
## 5871 Anterselva Mass start 80
## 5872 Anterselva Mass start 80
## 5873 Anterselva Mass start 80
## 5874 Anterselva Mass start 80
## 5875 Anterselva Mass start 80
## 5876 Anterselva Mass start 80
## 5877 Anterselva Pursuit 81
## 5878 Anterselva Pursuit 81
## 5879 Anterselva Pursuit 81
## 5880 Anterselva Pursuit 81
## 5881 Anterselva Pursuit 81
## 5882 Anterselva Pursuit 81
## 5883 Anterselva Pursuit 81
## 5884 Anterselva Pursuit 81
## 5885 Anterselva Pursuit 81
## 5886 Anterselva Pursuit 81
## 5887 Anterselva Pursuit 81
## 5888 Anterselva Pursuit 81
## 5889 Anterselva Pursuit 81
## 5890 Anterselva Pursuit 81
## 5891 Anterselva Pursuit 81
## 5892 Anterselva Pursuit 81
## 5893 Anterselva Pursuit 81
## 5894 Anterselva Pursuit 81
## 5895 Anterselva Pursuit 81
## 5896 Anterselva Pursuit 81
## 5897 Anterselva Pursuit 81
## 5898 Anterselva Pursuit 81
## 5899 Anterselva Pursuit 81
## 5900 Anterselva Pursuit 81
## 5901 Anterselva Pursuit 81
## 5902 Anterselva Pursuit 81
## 5903 Anterselva Pursuit 81
## 5904 Anterselva Pursuit 81
## 5905 Anterselva Pursuit 81
## 5906 Anterselva Pursuit 81
## 5907 Anterselva Pursuit 81
## 5908 Anterselva Pursuit 81
## 5909 Anterselva Pursuit 81
## 5910 Anterselva Pursuit 81
## 5911 Anterselva Pursuit 81
## 5912 Anterselva Pursuit 81
## 5913 Anterselva Pursuit 81
## 5914 Anterselva Pursuit 81
## 5915 Anterselva Pursuit 81
## 5916 Anterselva Pursuit 81
## 5917 Anterselva Pursuit 81
## 5918 Anterselva Pursuit 81
## 5919 Anterselva Pursuit 81
## 5920 Anterselva Pursuit 81
## 5921 Anterselva Pursuit 81
## 5922 Anterselva Pursuit 81
## 5923 Anterselva Pursuit 81
## 5924 Anterselva Pursuit 81
## 5925 Anterselva Pursuit 81
## 5926 Anterselva Pursuit 81
## 5927 Anterselva Pursuit 81
## 5928 Anterselva Pursuit 81
## 5929 Hochfilzen Sprint 84
## 5930 Hochfilzen Sprint 84
## 5931 Hochfilzen Sprint 84
## 5932 Hochfilzen Sprint 84
## 5933 Hochfilzen Sprint 84
## 5934 Hochfilzen Sprint 84
## 5935 Hochfilzen Sprint 84
## 5936 Hochfilzen Sprint 84
## 5937 Hochfilzen Sprint 84
## 5938 Hochfilzen Sprint 84
## 5939 Hochfilzen Sprint 84
## 5940 Hochfilzen Sprint 84
## 5941 Hochfilzen Sprint 84
## 5942 Hochfilzen Sprint 84
## 5943 Hochfilzen Sprint 84
## 5944 Hochfilzen Sprint 84
## 5945 Hochfilzen Sprint 84
## 5946 Hochfilzen Sprint 84
## 5947 Hochfilzen Sprint 84
## 5948 Hochfilzen Sprint 84
## 5949 Hochfilzen Sprint 84
## 5950 Hochfilzen Sprint 84
## 5951 Hochfilzen Sprint 84
## 5952 Hochfilzen Sprint 84
## 5953 Hochfilzen Sprint 84
## 5954 Hochfilzen Sprint 84
## 5955 Hochfilzen Sprint 84
## 5956 Hochfilzen Sprint 84
## 5957 Hochfilzen Sprint 84
## 5958 Hochfilzen Sprint 84
## 5959 Hochfilzen Sprint 84
## 5960 Hochfilzen Sprint 84
## 5961 Hochfilzen Sprint 84
## 5962 Hochfilzen Sprint 84
## 5963 Hochfilzen Sprint 84
## 5964 Hochfilzen Sprint 84
## 5965 Hochfilzen Sprint 84
## 5966 Hochfilzen Sprint 84
## 5967 Hochfilzen Sprint 84
## 5968 Hochfilzen Sprint 84
## 5969 Hochfilzen Sprint 84
## 5970 Hochfilzen Sprint 84
## 5971 Hochfilzen Sprint 84
## 5972 Hochfilzen Sprint 84
## 5973 Hochfilzen Sprint 84
## 5974 Hochfilzen Sprint 84
## 5975 Hochfilzen Sprint 84
## 5976 Hochfilzen Sprint 84
## 5977 Hochfilzen Sprint 84
## 5978 Hochfilzen Sprint 84
## 5979 Hochfilzen Sprint 84
## 5980 Hochfilzen Sprint 84
## 5981 Hochfilzen Sprint 84
## 5982 Hochfilzen Sprint 84
## 5983 Hochfilzen Sprint 84
## 5984 Hochfilzen Sprint 84
## 5985 Hochfilzen Sprint 84
## 5986 Hochfilzen Sprint 84
## 5987 Hochfilzen Sprint 84
## 5988 Hochfilzen Sprint 84
## 5989 Hochfilzen Sprint 84
## 5990 Hochfilzen Sprint 84
## 5991 Hochfilzen Sprint 84
## 5992 Hochfilzen Sprint 84
## 5993 Hochfilzen Sprint 84
## 5994 Hochfilzen Sprint 84
## 5995 Hochfilzen Sprint 84
## 5996 Hochfilzen Sprint 84
## 5997 Hochfilzen Sprint 84
## 5998 Hochfilzen Sprint 84
## 5999 Hochfilzen Sprint 84
## 6000 Hochfilzen Sprint 84
## 6001 Hochfilzen Sprint 84
## 6002 Hochfilzen Sprint 84
## 6003 Hochfilzen Sprint 84
## 6004 Hochfilzen Sprint 84
## 6005 Hochfilzen Sprint 84
## 6006 Hochfilzen Sprint 84
## 6007 Hochfilzen Sprint 84
## 6008 Hochfilzen Sprint 84
## 6009 Hochfilzen Sprint 84
## 6010 Hochfilzen Sprint 84
## 6011 Hochfilzen Sprint 84
## 6012 Hochfilzen Sprint 84
## 6013 Hochfilzen Sprint 84
## 6014 Hochfilzen Sprint 84
## 6015 Hochfilzen Sprint 84
## 6016 Hochfilzen Sprint 84
## 6017 Hochfilzen Sprint 84
## 6018 Hochfilzen Sprint 84
## 6019 Hochfilzen Sprint 84
## 6020 Hochfilzen Sprint 84
## 6021 Hochfilzen Sprint 84
## 6022 Hochfilzen Sprint 84
## 6023 Hochfilzen Sprint 84
## 6024 Hochfilzen Sprint 84
## 6025 Hochfilzen Sprint 84
## 6026 Hochfilzen Sprint 84
## 6027 Hochfilzen Sprint 84
## 6028 Hochfilzen Sprint 84
## 6029 Hochfilzen Sprint 84
## 6030 Hochfilzen Sprint 84
## 6031 Hochfilzen Sprint 84
## 6032 Hochfilzen Sprint 84
## 6033 Hochfilzen Sprint 84
## 6034 Hochfilzen Sprint 84
## 6035 Hochfilzen Sprint 84
## 6036 Hochfilzen Sprint 84
## 6037 Hochfilzen Pursuit 83
## 6038 Hochfilzen Pursuit 83
## 6039 Hochfilzen Pursuit 83
## 6040 Hochfilzen Pursuit 83
## 6041 Hochfilzen Pursuit 83
## 6042 Hochfilzen Pursuit 83
## 6043 Hochfilzen Pursuit 83
## 6044 Hochfilzen Pursuit 83
## 6045 Hochfilzen Pursuit 83
## 6046 Hochfilzen Pursuit 83
## 6047 Hochfilzen Pursuit 83
## 6048 Hochfilzen Pursuit 83
## 6049 Hochfilzen Pursuit 83
## 6050 Hochfilzen Pursuit 83
## 6051 Hochfilzen Pursuit 83
## 6052 Hochfilzen Pursuit 83
## 6053 Hochfilzen Pursuit 83
## 6054 Hochfilzen Pursuit 83
## 6055 Hochfilzen Pursuit 83
## 6056 Hochfilzen Pursuit 83
## 6057 Hochfilzen Pursuit 83
## 6058 Hochfilzen Pursuit 83
## 6059 Hochfilzen Pursuit 83
## 6060 Hochfilzen Pursuit 83
## 6061 Hochfilzen Pursuit 83
## 6062 Hochfilzen Pursuit 83
## 6063 Hochfilzen Pursuit 83
## 6064 Hochfilzen Pursuit 83
## 6065 Hochfilzen Pursuit 83
## 6066 Hochfilzen Pursuit 83
## 6067 Hochfilzen Pursuit 83
## 6068 Hochfilzen Pursuit 83
## 6069 Hochfilzen Pursuit 83
## 6070 Hochfilzen Pursuit 83
## 6071 Hochfilzen Pursuit 83
## 6072 Hochfilzen Pursuit 83
## 6073 Hochfilzen Pursuit 83
## 6074 Hochfilzen Pursuit 83
## 6075 Hochfilzen Pursuit 83
## 6076 Hochfilzen Pursuit 83
## 6077 Hochfilzen Pursuit 83
## 6078 Hochfilzen Pursuit 83
## 6079 Hochfilzen Pursuit 83
## 6080 Hochfilzen Pursuit 83
## 6081 Hochfilzen Pursuit 83
## 6082 Hochfilzen Pursuit 83
## 6083 Hochfilzen Pursuit 83
## 6084 Hochfilzen Pursuit 83
## 6085 Hochfilzen Pursuit 83
## 6086 Hochfilzen Pursuit 83
## 6087 Hochfilzen Pursuit 83
## 6088 Hochfilzen Pursuit 83
## 6089 Hochfilzen Pursuit 83
## 6090 Hochfilzen Pursuit 83
## 6091 Hochfilzen Pursuit 83
## 6092 Hochfilzen Pursuit 83
## 6093 Hochfilzen Pursuit 83
## 6094 Kontiolahti Sprint 86
## 6095 Kontiolahti Sprint 86
## 6096 Kontiolahti Sprint 86
## 6097 Kontiolahti Sprint 86
## 6098 Kontiolahti Sprint 86
## 6099 Kontiolahti Sprint 86
## 6100 Kontiolahti Sprint 86
## 6101 Kontiolahti Sprint 86
## 6102 Kontiolahti Sprint 86
## 6103 Kontiolahti Sprint 86
## 6104 Kontiolahti Sprint 86
## 6105 Kontiolahti Sprint 86
## 6106 Kontiolahti Sprint 86
## 6107 Kontiolahti Sprint 86
## 6108 Kontiolahti Sprint 86
## 6109 Kontiolahti Sprint 86
## 6110 Kontiolahti Sprint 86
## 6111 Kontiolahti Sprint 86
## 6112 Kontiolahti Sprint 86
## 6113 Kontiolahti Sprint 86
## 6114 Kontiolahti Sprint 86
## 6115 Kontiolahti Sprint 86
## 6116 Kontiolahti Sprint 86
## 6117 Kontiolahti Sprint 86
## 6118 Kontiolahti Sprint 86
## 6119 Kontiolahti Sprint 86
## 6120 Kontiolahti Sprint 86
## 6121 Kontiolahti Sprint 86
## 6122 Kontiolahti Sprint 86
## 6123 Kontiolahti Sprint 86
## 6124 Kontiolahti Sprint 86
## 6125 Kontiolahti Sprint 86
## 6126 Kontiolahti Sprint 86
## 6127 Kontiolahti Sprint 86
## 6128 Kontiolahti Sprint 86
## 6129 Kontiolahti Sprint 86
## 6130 Kontiolahti Sprint 86
## 6131 Kontiolahti Sprint 86
## 6132 Kontiolahti Sprint 86
## 6133 Kontiolahti Sprint 86
## 6134 Kontiolahti Sprint 86
## 6135 Kontiolahti Sprint 86
## 6136 Kontiolahti Sprint 86
## 6137 Kontiolahti Sprint 86
## 6138 Kontiolahti Sprint 86
## 6139 Kontiolahti Sprint 86
## 6140 Kontiolahti Sprint 86
## 6141 Kontiolahti Sprint 86
## 6142 Kontiolahti Sprint 86
## 6143 Kontiolahti Sprint 86
## 6144 Kontiolahti Sprint 86
## 6145 Kontiolahti Sprint 86
## 6146 Kontiolahti Sprint 86
## 6147 Kontiolahti Sprint 86
## 6148 Kontiolahti Sprint 86
## 6149 Kontiolahti Sprint 86
## 6150 Kontiolahti Sprint 86
## 6151 Kontiolahti Sprint 86
## 6152 Kontiolahti Sprint 86
## 6153 Kontiolahti Sprint 86
## 6154 Kontiolahti Sprint 86
## 6155 Kontiolahti Sprint 86
## 6156 Kontiolahti Sprint 86
## 6157 Kontiolahti Sprint 86
## 6158 Kontiolahti Sprint 86
## 6159 Kontiolahti Sprint 86
## 6160 Kontiolahti Sprint 86
## 6161 Kontiolahti Sprint 86
## 6162 Kontiolahti Sprint 86
## 6163 Kontiolahti Sprint 86
## 6164 Kontiolahti Sprint 86
## 6165 Kontiolahti Sprint 86
## 6166 Kontiolahti Sprint 86
## 6167 Kontiolahti Sprint 86
## 6168 Kontiolahti Sprint 86
## 6169 Kontiolahti Sprint 86
## 6170 Kontiolahti Sprint 86
## 6171 Kontiolahti Sprint 86
## 6172 Kontiolahti Sprint 86
## 6173 Kontiolahti Sprint 86
## 6174 Kontiolahti Sprint 86
## 6175 Kontiolahti Sprint 86
## 6176 Kontiolahti Sprint 86
## 6177 Kontiolahti Sprint 86
## 6178 Kontiolahti Sprint 86
## 6179 Kontiolahti Sprint 86
## 6180 Kontiolahti Sprint 86
## 6181 Kontiolahti Sprint 86
## 6182 Kontiolahti Sprint 86
## 6183 Kontiolahti Sprint 86
## 6184 Kontiolahti Sprint 86
## 6185 Kontiolahti Sprint 86
## 6186 Kontiolahti Sprint 86
## 6187 Kontiolahti Sprint 86
## 6188 Kontiolahti Sprint 86
## 6189 Kontiolahti Sprint 86
## 6190 Kontiolahti Sprint 86
## 6191 Kontiolahti Sprint 86
## 6192 Kontiolahti Sprint 86
## 6193 Kontiolahti Sprint 86
## 6194 Kontiolahti Mass start 85
## 6195 Kontiolahti Mass start 85
## 6196 Kontiolahti Mass start 85
## 6197 Kontiolahti Mass start 85
## 6198 Kontiolahti Mass start 85
## 6199 Kontiolahti Mass start 85
## 6200 Kontiolahti Mass start 85
## 6201 Kontiolahti Mass start 85
## 6202 Kontiolahti Mass start 85
## 6203 Kontiolahti Mass start 85
## 6204 Kontiolahti Mass start 85
## 6205 Kontiolahti Mass start 85
## 6206 Kontiolahti Mass start 85
## 6207 Kontiolahti Mass start 85
## 6208 Kontiolahti Mass start 85
## 6209 Kontiolahti Mass start 85
## 6210 Kontiolahti Mass start 85
## 6211 Kontiolahti Mass start 85
## 6212 Kontiolahti Mass start 85
## 6213 Kontiolahti Mass start 85
## 6214 Kontiolahti Mass start 85
## 6215 Kontiolahti Mass start 85
## 6216 Kontiolahti Mass start 85
## 6217 Kontiolahti Mass start 85
## 6218 Kontiolahti Mass start 85
## 6219 Kontiolahti Mass start 85
## 6220 Kontiolahti Mass start 85
## 6221 Kontiolahti Mass start 85
## 6222 Kontiolahti Mass start 85
## 6223 Kontiolahti Mass start 85
## 6224 Oberhof Sprint 88
## 6225 Oberhof Sprint 88
## 6226 Oberhof Sprint 88
## 6227 Oberhof Sprint 88
## 6228 Oberhof Sprint 88
## 6229 Oberhof Sprint 88
## 6230 Oberhof Sprint 88
## 6231 Oberhof Sprint 88
## 6232 Oberhof Sprint 88
## 6233 Oberhof Sprint 88
## 6234 Oberhof Sprint 88
## 6235 Oberhof Sprint 88
## 6236 Oberhof Sprint 88
## 6237 Oberhof Sprint 88
## 6238 Oberhof Sprint 88
## 6239 Oberhof Sprint 88
## 6240 Oberhof Sprint 88
## 6241 Oberhof Sprint 88
## 6242 Oberhof Sprint 88
## 6243 Oberhof Sprint 88
## 6244 Oberhof Sprint 88
## 6245 Oberhof Sprint 88
## 6246 Oberhof Sprint 88
## 6247 Oberhof Sprint 88
## 6248 Oberhof Sprint 88
## 6249 Oberhof Sprint 88
## [ reached 'max' / getOption("max.print") -- omitted 8141 rows ]
df_clutch_men <- merge(x=df_results_men,y=df_final_loop_men, by=c('ID',
'location', 'Nation', 'Rank', 'Bib',
'Family.Name', 'Given.Name',
'year', 'race_type'), all.x=FALSE,
all.y=TRUE, sort=FALSE)
head(df_clutch_men)
## ID location Nation Rank Bib Family.Name Given.Name year race_type
## 1 1 Anterselva GER 1 1 Schempp Simon 2014-2015 Pursuit
## 2 1 Anterselva AUT 2 8 Eder Simon 2014-2015 Pursuit
## 3 1 Anterselva RUS 3 2 Garanichev Evgeniy 2014-2015 Pursuit
## 4 1 Anterselva NOR 4 9 Bjoerndalen Ole Einar 2014-2015 Pursuit
## 5 1 Anterselva FRA 5 25 Fourcade Martin 2014-2015 Pursuit
## 6 1 Anterselva GER 6 19 Lesser Erik 2014-2015 Pursuit
## Total Shootings Total.Time Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 1 2 1+1+0+0 31:27.9 31:27.9 1555.9 379.1
## 2 1 0+1+0+0 31:28.0 +0.1 30:52.0 1554.5 380.8
## 3 1 0+0+1+0 31:29.0 +1.1 31:15.0 1553.9 382.4
## 4 0 0+0+0+0 31:29.8 +1.9 30:46.8 1555.5 380.4
## 5 0 0+0+0+0 31:59.8 +31.9 30:39.8 1579.0 378.8
## 6 0 0+0+0+0 32:13.5 +45.6 31:05.5 1584.3 383.3
## Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 1 329.8 41.1 21 8.2 0
## 2 332.5 39.3 20 9.0 0
## 3 334.2 38.9 21 9.3 0
## 4 332.0 39.7 22 8.7 0
## 5 329.7 40.3 21 8.8 0
## 6 329.4 46.0 26 7.9 0
df_clutch_women <- merge(x=df_results_women,y=df_final_loop_women, by=c('ID',
'location', 'Nation', 'Rank', 'Bib',
'Family.Name', 'Given.Name',
'year', 'race_type'), all.x=FALSE,
all.y=TRUE, sort=FALSE)
head(df_clutch_women)
## ID location Nation Rank Bib Family.Name Given.Name year race_type
## 1 1 Anterselva BLR 1 1 Domracheva Darya 2014-2015 Pursuit
## 2 1 Anterselva RUS 2 11 Virolainen Daria 2014-2015 Pursuit
## 3 1 Anterselva FIN 3 2 Makarainen Kaisa 2014-2015 Pursuit
## 4 1 Anterselva GER 4 6 Hildebrand Franziska 2014-2015 Pursuit
## 5 1 Anterselva FRA 5 19 Dorin Habert Marie 2014-2015 Pursuit
## 6 1 Anterselva USA 6 8 Dunklee Susan 2014-2015 Pursuit
## Total Shootings Total.Time Behind Isolated.Pursuit Cumulative.Time Loop.Time
## 1 1 1+0+0+0 30:58.5 30:58.5 1517.7 367.4
## 2 1 0+0+0+1 32:19.5 +1:21.0 31:05.5 1601.3 400.9
## 3 5 2+0+1+2 32:27.5 +1:29.0 32:00.5 1629.4 414.7
## 4 1 0+0+1+0 32:27.8 +1:29.3 31:26.8 1613.8 385.0
## 5 2 0+1+1+0 32:36.5 +1:38.0 31:10.5 1629.7 379.1
## 6 1 0+1+0+0 32:39.3 +1:40.8 31:29.3 1630.9 385.7
## Course.Time Range.Time Shooting.Time Penalty.Time Ski.Time
## 1 311.4 46.0 26 10.0 0
## 2 319.7 49.5 28 31.7 0
## 3 310.1 52.0 31 52.6 0
## 4 321.3 54.5 34 9.2 0
## 5 316.3 53.7 31 9.1 0
## 6 322.8 54.3 32 8.6 0